From ae58bff732c0266b8572b7249a0f1ad7b1cea9f9 Mon Sep 17 00:00:00 2001 From: Raj Shah Date: Thu, 24 May 2018 03:30:11 -0700 Subject: [PATCH 01/12] Add mgmt groups to resource, use latest SDK, update tests --- .../resource/_client_factory.py | 14 + .../resource/_exception_handler.py | 19 + .../cli/command_modules/resource/_help.py | 149 ++ .../cli/command_modules/resource/_params.py | 15 + .../cli/command_modules/resource/commands.py | 40 +- .../cli/command_modules/resource/custom.py | 102 + ...t_create_delete_group_managementgroup.yaml | 512 ++++ .../test_create_managementgroup.yaml | 512 ++++ ...eate_managementgroup_with_displayname.yaml | 513 ++++ ...ntgroup_with_displayname_and_parentid.yaml | 1023 ++++++++ ..._create_managementgroup_with_parentid.yaml | 1023 ++++++++ .../test_list_managementgroups.yaml | 192 ++ .../recordings/test_show_managementgroup.yaml | 1213 +++++++++ ...test_show_managementgroup_with_expand.yaml | 1724 +++++++++++++ ...nagementgroup_with_expand_and_recurse.yaml | 2235 +++++++++++++++++ ...date_managementgroup_with_displayname.yaml | 738 ++++++ ...ntgroup_with_displayname_and_parentid.yaml | 1214 +++++++++ ..._update_managementgroup_with_parentid.yaml | 1214 +++++++++ .../tests/latest/test_managmentgroups.py | 414 +++ .../azure-cli-resource/setup.py | 3 +- 20 files changed, 12867 insertions(+), 2 deletions(-) create mode 100644 src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_exception_handler.py create mode 100644 src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_delete_group_managementgroup.yaml create mode 100644 src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup.yaml create mode 100644 src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_displayname.yaml create mode 100644 src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_displayname_and_parentid.yaml create mode 100644 src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_parentid.yaml create mode 100644 src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_list_managementgroups.yaml create mode 100644 src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup.yaml create mode 100644 src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup_with_expand.yaml create mode 100644 src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup_with_expand_and_recurse.yaml create mode 100644 src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_displayname.yaml create mode 100644 src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_displayname_and_parentid.yaml create mode 100644 src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_parentid.yaml create mode 100644 src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/test_managmentgroups.py diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_client_factory.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_client_factory.py index 1d877f57a8f..8f350202402 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_client_factory.py +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_client_factory.py @@ -46,6 +46,12 @@ def _resource_managedapps_client_factory(cli_ctx, **_): return get_mgmt_service_client(cli_ctx, ApplicationClient) +def _resource_managementgroups_client_factory(cli_ctx, **_): + from azure.cli.core.commands.client_factory import get_mgmt_service_client + from azure.mgmt.managementgroups import ManagementGroupsAPI + return get_mgmt_service_client(cli_ctx, ManagementGroupsAPI, subscription_bound=False) + + def cf_resource_groups(cli_ctx, _): return _resource_client_factory(cli_ctx).resource_groups @@ -96,3 +102,11 @@ def cf_resource_managedapplications(cli_ctx, _): def cf_resource_managedappdefinitions(cli_ctx, _): return _resource_managedapps_client_factory(cli_ctx).application_definitions + + +def cf_management_groups(cli_ctx, _): + return _resource_managementgroups_client_factory(cli_ctx).management_groups + + +def cf_management_group_subscriptions(cli_ctx, _): + return _resource_managementgroups_client_factory(cli_ctx).management_group_subscriptions diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_exception_handler.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_exception_handler.py new file mode 100644 index 00000000000..fc803db6de4 --- /dev/null +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_exception_handler.py @@ -0,0 +1,19 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +from azure.cli.core.util import CLIError + + +def managementgroups_exception_handler(ex): + from azure.mgmt.managementgroups.models import ErrorResponseException + if isinstance(ex, ErrorResponseException): + if ex.error.error: + raise CLIError(ex.error.error) + else: + raise CLIError(ex.error) + else: + import sys + from six import reraise + reraise(*sys.exc_info()) diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_help.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_help.py index 7810a73f310..8090ba09bd9 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_help.py +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_help.py @@ -152,6 +152,155 @@ text: > az account lock update --name lockName --notes newNotesHere --lock-type CanNotDelete """ +helps['account management-group'] = """ + type: group + short-summary: Manage Azure Management Groups. +""" + +helps['account management-group subscription'] = """ + type: group + short-summary: Subscription operations for Management Groups. +""" + +helps['account management-group list'] = """ + type: command + short-summary: List all management groups. + long-summary: List of all management groups in the current tenant. + examples: + - name: List all management groups + text: > + az managementgroups group list +""" + +helps['account management-group show'] = """ + type: command + short-summary: Get a specific management group. + long-summary: Get the details of the management group. + parameters: + - name: --group-name --name -n + type: string + short-summary: Name of the management group. + - name: --expand -e + type: bool + short-summary: If given or true, lists the children in the first level of hierarchy. + - name: --recurse -r + type: bool + short-summary: If given or true, lists the children in all levels of hierarchy. + examples: + - name: Get a management group. + text: > + az managementgroups group get --group-name GroupName + - name: Get a management group with children in the first level of hierarchy. + text: > + az managementgroups group get --group-name GroupName -e + - name: Get a management group with children in all levels of hierarchy. + text: > + az managementgroups group get --group-name GroupName -e -r +""" + +helps['account management-group create'] = """ + type: command + short-summary: Add a new management group. + long-summary: Add a new management group. + parameters: + - name: --group-name --name -n + type: string + short-summary: Name of the management group. + - name: --display-name -d + type: string + short-summary: Sets the display name of the management group. If null, the group name is set as the display name. + - name: --parent-id -p + type: string + short-summary: Sets the parent of the management group. A fully qualified id is required. If null, the root tenant group is set as the parent. + examples: + - name: Add a new management group. + text: > + az managementgroups group new --group-name GroupName + - name: Add a new management group with a specific display name. + text: > + az managementgroups group new --group-name GroupName --display-name DisplayName + - name: Add a new management group with a specific parent id. + text: > + az managementgroups group new --group-name GroupName --parent-id ParentId + - name: Add a new management group with a specific display name and parent id. + text: > + az managementgroups group new --group-name GroupName --display-name DisplayName --parent-id ParentId +""" + +helps['account management-group update'] = """ + type: command + short-summary: Update an existing management group. + long-summary: Update an existing management group. + parameters: + - name: --group-name --name -n + type: string + short-summary: Name of the management group. + - name: --display-name -d + type: string + short-summary: Updates the display name of the management group. If null, no change is made. + - name: --parent-id -p + type: string + short-summary: Update the parent of the management group. A fully qualified id is required. If null, no change is made. + examples: + - name: Update an existing management group with a specific display name. + text: > + az managementgroups group update --group-name GroupName --display-name DisplayName + - name: Update an existing management group with a specific parent id. + text: > + az managementgroups group update --group-name GroupName --parent-id ParentId + - name: Update an existing management group with a specific display name and parent id. + text: > + az managementgroups group update --group-name GroupName --display-name DisplayName --parent-id ParentId +""" + +helps['account management-group delete'] = """ + type: command + short-summary: Remove an existing management group. + long-summary: Remove an existing management group. + parameters: + - name: --group-name --name -n + type: string + short-summary: Name of the management group. + examples: + - name: Remove an existing management group + text: > + az managementgroups group remove --group-name GroupName +""" + +helps['account management-group subscription add'] = """ + type: command + short-summary: Add a subscription to a management group. + long-summary: Add a subscription to a management group. + parameters: + - name: --group-name --name -n + type: string + short-summary: Name of the management group. + - name: --subscription + type: string + short-summary: Subscription Id or Name + examples: + - name: Add a subscription to a management group. + text: > + az managementgroups group new --group-name GroupName --subscription Subscription +""" + +helps['account management-group subscription remove'] = """ + type: command + short-summary: Remove an existing subscription from a management group. + long-summary: Remove an existing subscription from a management group. + parameters: + - name: --group-name --name -n + type: string + short-summary: Name of the management group. + - name: --subscription + type: string + short-summary: Subscription Id or Name + examples: + - name: Remove an existing subscription from a management group. + text: > + az managementgroups group remove --group-name GroupName --subscription Subscription +""" + helps['policy'] = """ type: group short-summary: Manage resource policies. diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_params.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_params.py index 39870f54185..6eb7aaad77e 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_params.py +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_params.py @@ -209,3 +209,18 @@ def load_arguments(self, _): c.argument('authorizations', options_list=('--authorizations', '-a'), nargs='+', help="space-separated authorization pairs in a format of :") c.argument('createUiDefinition', options_list=('--create-ui-definition', '-c'), help='JSON formatted string or a path to a file with such content', type=file_type) c.argument('mainTemplate', options_list=('--main-template', '-t'), help='JSON formatted string or a path to a file with such content', type=file_type) + + with self.argument_context('account management-group') as c: + c.argument('group_name', options_list=['--group-name', '--name', '-n']) + + with self.argument_context('account management-group show') as c: + c.argument('expand', arg_type=get_three_state_flag(), options_list=['--expand', '-e']) + c.argument('recurse', arg_type=get_three_state_flag(), options_list=['--recurse', '-r']) + + with self.argument_context('account management-group create') as c: + c.argument('display_name', options_list=['--display-name', '-d']) + c.argument('parent_id', options_list=['--parent-id', '-p']) + + with self.argument_context('account management-group update') as c: + c.argument('display_name', options_list=['--display-name', '-d']) + c.argument('parent_id', options_list=['--parent-id', '-p']) diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/commands.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/commands.py index 9ac189174a3..661b60c3c9d 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/commands.py +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/commands.py @@ -15,9 +15,10 @@ from azure.cli.command_modules.resource._client_factory import ( cf_resource_groups, cf_providers, cf_features, cf_tags, cf_deployments, cf_deployment_operations, cf_policy_definitions, cf_policy_set_definitions, cf_resource_links, - cf_resource_managedapplications, cf_resource_managedappdefinitions) + cf_resource_managedapplications, cf_resource_managedappdefinitions, cf_management_groups, cf_management_group_subscriptions) from azure.cli.command_modules.resource._validators import process_deployment_create_namespace +from ._exception_handler import managementgroups_exception_handler # Resource group commands def transform_resource_group_list(result): @@ -119,6 +120,24 @@ def load_command_table(self, _): resource_type=ResourceType.MGMT_RESOURCE_RESOURCES ) + resource_managementgroups_sdk = CliCommandType( + operations_tmpl='azure.mgmt.managementgroups.operations.management_groups_operations#ManagementGroupsOperations.{}', + client_factory=cf_management_groups, + exception_handler=managementgroups_exception_handler + ) + + resource_managementgroups_subscriptions_sdk = CliCommandType( + operations_tmpl='azure.mgmt.managementgroups.operations.management_group_subscriptions_operations#ManagementGroupSubscriptionsOperations.{}', + client_factory=cf_management_group_subscriptions, + exception_handler=managementgroups_exception_handler + ) + + resource_managementgroups_update_type = CliCommandType( + operations_tmpl='azure.cli.command_modules.resource.custom#{}', + client_factory=cf_management_groups, + exception_handler=managementgroups_exception_handler + ) + with self.command_group('account lock', resource_lock_sdk, resource_type=ResourceType.MGMT_RESOURCE_LOCKS) as g: g.custom_command('create', 'create_lock') g.custom_command('delete', 'delete_lock') @@ -244,3 +263,22 @@ def load_command_table(self, _): g.command('delete', 'delete') g.custom_command('show', 'show_applicationdefinition') g.command('list', 'list_by_resource_group', exception_handler=empty_on_404) + + with self.command_group('account management-group', resource_managementgroups_sdk, client_factory=cf_management_groups) as g: + g.custom_command('list', 'cli_managementgroups_group_list') + g.custom_command('show', 'cli_managementgroups_group_show') + g.custom_command('create', 'cli_managementgroups_group_create') + g.custom_command('delete', 'cli_managementgroups_group_delete') + g.generic_update_command( + 'update', + getter_name='cli_managementgroups_group_update_get', + getter_type=resource_managementgroups_update_type, + setter_name='cli_managementgroups_group_update_set', + setter_type=resource_managementgroups_update_type, + custom_func_name='cli_managementgroups_group_update_custom_func', + custom_func_type=resource_managementgroups_update_type, + exception_handler=managementgroups_exception_handler) + + with self.command_group('account management-group subscription', resource_managementgroups_subscriptions_sdk, client_factory=cf_management_group_subscriptions) as g: + g.custom_command('add', 'cli_managementgroups_subscription_add') + g.custom_command('remove', 'cli_managementgroups_subscription_remove') diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py index 90b7cb93ebe..47f626d6f50 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py @@ -1076,6 +1076,108 @@ def update_policy_setdefinition(cmd, policy_set_definition_name, definitions=Non parameters=params if params is not None else definition.parameters) return policy_client.policy_set_definitions.create_or_update(policy_set_definition_name, parameters) +def _register_rp(cli_ctx, subscription_id=None): + rp = "Microsoft.Management" + from azure.cli.core.commands.client_factory import get_mgmt_service_client + from azure.cli.core.profiles import ResourceType + import time + rcf = get_mgmt_service_client( + cli_ctx, + ResourceType.MGMT_RESOURCE_RESOURCES, + subscription_id) + rcf.providers.register(rp) + while True: + time.sleep(10) + rp_info = rcf.providers.get(rp) + if rp_info.registration_state == 'Registered': + break + + +def _get_subscription_id_from_subscription(cli_ctx, subscription): # pylint: disable=inconsistent-return-statements + from azure.cli.core._profile import Profile + profile = Profile(cli_ctx=cli_ctx) + subscriptions_list = profile.load_cached_subscriptions() + for sub in subscriptions_list: + if sub['id'] == subscription or sub['name'] == subscription: + return sub['id'] + from azure.cli.core.util import CLIError + raise CLIError("Subscription not found in the current context.") + + +def cli_managementgroups_group_list(cmd, client): + _register_rp(cmd.cli_ctx) + return client.list() + + +def cli_managementgroups_group_show( + cmd, + client, + group_name, + expand=False, + recurse=False): + _register_rp(cmd.cli_ctx) + if expand: + return client.get(group_name, "children", recurse) + return client.get(group_name) + + +def cli_managementgroups_group_create( + cmd, + client, + group_name, + display_name=None, + parent_id=None): + _register_rp(cmd.cli_ctx) + from azure.mgmt.managementgroups.models import (CreateManagementGroupRequest, CreateManagementGroupDetails, CreateParentGroupInfo) + create_parent_grp_info = CreateParentGroupInfo(id=parent_id) + create_mgmt_grp_details = CreateManagementGroupDetails(parent=create_parent_grp_info) + create_mgmt_grp_request = CreateManagementGroupRequest(name=group_name, display_name=display_name, details=create_mgmt_grp_details) + return client.create_or_update(group_name, create_mgmt_grp_request) + + +def cli_managementgroups_group_update_custom_func( + instance, + display_name=None, + parent_id=None): + instance["display_name"] = display_name + instance["parent_id"] = parent_id + return instance + + +def cli_managementgroups_group_update_get(): + update_parameters = {'display_name': None, 'parent_id': None} + return update_parameters + + +def cli_managementgroups_group_update_set( + cmd, client, group_name, parameters=None): + _register_rp(cmd.cli_ctx) + from azure.mgmt.managementgroups.models import PatchManagementGroupRequest + patch_mgmt_grp_request = PatchManagementGroupRequest(display_name=parameters["display_name"], parent_id=parameters["parent_id"]) + return client.update(group_name, patch_mgmt_grp_request) + + +def cli_managementgroups_group_delete(cmd, client, group_name): + _register_rp(cmd.cli_ctx) + return client.delete(group_name) + + +def cli_managementgroups_subscription_add( + cmd, client, group_name, subscription): + subscription_id = _get_subscription_id_from_subscription( + cmd.cli_ctx, subscription) + _register_rp(cmd.cli_ctx) + _register_rp(cmd.cli_ctx, subscription_id) + return client.create(group_name, subscription_id) + + +def cli_managementgroups_subscription_remove( + cmd, client, group_name, subscription): + subscription_id = _get_subscription_id_from_subscription( + cmd.cli_ctx, subscription) + _register_rp(cmd.cli_ctx) + _register_rp(cmd.cli_ctx, subscription_id) + return client.delete(group_name, subscription_id) # region Locks diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_delete_group_managementgroup.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_delete_group_managementgroup.yaml new file mode 100644 index 00000000000..cf8e07b1811 --- /dev/null +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_delete_group_managementgroup.yaml @@ -0,0 +1,512 @@ +interactions: +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:35:04 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r1SlNhQ3IjgoK9ReNs6_mqcGwOzVdcgymJJIoZ_BmOXZWND4o0lm_a5bSBC2NBn5GMhZwOKrV8NHiUYcR_1L1BrepRnjrCD0nrHZc_HcmxccbTVN_BWelzglfXFUSVR3OCLnJQDYIPOy2FTz7_YMxhiarrH0uQSd4lfNCQ3cGovEgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:35:06 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1180'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:35:17 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rluIK1X4FLghKGAATPTCm8xnHOqkFkhZXblHHGQGnhQy0aVtex35Q9_-6-NbTPP-szkDR6E8VfFpAm3yYfFjdG6M76YP-X1IHJX59lClfGV7HnlZCbIhL4N65yaDDTXBnF-hnA4MgtMoOwciFFakTIK5QBXt_yhgiFl04WZx2EGwgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:35:17 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:35:17 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rQVJec_h9T5l-LyuXC9xCX6XR1WsbBDhoKEKDZTo-veGUiT-NVlLDZoBEIsytVAi5VyyUBLfP2dYVT6PDb6DqmZwAl-PDY-GAefWY2Sr8kCUNnU5RmZAxh-WaseDrDbGk3fdhr3cnWqmAkhf6cdLLrasuKZna7ZRl1OIECuCo35kgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: '{"name": "testcligroup", "properties": {"details": {"parent": {}}}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['67'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['172'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:35:20 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [89ba4cd2-7afe-4ee5-9ecf-11bc83472be5] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1180'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:35:31 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r-F_zygusn3PqJsHIb-utq_XvjHcVKMAL-mDNJXyZlYr0HW942qAdB1VDxkMAdruUSZwo5afURRzUHI3pReAKY4aHyvEdsULTEMq9dNi7h7r2nfp_gzbTtPLb5Whdx_R6Cc2cEXePXiaAOnOKS_OMcxro4Itxhml6iVbdnLoBq4ggAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroup","details":{"version":18,"updatedTime":"2018-05-24T09:35:26.8153089Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + headers: + cache-control: [no-cache] + content-length: ['589'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:35:32 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [742aa35d-1d81-4124-b5bd-fee1aea626af] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:35:34 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rX5o8KmiQ9YPp4wOsQf73qFFuGH4p3VPuRMiMWBoy02F-VxTixKGBMBZ6ZrkgLbD4aPDezOtgvsfkF_o2BuyVJvgjK6pC7m3qahJLdVgJKtPJpJeu0iBmBfgRseUPK5FrmQFoXmBu8bozSCyW0lHI8vaH6DmTSDoCoFfANQpk2sogAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:35:36 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1178'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:35:47 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r3SeT1k3k5sDSthl3HiC2-nrStv-hq5C6vVrASAKbrTiE7QKgaQCrz65SmtEDmaQyuxU2kfrGNZuWL5WQ5gApAQrZQt_1Bu85ll0k4bB5PdPH9abGbXw1cQ3PoD4vaAG0q8aXp26GtNIekRsZRTdj-3HFi6VhzSloCxUa1bW2N2kgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:35:48 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:35:49 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r0N21gZobu27GrVfyP3slgWJKnaIOXj9dPGb_K-rKkIn670T9oeJslN6KjYyY21nt4SWi4CxfQd-WFQ2dNvadVXICL74Kg1-BWRHiUrSfQMfQ_bkDhkOcN-qCCrkwVdZglJwBqFpbu_o1h-6a-RMLsWioMTMejMTa653T9x_p0EYgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['172'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:35:52 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [8d0f5f0d-593c-4d0a-9561-9e74dccae477] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1188'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:36:03 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rEEU2bOTeZBpfUrocPVSu8kKFyPJDIjwyBoZ4PSCY8OrKgFi7qvNtgcs36pESP8fxJdgu23HUqXvdG8PQsP6bQQcmpVxfnSR1s1iNkBrgZUfImRPJDUYdDC77IVYDrPZe3oHzRTTxmjZLY-__ki4bVrNRPygS_YUJll6RDmT6sn0gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded"}'} + headers: + cache-control: [no-cache] + content-length: ['171'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:36:04 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [6382dffc-39be-4f47-bf1e-7083c4415d7b] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +version: 1 diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup.yaml new file mode 100644 index 00000000000..1266fa58751 --- /dev/null +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup.yaml @@ -0,0 +1,512 @@ +interactions: +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:26:49 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7ryLDZTg7nSu6KlBS8A-OmP43r5JfsT70TmfMSlHP7bcPe2KYFOVVdps9BlzaQq2b2P8AjyLhsM-VR7eq2AMkD-R7zoKdgPn4yFUI_AfGqsB88oDghS1GW44Q0doF4wONiJWHwfXQO_r7zoCnEKrdovMWi8a65dPaCJqRdJKP8xIIgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:26:53 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1178'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:27:03 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rVzvtcWOxozyNdxgHP0PAmxrNW_prYw5B7DUZw9-puriCl0mLnpn4WV3pg22teef4XtQAtiZNAux497i4NT-1EpRNraHzHeDpfH_3dIl_mBo7ffDjK9GU5RAUM3jPMpaEYTspb13gQ0yCtE5KFn6ccVLNwgvWqWTvSs5PMsBmHjEgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:27:04 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:27:04 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rRjZna9aZLj1LOijSq0XB3s2LgL2KM4JQHK-xY__jVVt-XfeqgmJH9fq852OFRkENh1oIign-IM1bbEthRBVEtV7MK-x1TX1WlsmgcAnAMfO5-Zu50Y-SZccYXBUFiXXHRRpqqJya6U0HoCPXm11DEpaWm0LivO9Hro5TSsYAiLogAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: '{"name": "testcligroup", "properties": {"details": {"parent": {}}}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['67'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['172'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:27:07 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [40e3fd02-9ce2-47e0-b158-7bec347395d4] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1183'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:27:17 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r5e9ERWG4hsJR0Kn6gfY4cqZuvty3ZjrucM-BzKPceqYhkSg5_E42Gj8BxjjnSU2cfk2jB6peuqTsncQQmAYcsCiHW8ltQL8U9CgxHpkCVzSoxO8kdaxJlZbcpJQ6Cdo-_O3jCyw50BQy0uJdBzgEP-X5uKMRTategMj0fpiw18YgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroup","details":{"version":14,"updatedTime":"2018-05-24T09:27:14.8164426Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + headers: + cache-control: [no-cache] + content-length: ['589'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:27:20 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [fe78761d-efa5-495e-90d7-02f8201c7dfd] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:27:21 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rDiMfml66d36KNiYoR0ycWya2hZf4GZb48Acdsveo6hlX3de7EP_7ArBOT3Ee7Rx-gd4m9zY7xpJXSzXfFQlMKTf8xgvEE-go0V1qdKzvMjIjiHFu6ivhWKQGJoi9xUDtucfXgkjd9rq7WQKOxnaUqldK4PhSVLRXo8GRZOXpHxcgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:27:24 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1184'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:27:34 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rRVRuhtiq2yoS9tWyKNP61_XETgxE_JNxB5J81IvVpFDf3BbvabAFot25tMDz71RUBLI2CFcxslp1BcVDZ1PLgcuhNKhVXzu3LEKwBVYpmtZJRhulcQr7BfVp3SR0X_fJrdwZVkH4kz9DBRJUaWG_-_Gm4cCC7FTN4nu564XPUksgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:27:35 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:27:35 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r_Mmgkox9SVdUJMxJla1cjPt15O4toUrDMK-TNSbojfov_HbGCsMa1m_KwHZbF2NCMoazgnwEL1AIBhBZ2LsahhIOFl0YRgtZntamafpFrKCLZ7_TKy23h7u-Qf9Y_l5t1B4_c5BX93quuXVCXfV8QvAm9myFYWIwjB19v62Ypq4gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['172'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:27:39 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [6e8368fc-6d1d-4c62-808f-2645f948b6a4] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1182'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:27:49 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rV5V7eNRBeMTKTrkmgyUHSzhUxqfzZjWRLKVTPsx1lNHo30neSFTIfw7OKAM9oqBfLBTQlHP1XJGgQK_2a6FWg1wx3wWjoRD28p0nu2A-K9xGTt7dsZLrpdlaUBsYeCHTAhQ3fdc6MdmhkuHMMtRnInW5dTxT8wkHCeX5sq5GMB4gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded"}'} + headers: + cache-control: [no-cache] + content-length: ['171'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:27:51 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [fe779a64-218a-4d08-b67c-1a3b6a074261] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +version: 1 diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_displayname.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_displayname.yaml new file mode 100644 index 00000000000..fd87ec9902c --- /dev/null +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_displayname.yaml @@ -0,0 +1,513 @@ +interactions: +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:27:51 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rV8Yq-JCNNJ6QpjMkWXyBVC3q3emYPtY6gwRWf9b-kfKjLOs2_OFH3nJEuQWVmkAwl4677gCXhowtn90AoBgMA9jwexcWHVybYBgS0WMKmZx3hyQP61yjLazaL7hVDgAyMERWe9HIpP_I0jfen2huZ3A2a1n_SYYLlCNG_L7uxa8gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:27:55 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1183'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:28:05 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r8eS1NtN8xqP2d0qUMx14NYTQufYpu6FtTFoDMAIoHf6g6fJLBcWMP82pUuwmJ53bUpGD48567xk-zBMrjIlrv7Bq27TTV25-llFLbpUGrEgRU9g1wNMZN9RG_XUeP4KGhvNv0cmvFFLBV2-OtNU3gYzkvD2thYs1jPNqkDkMkCwgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:28:05 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:28:07 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r44FJ9pNNnzF6vn6wmqbs8wf9CCg_tbXyE_9K23Fv_qAiUScfr9sEZlRufaUm4ZI2vzVTpYOwWfZIdN8Lxj5mdzsxvCYxX6hGjd-MkoyqrMSfe2g8EMWNl_zX5s5N5y3qNaZowjAUFsYJ-OHdeFck7WBzuZEnNIlNJioym_UsWE0gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: '{"name": "testcligroup", "properties": {"displayName": "TestCliDisplayName", + "details": {"parent": {}}}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['104'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['172'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:28:09 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [c2a8af85-a80b-4936-96ab-20fbebf76659] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1188'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:28:19 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rRrqCQqoBh9mzN6e8npLinmvXWOd3XsdINEoCkTQsJIOWvKke64j1OtRX3opDEeygneSx9HggPGt4Ij310hYABms8RmQbKd0Qj9G6TxGnDsx8INmfG00owEunxgTMdDrT6aieznK95sC5-D1EWX5B0mWaaeDRtxLe_J267veCBdogAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"TestCliDisplayName","details":{"version":15,"updatedTime":"2018-05-24T09:28:15.1235449Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + headers: + cache-control: [no-cache] + content-length: ['595'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:28:21 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [ef8adeca-1b25-4518-b481-5c8e9b79669e] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:28:22 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rkg-8dOhbF7itd2mIpx2EDq6DUkPXRbllEWhoF1xIx7t3ijYDvmjvwyt9D6MvB_bJMZRmIANRWS7l253AABIuZFSTxX-_kazHj6ks0TPqaCJESo-0eyo6UgkYmGHr_Aiq6VsyiPGYsqgPu5WL9gl9SKTasHF2BlVC8bpXawLNM44gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:28:26 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1177'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:28:36 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rGWeU4ePZW3GYAEBYeSpvPJv2lHyPMXzIY3huY0g_x36NltjQMvFbhx3bZsKGRWCvF_2J2O_SUn8Wh7isrnAqlKgog593c52TdJQDf3fhQV8VzJwC1jeQhHw1JCM5oliA3ZRWOHcnj_T2HpYMN9LfarEOBIQBU_NXzJpjfxcEYhIgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:28:37 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:28:37 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rzK5TQMqX_Kik2e7A0eXW53T_r0IJ-Z6ElmVnLM4nTa-DapeETkZm3OOr0iVzzUyJeK_PY79Qo7xxGVWy-WddFb_lhsXrdjZduWo4bveY9qFdGiiIsn34agMRWrtb7xyFyhNKU3xv7VukVbsNf1wAk6KbYU4Yuo16OvsBPe2bgOQgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['172'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:28:39 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [b0e37c0a-7086-4cda-bbed-f890b765abda] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1181'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:28:50 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r9pFsGyDufzZYVs2mIx8L-ehvvdvGTHFuANL5S1xLI1BFDLplaVuJhKxJhsVIxZafNBYwonZxpHveDxuHYLVeorNAU4NIq5bE97BeuHNyin_K7TpxqVlilH2IJchvnbgAgIGXBwXQj2NWw8caQwWFJjjQ3NTtu3HV6JMBQajkbOsgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded"}'} + headers: + cache-control: [no-cache] + content-length: ['171'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:28:52 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [b7378934-a34e-421a-aad8-20076faff7ef] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +version: 1 diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_displayname_and_parentid.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_displayname_and_parentid.yaml new file mode 100644 index 00000000000..e24a7957ec6 --- /dev/null +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_displayname_and_parentid.yaml @@ -0,0 +1,1023 @@ +interactions: +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:19:44 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r54V0ZRDOQDxhSIlvDvE9uBfTiK60fxLapMQzq47whpkH0Psn-Vk9U9qWL-jOZuv16I8_CDFnlaeOutOFKKFFpXNSs-X-DNg75NzEWGHWyBc8mCMyARoNOlOglq5zy-cMGqVSM3uSzNW95kF6YGm6EYSJpU2nONBxofAuxOupsh4gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:19:47 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1176'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:19:57 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rtRs9h_zjab3LCl_djvlY55AkE0-Z699WaNPUUgSoc1lzsf1UwLSG_5hsuByABOPTlP0dBhzsIgnirJ2sTEL03gT9wiE6jGKOD88ZmWST1Fc1tDhQpX6yv0dLqLLgR2gSQ3xSBPe1Yo6sT5Q9uB6gcDR8X6dPsYT1eHEYni5WzeQgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:19:58 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:19:58 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r5L-odZU51ug8iQmznjNgJ8t3dqZC6DsRzfjrxgIzXKWl0x9P23UjRO-X2JWu7CJGU3u30bbLpMKWLDOhJbPlF2m1s0Iqwq_KIW8r9MQ3qjIwy9Bw-fqQv116Zkm5JZ3dyquaVgB495m7AsvFJIoHzei6ddSqk0BPolN36W-rawEgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: '{"name": "testcligroup", "properties": {"details": {"parent": {}}}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['67'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['172'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:20:01 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [bb7a22f6-be45-4e4b-bbac-32004340310c] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1183'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:20:12 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rNwWcVvuJR9B33Y-SZfadPeeQen5mIxt8JXWaJSF1KLaw2X02a2349awwTWU34tW-cs4qABl9SAyI0dYFbHf5_PhrCcKLDh1sO65InQfN7UzwJ9HkrDabJrTPAOAieXfxq3EWSu_y7SBNL_ETNdbzxzQK9uaB75aDhMg0RhNIYA0gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroup","details":{"version":13,"updatedTime":"2018-05-24T09:20:06.6783577Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + headers: + cache-control: [no-cache] + content-length: ['589'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:20:14 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [e41417ab-2164-46e4-b8d4-6304d566faee] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:20:15 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7ruFU_hsq5WZbiDaHqjvErYCbS-w_gX1UAUir9T4OIkYAarbmj9qIx8xgdk-akRCI3sww5qOiAt1PmCIcLFobEU_MdoDaIpFNFI8S8a9A21Frz7o6zR3daXztb6FBdQmVGZpqVBopwFMFoth1bMShouNS-NrQ99Qoh_K0rSgq6lrIgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:20:19 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1191'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:20:28 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rWFs86mFoTaJxMM_d9orKxZTBScwhOylkK6pWOwUK9Qri4ZCTt3J8wCDla8GTu8M0PqXMVxYl59iuOwtvai2EiI4B9fIdGHVdNplN1YSUXwkvuKr0uZ9Zor57U63LT7fZ3OqT0df9QaTU2Q4ueOOofEhFHal-9Pmhd1oyJExNUDQgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:20:29 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:20:30 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rQmnNWulPpmZ0hA8EIb4rRy4gJLoJ5MQCUajSJ1el_BKPvtmadnVpAlQMlNWACdc25CSVWueKBZckDFhY-rL4Y3FQaGy3JBOXgIIRzft5n8MqjB33BusNlbaLsl5HAMEFYICU1pNRTMg5HdNy-uQ0HmbDGfHBylOoQep550Z138EgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: '{"name": "testcligroupchild", "properties": {"displayName": "testcligroupchildDisplayName", + "details": {"parent": {"id": "/providers/Microsoft.Management/managementGroups/testcligroup"}}}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['188'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['182'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:20:33 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [4ae40d9e-d7d5-408b-a0fc-57b23221948f] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1191'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:20:43 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r3SvZEsAmEKDqSKRVMViy-p1oQvpjoqjtXjzrsCyspzmuzqIuzaksJ5KDZd0N6881aUfTMEmEZZy6QO79Bo1_ICHGu2zS_KywGIjQA_mjHU9TLE3V6bJPttpAs9fTH6erD34rA2WzeKlaiiY1urpljFQefxppMrbS1s4oZBHIAfkgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroupchildDisplayName","details":{"version":5,"updatedTime":"2018-05-24T09:20:39.6696064Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","name":"testcligroup","displayName":"testcligroup"}}}}'} + headers: + cache-control: [no-cache] + content-length: ['542'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:20:45 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [6e7790b3-88ff-47b1-8972-16e5085309fe] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:20:46 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r87LJVOFVCDgAvyP3ur3bzd2gSYPlVs8yMqVSgs0xSb6aY16zPs-H3SWnhGwoeXpZny6-Rqo8NCvChCdLp-q-J-aqL6izgedKIeuB1ylo7ITeF_W17vUXTBYvLS-PcfdycJ51EkkshAE-O0_lh3_MaMZNIylDBiT4Jj0eoziNwGUgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:20:50 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1179'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:21:00 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rQy562xUs1l4enW4FgH-jzPtdKTFIRy9Q12A3PzAPWWYJ2u0Pxf26vBw2Ue8_b7EOdD-R_bGEIJB3k_keeqaMvVM4s4t81baHKSPUKWE0P5aBuJQeQciInIhyYxCn8klYMUJ7b00hokr09rOWWRD8yMaWokyd08rNiTJmqe3FP38gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:21:00 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:21:01 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rcQqDETXcgN-ZHUwOjKwATvbVI7qE2xngfRlrKxOekpVCYO9BV3ffp6-8M2YUP_wuOZ71PTYaq3dBZWN0BCOH2wWuugb7QLX_i4hOnCq1n8mAOF88uaGPWG2zmDUxfMshLGB3BunqVcPyuDMM42T1yaLYuQtqMWZyNmznDAOaWNcgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['182'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:21:05 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [54f90119-9dc8-4510-8f50-e470174bfa32] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1186'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:21:15 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r6pgv4Wz2wr8ESR5sKLP65bSieeo9d99f4BISrdQ8aYqg9gbbir6rSVWoDzG29NMfw_XOUizEUO2wUfo8csCDFbMwn8DMRI6Xpxm9RHAV9aj3ssGnVW-6YAKw3x2Jh9C2O9rVK8S3fqwATELJPAAO5Sl4cSWly8th1BuEtjXmJiogAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroupchild?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"Succeeded"}'} + headers: + cache-control: [no-cache] + content-length: ['181'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:21:17 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [74abfefb-ef89-4760-a88c-ab7bcc280b5d] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:21:17 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rBt-tw3jfBH1LDkY_wqG_tJe3keKlBBaUmbnWbY7Y69daqbYLZSyNA4ffTrdL9X-V4SDStvhU2PPzPDp2cV9DMGTYtB3Pc31arn3Mjz8P8NpiGu33p9x9t4FjTRHKewYHpflWb1Bhhs53yn0nKAqBiQJ9VNVHsjlVlaDlb_08si4gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:21:21 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1179'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:21:30 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7roSnbqT3Ra-1qCijvhrR9JCbQbnma-EtmD33tURGtKcOpyLfFoCqgWQAcwI_8wmZAJ3nNz3iRec2oF4OxnrPC9SoFddIufy83uZtFloCFY1j7eiguTzNQQ7G0JaTMMLVAtahL3zteYDxp-DOTk2qyfgBewkgs-SSsf9cfraGBKRUgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:21:31 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:21:32 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rN98UgPDeJ6Y-3CM5Vd_z3QvfRM0-_1pioOJ3GsGgJm632ETBTTTqQvSfYzx_fAaIwcspx4JqVmDednOQUjA9Bytq6P94MEY39E1rwYBel7wWkFJgm8ajpO46OvbZp6VTGpzCP1Bv5z1BzqKOmEdZdGizfnHhGLakcuHWN7rrEv4gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['172'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:21:57 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [4409ea14-41ae-43c7-b560-ecfc661b920f] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1190'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:22:08 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rYUzHbE8fMZVO_zvaiDZEh5JZoiqm35ZOB5NHq3o2ow57c2KPUgf1ETk2MejpMTdUFgKbOzuAhkvp17JJoFUucM6-gWKxLE7Rc4jNU4eZSbAiOCbPAOmA_sT3fslBi8TyCkJ06fSmYNGTLsocnKEwIOekjnstEtNy-xs86EBU0VUgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded"}'} + headers: + cache-control: [no-cache] + content-length: ['171'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:22:09 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [a1e6272d-b049-4932-91cb-df128be4cfa4] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +version: 1 diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_parentid.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_parentid.yaml new file mode 100644 index 00000000000..a12cf465618 --- /dev/null +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_parentid.yaml @@ -0,0 +1,1023 @@ +interactions: +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:29:45 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rIw-G5-RfWCs2ynS_Fwc00lUOty0JY7VeQB1QNruEZ5WnUVajsLwqJ5y0N6lCwOKvn0YWjwadxXvgJy7gE67mnddQMZVFBu1_ijBXSgMJl2cU2lp05gfLN-4DOWjbBLHxVeQoZvwfuVr_C2MrlS9S2xlfNAiUw2AmPjd6ctl_jwIgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:29:48 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1190'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:29:59 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rF-RhRW-WuGvnJ79Qh8IAURtz4AfqCcKdBJN9DfPyCMpvJV5EDcgv-5dqCyWNjwbSjIXyDKgCDX97XqkdfhMnAwPxpwLy_HTnZi0MCKIWEjGR6MbJxlb6ayeMnExceg7akT8uD2YyWgOpV2_YX4jahzaCPipr-8shjJN3ausB-K4gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:30:00 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:30:00 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r1rkcfvWDAW6bmWd_81VbAY5XQI6q2-ZacSouwCBNmEu4oJ3Udf9-yKZPdfmXVK_gZYSLo_gW-NrGuv922O1457gh370KdsatVKHMKRFu6VJr_JPhade1nt5eNLdBECxdKPPvAjldQAIS7TKUds_rc0k-zcJNcpR4PdgMqgRwmCwgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: '{"name": "testcligroup", "properties": {"details": {"parent": {}}}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['67'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['172'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:30:03 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [aff58c0b-b175-4c55-b332-f1283f1381a3] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1187'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:30:14 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r6_w1yFFJOs9fBL3u7NEuOn-iSvpOJLaaYwSsa3ebQbCQKWGVxuFH7ZtgoALihktYzfvo7Fv4JDN25i5lOzbwTGa4gLNPShrFUqQeAGMv5wzWEhHnqqUOPzHOCb1PvOlWfe3e52ipqn-B5vfyfxmfj1zWSVn87CSKtI1tHSKrHxIgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroup","details":{"version":16,"updatedTime":"2018-05-24T09:30:12.5312454Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + headers: + cache-control: [no-cache] + content-length: ['589'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:30:16 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [0a8eb204-e63d-4cbd-b94d-75c5622b846e] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:30:17 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rVIJuMVXly5IU-zP4vujvMGP1Rs8YZrcyXsHrBRBUMCgdM-WqozpilQlDwN2Ly_XWL4SvGjy_Osbjd-CQEMDxhRSRsUbKURzYgYWVvcGiKW_ogstrPbz2011654GuhqsybtseFttG_SNPD5ybvLd1VpXxK5lOgmvKleDSyBuC36ogAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:30:20 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1184'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:30:30 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r76mQt5EJw6JNiZ2Mr7nTwoijbh9BQk59UeakwDEJUpwiDR4Y22tlxX4wwzgUT1TPhPXNHpVxRL2bTT__LQGd0L9ppckI_P83-LC_cmhJtw0jovHFwPmgQbYJRdpcZm8IqjLbugFAIKRpF04K-vy7I_W5D879Bm_Ft8E4V8D-deMgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:30:31 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:30:32 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rW8d5fjp5m6DBzPg8VC_eMANhtAciX-O0MGEp0mrWUHqoNJZJYjbu7Bz9cUyiWrc5h0mCN0v1dHJN3pJjP1xhsiCnUgAwXlCw3swo6acDbx8BfirCryN9erlVvVrS2psPT9JukRO0m47sYPwqfd0cX-SJKtXTWCthB_Rls3c4RpkgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: '{"name": "testcligroupchild", "properties": {"details": {"parent": {"id": + "/providers/Microsoft.Management/managementGroups/testcligroup"}}}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['141'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['182'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:30:34 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [024b9903-3400-4f54-b94f-6162c9381e2f] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1190'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:30:44 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rFC3No6hbuSmT8PXZifWXzR-fX8iLPKyHR8xmLAh8NGN2QOJQZDIG5lqHUCA5duVP7p_UG66FT28e1DnVzCHpu9-jKsDXUqa_Gi5ptzbwHSt0k_DnmseNzwG4MWI3oOYJLB6MIJb0h3Nd1dWyPRsNbizxcTnzoIjUTKTcVozzdrEgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroupchild","details":{"version":6,"updatedTime":"2018-05-24T09:30:44.2154512Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","name":"testcligroup","displayName":"testcligroup"}}}}'} + headers: + cache-control: [no-cache] + content-length: ['531'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:30:47 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [822d3c43-93df-4640-af86-cdb99bd997f9] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:30:47 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r82WWIkpUZDL6MQHWNwT12lWDzlESFvxM2hrSjlxodGfsmZNNie-fUH8rKQHhWIIintc9PfbMyZYKT7TyyVuf3qcS_ihN3gICLmdbKoo-kPL9pXCgwnAMFJ15TUUk352TmiLyW1i4oGUQr69vFzYWnEwf7d6Yvil_Ee0sBDpXW9YgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:30:51 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1190'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:31:01 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rAeHhmd76rh8DyLc6ahz7AUDZ7cXoe7tcOWlZATNM_oin2qNNBVWHRzYBTUuGZWzqPVKDHCKDG0RAVrcGAMvUvEyix41VpdJ6QKEVHiQxcbzzGD6wSVHIV77LlZvSn1qqJ7sKJBfQbSST1Kq4pSHkw85Gs32CvOzLnMa-a5IfL30gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:31:02 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:31:03 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rszPbef1YgP4z70t45I30XqwYF4jdc-TbB0P4Rx7rz3U7uBZ6IE7tIrijbMsWnGwt_Bam_qjpYB5BVQTBhVBzyxXIFOI-be9f0ClJdJUQrN-434hrfhY5qiofEe4nnxF6lIsTDaTa0cDbzST3rzMLsG4RMR02OkqQFmVuFxfB5iogAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['182'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:31:05 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [8bc58fe6-4bfd-4065-a226-1b55e10cbae2] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1186'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:31:16 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r5tiRqV8MmlXoeIeAUB2r_z4lrMiWG9iTu_mplNDcV6UI9qH5YWJ0N8hRDysgGcWvVFZYm2z_QQRd2QuUeaGbue_0xwZCYQM40wL8aVBlP1gq5beTe_UHuk0FmT6LOQFS5-HhmUPMwejGaBum2Nim6NRKbyWRcCE5eGeScXMq7WMgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroupchild?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"Succeeded"}'} + headers: + cache-control: [no-cache] + content-length: ['181'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:31:17 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [dc58ea47-32a5-4c78-b1a1-65de7a226d31] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:31:18 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rpuf_EPG4rgZZqTPpUWMKEkb6kSTpHMKOAeY9xPRRAnJvkHZarWp3FZ4aYtaNsqHPUt1tWhdDML7Q-XVb3-oygLMpaOBimlk6cNwNggZVwTReEPNcoPw6A4U8O-21tRVBaqVkatpCWvfT_8wY5d0HGqhnH_Mdre9v4_Azf_FPbX8gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:31:21 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1183'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:31:31 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rlZnMooMiTOAVeTkeHDMIcvnWfe_lJw9CXE3yV6GSpumsXZ0sSy0R5ufSSfmbh77M6g43FXZ9-jp1wUr8SMN8gs7FGVrjJFoo7-_F_6OTStM7ayW0PUXtZY1HfscOBFism2qzSaOhjlgDsnpm0nGEt1mpp5nLewLCiq3v8Fjs78QgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:31:33 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:31:33 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7ruB-g8w2XpVoUW7CKJa-y8lBtdGC9-NJEqc1EErgEaoPjp6vI-niNtnErLKmsK0xvOFIF7XzoXvH6ppx5RrjLFQBbPY_axv5AU-BUO7W-FsrtyuguicwEMFIRVmhMESAPf7qcqlHd3JKxPmK_9BGp2Y90aIyulkVbhNS-9qJmk9EgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['172'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:31:37 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [958b63fb-6120-4a1f-b2a7-7063de00b3b8] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1185'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:31:47 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rPzdq-T1WUNL2NACamoKajUnefDF39ypJK1XQ1p4Twyyg8GQmK6sDyu7cT2ZdZkCUpK9KxJ6L7I4lufYaBfeyqNawrjsi_HBEkUC_dUF298uYthOGuTmswj_fYo3mgvv9iJ8-efDcFFFadFmvIijkitj15LEyUYQyaqpkw2VSfK4gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded"}'} + headers: + cache-control: [no-cache] + content-length: ['171'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:31:49 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [91aa5c5b-abd7-462d-85dd-1851848c76aa] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +version: 1 diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_list_managementgroups.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_list_managementgroups.yaml new file mode 100644 index 00000000000..f07cc401d54 --- /dev/null +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_list_managementgroups.yaml @@ -0,0 +1,192 @@ +interactions: +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:07:44 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rtKHhWvvPE9F3RcIV6U66aUoTmkqFCmU63kXpWxPUj_K7E4fYDnMEpjPelS90Sju581PnelMxY69tz_6gTCXtxRsnRKUy7sVnH7liTqzUKaWmMRNj5f8-Eur3BfgZlOvJJJQYxD_AC-O8_OX5zSVqiwBy6gko3yErOJ5kivb6_fggAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group list] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:07:46 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1173'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:07:57 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rJ4W3rC1UvmLpOhaBao81LSiauXWUUBhkvghK4fwVpb34ctjAMaDzfwd3UknVY_f0flLbHVTYvikMax-5dc98yt5NOpzgn9_Yt9XxsOclUOLCTWdq8veOw9QMzFmzdxehERRgaJZC4eE0_jG_Gy9vp9jJfmbF2JUTGVrAyUVf2DkgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group list] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:07:58 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:07:58 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7ro906PVn-Zo8275DQhPEjAxSoOB2vLIMfGEeyJapRkdFQ8tiiq7zcU6fZFWWzOJaSHIXiNT38W7_4CijYfgbXhn2CvUWYxzV2nisZxz_VQ_kNUOxPYElOrpdL7FG2nHABobHgyr9JsIAlcAL7qiL0hAKc1khrdoVhJZoETKsBZOkgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group list] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups?api-version=2018-03-01-preview + response: + body: {string: '{"value":[{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","type":"/providers/Microsoft.Management/managementGroups","name":"b1af47f1-138c-4ed2-8bba-119041b95450","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}},{"id":"/providers/Microsoft.Management/managementGroups/TestGroup1","type":"/providers/Microsoft.Management/managementGroups","name":"TestGroup1","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"TestGroup1"}},{"id":"/providers/Microsoft.Management/managementGroups/TestGroup1Child1","type":"/providers/Microsoft.Management/managementGroups","name":"TestGroup1Child1","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"TestGroup1->Child1"}},{"id":"/providers/Microsoft.Management/managementGroups/TestGroup1Child1Child1","type":"/providers/Microsoft.Management/managementGroups","name":"TestGroup1Child1Child1","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"TestGroup1->Child1->Child1"}}],"@nextLink":null}'} + headers: + cache-control: [no-cache] + content-length: ['1122'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:08:00 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [1f5d0bda-67e7-47b0-95ea-597f8d1b43af] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +version: 1 diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup.yaml new file mode 100644 index 00000000000..591634cb040 --- /dev/null +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup.yaml @@ -0,0 +1,1213 @@ +interactions: +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:08:49 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rOktvu6yuyNTq4hGKoyAniBOFI69HM2ke5UTEi1a_fZDUsFgg7gXW-GZFRq6K44EJL2Gk9jZ-DIMv-AUIkpT4LeEECD89dOkAkW1xqyjlZlpiaqtha6BmGh0monXdfd-4TGDb75fr4LGXSAxHI9TKLIn6R44ETRpeDWf24HNZrhYgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:08:51 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1172'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:09:02 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rc3Ejbf0WaKwjdmCOjAJ_h2nWoPRLBgo14zaLl4WsX0M7ki8zOWkhOAACOX35YrG_NYFtWo3nUx7QTwZq56fzfpuWehwx0ahj-Yjh1iztlBKg5GHlCQYXGTkG-V47bmSjHT1Nej_zAuxIYhO_7QAbsq_xO7ZD7zxHstPVGTtLYP4gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:09:03 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:09:02 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rHKcQNKgspbodfLFnP1AzUbgI4TaKmbx1TqnC9JkXWBqMmC6ZGg94LjiSbD4wTVEGkAghjuu6XOc__L98ScjzeN9X5lKnWqdO_SAESdHPGlIpBcmJvPprjJdb-Kb4jgWHe8O7CLzILtdbdWv-R2v8K37oc5h_OgMtHRTkYGvmTeYgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: '{"name": "testcligetgroup1", "properties": {"details": {"parent": {}}}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['71'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup1?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['180'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:09:06 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup1?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [a19313cf-9a77-47d3-b459-b5a4a6a432fa] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1184'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:09:16 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rP8xnTyFo81Hwzc1K9xWAf3O041A-Waoo1OO_ajOTgYafiRG5HOvgiizvucf8EntH6shDWW-oMJ9ETpd18IeXnlcewJtOBPCjOPI4W9U95ec-HWZD-gsf-zQoGHIFtS2DpZSupiwopTp1P-t7g7xYwEwIn1MT_nq3rcEIdSXsexsgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup1?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup1","details":{"version":5,"updatedTime":"2018-05-24T09:09:12.4054383Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + headers: + cache-control: [no-cache] + content-length: ['600'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:09:19 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [572a2706-2de1-45d4-8623-1d43030013ff] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:09:19 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rW0Pu_qMwmLw25t7Oeqo_cuiHf8XFY5hqbQp-ktoTAuwpPFmsregEOz07x6KsYHIH3QfOotdem27r7skxp3UkG8JGDfTjQkfkw1dP1CIzxGzPh3IY0AmLGq0T6_XLDULu70WN7yeKyl3X8jffGlrxV7ZzdIVuQQZac5SdGruSCIEgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:09:23 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1187'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:09:33 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rKSt3ComuUFkRTHK6jU_cfqz7eRJgS4rSw6FGQwc3Er9qvny_7_HcaxwYBSgSWMxBwpXXsuvhrZ42PAbKTcPkDdn1wY1X57U8b9R2w1j28tAlmm2hDBhxsEjGmhR9ywN9F6ilCWLL99szJta0Z12_CB-dZYoLitht8vkzC_00eQ4gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:09:34 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:09:35 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rcm_8W-Ube-0oosnxu-1XGAs9cguA1OnLRVV2_U7Ms2jda8jjFeuBMDMw1b5iagV_BUX4oNA18Vrq8SBC2dk4U4Rk_k1z7zKprF3gD2R4f4NesQZfvR3FvGiElmkxS_TJxVNifngrSLCpE6vVPqw9R-TlAWmY7kCaxCBZEHgWNmAgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: '{"name": "testcligetgroup2", "properties": {"details": {"parent": {"id": + "/providers/Microsoft.Management/managementGroups/testcligetgroup1"}}}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['144'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup2?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['180'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:09:37 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup2?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [9d16337f-9d6a-4b2f-94e1-1b923facf215] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1178'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:09:47 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rEdj4-9E9ArTO9edkMZeP7jgHzUrdQdkl-wrXnh3VH6jcxFiXhDpuRdM5cAUK19auNK5GSI_ch0wRNJ86H7FMNWDaymTayypSeDaGR9wgRMb4M3p2AiCWSSw6WPv6gK0JT462r3kCc1WKCg_6HSJj6sWGdOVDZkSN_n-p_rn6mE4gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup2?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup2","details":{"version":5,"updatedTime":"2018-05-24T09:09:40.8793377Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","name":"testcligetgroup1","displayName":"testcligetgroup1"}}}}'} + headers: + cache-control: [no-cache] + content-length: ['540'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:09:50 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [008e5086-4723-493c-8eea-27321bb6efc6] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:09:51 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rUZzdceK6_S13c4UqYXrkhmABHnEbC2HHa7vA7zj9AeQi_Yqgb-EURbs3ozSvHHnsTs-h_9xAsDkKQ8nVouiZwK_YfsIWkCpnwtWoFPnLe2tzX-v12CbxLZPMQDFCaZfAGF-JXq5tPETQMt3YiVI1Qc13IgU5C_FagPI_8EcYPmggAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group show] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:09:54 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1188'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:10:05 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rWWQ8uo2F694XWERfdusBLBLEktfehwA3II9R_BrevHkJ-p5GTzmR_txHV88br0V18TpK4N13dfdEn3rEAyQH8axHUV-mJ_RoDH-iSfWRuc5fQoUiZvltF_vurR97_W9_qclGQsNvOKiZtqNBNTiMNv-ElLBjhwTDqWCaHPhe21IgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group show] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:10:05 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:10:06 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rCBDQ3Lsj5VLwQAq0XTYLf563QZS5Tuk3x67FRgEk-NhvnL-cwx9QhFO8zJ4f5O7LmgaeheQ6SJt5rn66UsNIF7yXKXuXRaK0YmJWv6lnbtYMknhbeckziN-FXo3dYMb9ofAG8j-MrqMdPTnpmomwF2YBTlbd9giy4UXUU1WQeC8gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group show] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup2?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup2","details":{"version":5,"updatedTime":"2018-05-24T09:09:40.8793377Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","name":"testcligetgroup1","displayName":"testcligetgroup1"}}}}'} + headers: + cache-control: [no-cache] + content-length: ['519'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:10:07 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [507ac6e6-ee9c-4ddb-8135-e59dadc7ed4d] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:10:07 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rXu5jORBFtKYdTRnQT2eb2QzSdE_-QsXrERQPQ33HwUtE2PZp7fN2sLTUKJsUn6QajAZ02CueZjpWFM_cJu9wGbNdYbZjlO8Y2ZXtVFVeBQfUL66CRAFTkOEcWT-uY87RHjtfFFX_itJsnio0ARFNaDVVGeJZ8-aovr4u47kkHwIgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:10:11 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1180'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:10:21 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rfUv9JO9NeSUJR56P5u6UXRX9lZPuWHf8DmdvMqEudA4h6W9WdYUt8UnY__xcESQ82HmbGNGnqcakBIuz5baEllfFoZ6kQlRxUtrKBtdCIW7NB0EGk_kooltm1UErLQbGt7Met7H6gDjVnW46qcw0M1V2B3WyPjCLEUT6IGYgMgMgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:10:22 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:10:22 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rnch3hTFk8qt02dQehFVU2ztVnHPFhJ2zJgw4-h29e7GczPx6rmAmxTjD0UvtQffTij_cf07xtn-yevoqjueDwj1W_R_0ME6dLeaFrThjG-59fcbJxZfNIfilWyW0AMmz6m7UhcJzvjyBILR9u5CR06jaYY9Iwfqy2rXoUoEsVvUgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup2?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['180'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:10:26 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup2?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [b6e734a8-c74f-4e0a-a7a7-4232f0ccb29f] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1190'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:10:37 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rvtnK2-uAy5kEsjU350OhTcyYE3mDSjSAruSxBU7LlBD61NR-L0NU8Jk4sEoVOhmndC6DpAmFFtgoYDKjsvElBbixARwzleLVLpJzcBcfQPf5NMIH-QIZpFttt48dZaVv0hrQRjq774dSrKb6qdvQGlP5dvKbMOKpoSoVMpitYW0gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup2?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"Succeeded"}'} + headers: + cache-control: [no-cache] + content-length: ['179'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:10:38 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [36ba9f2f-32f0-4932-b17d-d42ee4f0acfc] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:10:39 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7ri21uST_pnM4gEZ7i2FsiBIaNIBEEQONTcTSsvCI0CBT5FXuo4ieSTMuhT4Uwz1JEkxbF-k4sfjaxweHBp1_mZW478RjIruxqAZ4gFbGMTiZUvD8fdNa5s6MwAGutBxDL8MX6qttVNJE38L7kxUhk35YsfEDPfchhto3AIh-a1pwgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:10:42 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1187'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:10:52 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rme6cPXPqV9Fc06RMOnrLFLfJ49ViO3-wr90FZktwxrn-PYJzunClGdmK8a7_0opl8cNVCkiVP_fZY4bSe0nQBU2pj5R-OLIF7BhXp8YnLjm_-ky7nMtRWkDCoSsCEv2icO1y2j6oLDOpyORO0aBilw3Q1809ferUvstthlGTGbwgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:10:53 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:10:54 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rAHDLBz_DpiBWmnqqYKDXNfAilNjveHE6kTx7nd12IdxR5Ek-RNf3SfWvOQYGH2-SFxlfVtkvNYLjsxUQx53lp_hC47yS5LIfXCm2VroESkugPq4wbDdGRu7I6PfWf6Pfo8R9a4ckhPuizKYqlqI2HimW6FHzcBIDbbeY0GpuVMYgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup1?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['180'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:10:56 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup1?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [6aacff8f-3fd0-4613-9193-417a26808753] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1189'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:11:07 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rpQkV7SvrXmV4y3_Y0ITks-olZOlt5NtkUAs1ppusrWTFAz22BRagr_fPQ8qM5axymrgNVAKpAt7NsCXz9dMr2I5BWehNSbsN0darWJnh-hdiIcnci028Of6sBr9QliCqarEBHMc7V8hYcNm0BOe4FYzUUhCQjHNOutIoLXTQo7IgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup1?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"Succeeded"}'} + headers: + cache-control: [no-cache] + content-length: ['179'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:11:09 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [1d405d44-4b85-4769-bf72-fceec405f230] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +version: 1 diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup_with_expand.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup_with_expand.yaml new file mode 100644 index 00000000000..b51968b48d1 --- /dev/null +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup_with_expand.yaml @@ -0,0 +1,1724 @@ +interactions: +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:11:11 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7roHEHAnO9qu4Fd-t-DBeYILzPKP0AENtF6K4hKg4ZKwhwpEA9jxyvPAhGBq9Dc9jOYdiMym51tpRgXp_biT-mqk62OgJHJg7DbU3fnH5yf5L6kRknIdmDyzy55At215xP0gaNsbnCArxggLAB8_ubB-tbMPwfg_jCQQMaHzAak1sgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:11:14 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1179'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:11:25 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rxirj-pGV5fNS1oE8LNpYZ_v2aVrOSnY_IEV78Ef23rK0Xs2YRe-nMJyRHJ77p4IktcKWVBNSRRY6bYf-IjZStKa1U-loYc4KrYTRFts0HoDRsfXeanB5ub_wXgdEhkhgZrPgRaabtJu6vjq7DiS0DBbJcCQLXK-3JLSgKH420-UgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:11:26 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:11:26 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rpFiIIjlacs8xsCMKoQ8FqIULI0ijlBDoB3OpC0l_ZWdIj64Y3cWDZKWH_0VtmUpjdHcJ1egzBSh1T9tWZyB_OaVA00hYw8uzJMnS080EpCjPUKlyzcGjMDMesb2d-kU4jPQAQhoYZAvF29Dv5Lh_1ajBRY4slJr2wfd_2vLBtEggAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: '{"name": "testcligetgroup1", "properties": {"details": {"parent": {}}}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['71'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup1?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['180'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:11:28 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup1?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [22e5d5d4-9c56-490c-8612-146147a9075c] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1180'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:11:39 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r8CCzz5gX3dkIUGgnw4bJMsCA2ia6g23AXM75Jke0SKoBiI1qRJEZaNQDisr1p2cnq0WpxhYq1Uv1-E_tRRF7VGbS-vbBIWFkcKFCK4S5TNEmxv6xWkPQUk1h6JyZ6NVCb6oRmB1_ssjGO1dvpshrXbq8zERWTuYlAQaG2M3EiakgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup1?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup1","details":{"version":6,"updatedTime":"2018-05-24T09:11:38.9928726Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + headers: + cache-control: [no-cache] + content-length: ['600'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:11:41 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [f80f42de-d347-43e9-bca4-e0f5e39c0203] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:11:43 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rPEiNdAO6rPGNsShRTBIy8UX0T2RqSA2jE6M5Li-J8c-ImUiI7Hn6L9jGcULaESSis19DYEOBEg5nIe5zk8hvcugfV8KY4rxI_Z-2F1ITkfp3Fc2tBuOUWVshJlTOg3ESG6_GWz6Kn-THbrDNb8WmTaOSaYpbw4uauSS9LCGZSzcgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:11:46 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1178'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:11:55 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rWJB0zqotEHIn_9uD8OHBSFXOW4qLJWE_2RKju9tawdi4MJjLk6fXys5oako_pCh2Y8kncosrYnQDotADCmEh13dbjTVUcOZnQag27IJ2_XSjQd8Igt1a8ou_jgO3_AWRA93269Vs53On1mQhFFrkvPd5JaexbmQ0zITOfqxdbBwgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:11:57 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:11:57 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rUwBZcaJKxa00QHPmk8NA-AGvN72He7UBXC28T2gXN6JRAt9le2-ydiFHO8UOL_f_Os2EwwPe_HT2RR7kV2DUibzXpnnno4fKRvHnAobvWqnuCUJjM1I_2AZTCbY1eEv4z2HrjzGigPduSrdkgYTxQW64YF9gV0jWzFdtk3vwM4ogAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: '{"name": "testcligetgroup2", "properties": {"details": {"parent": {"id": + "/providers/Microsoft.Management/managementGroups/testcligetgroup1"}}}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['144'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup2?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['180'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:11:59 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup2?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [dd546128-7b8d-4fcd-87a2-eac87aeb1ffc] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1179'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:12:09 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rnKHmSfH9uF2yx6WLFjSSWc2Rs_N89t1akYUwxJcyV_VWyL6SaLhfDfGqWrZoLftJwsXghycsyU-EgKSQm2vNTjvADnitXN3aLIqbbAFkMvGuPHfWaNAtiHgN93VccUQS7zarOjGqly6kZJYqbH_6K95WtdskutMWdF9apg655P8gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup2?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup2","details":{"version":6,"updatedTime":"2018-05-24T09:12:09.2749354Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","name":"testcligetgroup1","displayName":"testcligetgroup1"}}}}'} + headers: + cache-control: [no-cache] + content-length: ['540'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:12:12 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [62b05aa1-d9e8-443b-bbb9-70f6dd2d8674] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:12:12 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r6gt6yeQsJvzfacD06EKAg5h0ewBqdDrijb8aK0iAGlA70D-ZZ55IlxvukilZQpfU6_qjRNvSZjUsqi_dkJzsqJNRgHTrmR2GqPDILR5hUMMo6Wc2KFOEYTNsng_RQcIK2swT1k1o8HBMWsDhaytpD3ODepPaQOgqdgkRUhphCzQgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:12:16 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1186'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:12:26 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rBARi2svZ4OxHuxBuqBfiF2zZ1pl2YK3NZLP2Z38pqBLv9eemyEur-0o1mo3YtQouKoxS27lAMbUr4zEuqSjEwo5M28LxgNV-f5GF0JQ3fZDNiddR-5HlDDNA9iHimUpVx9LrRuTPaN8aU0LLDg6dVR1v7xXh55WNJn3qorlg8qwgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:12:27 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:12:28 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rsLUGKlmIbWRdB3GJ3KuEsWTlnd62IFsnMHGfSDuJluovE-2gWCPNC0XtNZeyPb2dSBF_VV6LTFhHzdMET0_nwr60h_ZozKT93DfMqKFdg7ckwlBxwLD2jvFLyjopZPXt_jaWbo0W24EHzSGTMFsL3ZxOGu9LMk-NQouBlD9nMTEgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: '{"name": "testcligetgroup3", "properties": {"details": {"parent": {"id": + "/providers/Microsoft.Management/managementGroups/testcligetgroup2"}}}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['144'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup3?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['180'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:12:31 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup3?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [7aab56c2-5049-4ecd-a420-51a9a89ba9b1] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1186'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:12:41 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rEyUMf9cfRl825oYNhMJ9Vy_p-SZFx_RpcbtYR3xoCsk8m7n885KfLL_gFD6QpuwnTP9beGPnauV9sJy4nAjoB2R4LiOAI1UXr50Dqq5hUkJW64euU2ORsKiUKkRjUEwGKW28jOLgw5tI0hN-L-mAfszu3DKreiR0W7pUT34QJf4gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup3?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup3","details":{"version":4,"updatedTime":"2018-05-24T09:12:37.8138944Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","name":"testcligetgroup2","displayName":"testcligetgroup2"}}}}'} + headers: + cache-control: [no-cache] + content-length: ['540'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:12:43 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [2c174702-94fe-4425-b93e-254aff344608] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:12:44 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r9UM-K-o69S2tXkm5iFKG_gJf6a7PrLGL22b7dIZ2XQ9LZrfrONJ32SL1ozkQ8K-5GoLo2gzaUF0AV2B_et4OffMQ3x70bk98N_XlaQ3NU0jnpXDpbnTT9C1iQUImyQiKrBC8j_giX9asQllk81qF7OWhkFoY7RChcGcnOjgpdCsgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group show] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:12:48 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1177'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:12:57 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7ryoSdSQG_i3ME3TjhL_vhPvKM5XHdXjL7835SL9KuiCR6SeBjrJLcJUtwwroLJzYkzRcYdLPORoH7jahWj2x9pzxhmyU_0CtdyDo8kW7MfqsysQEarHEl6rc8r2mPO7qCVUn5JsDevwL6AUV9n24oPQwQ9bCCk_dRkVBya0rW98QgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group show] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:12:59 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:12:59 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rse8VRma3RMV0xE_yuzg6I-1s4a_KEqG6HePbuQvagcPvX8k_UV6ZO53420R2iinGQIgWhCPwyBDOUkZ8725eSXtoCLL1YsnPnO8RVVpvVpjZE81Nvlt7SkSDJiHbJU_LbHWABodvs8Jxbq6N5RqTV5Er2aQ0yjf-Zdowz_1fz3AgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group show] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup2?api-version=2018-03-01-preview&$expand=children&$recurse=false + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup2","details":{"version":6,"updatedTime":"2018-05-24T09:12:09.2749354Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","name":"testcligetgroup1","displayName":"testcligetgroup1"}},"children":[{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","displayName":"testcligetgroup3"}]}}'} + headers: + cache-control: [no-cache] + content-length: ['724'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:13:02 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [b739d726-62dc-4116-a984-53afe63470cf] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:13:02 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rAFr5_P82myOoodNejIY5x6PHDd911yIC4UQc78dcPB65LgfshYO0B4TGE5XFKuLQSLbHB2okP73NyvSeVdxXv3cKeKcpcO01Aa-p2qcVxbhUSjwlBStf3lJQkCbuv5UrN7vqTlfbpZ0nI0QSeYMSsmKZkScCXdyA4xAV-qI59pUgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:13:04 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1185'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:13:15 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rEXwisuZryfcZg8BP4yN_KQwgo2r481HWKs46-H-HCWB0sm6i5tKX8YcN_iTemku64JW9EpyOM0iePtaVGLmkLVeF5r_8p9knAi97viNfKgPRljP0P4OA2-o0-SJQ6YS-IYRMGv5dF6mp1wM7q2cnTxR0bghJnewz15c1szYgzCQgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:13:15 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:13:16 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rxCy4Y-q5N5m7VBAu_CfYc7zr13Kc5W4UVlMD8QGQqA1XouL6PDrzDOYKijuUkStvopLR96KOHZxoLsHMT_mXCUJ6Pu6EVR6s7G4K9kWI_wJ-rAJBf6rzNI0c5N8dg83YPgZmGsfD3uYIvGzbc0TrDXsFQ9nW2_TtBgFyvHbI4CogAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup3?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['180'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:13:18 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup3?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [4c1bfd7a-0c98-4220-a4eb-07913291d2d0] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1178'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:13:29 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rNqf9kMtep6IeolrsxJm7ZpUmp-UVbFVS7O5yuOCUO05_YhqxVTAo51P8I2YP-gc7MlgB81dsoGktKEazOKd_pfsjOHHNdbvTtEsUtag1qlCerbEmqcVJox6VE_xlLkqxrBfotogYYY5UWWx6rwLtZfXxq9LLGVhBgmSdJE5a7RsgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup3?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","status":"Succeeded"}'} + headers: + cache-control: [no-cache] + content-length: ['179'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:13:31 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [aa742b46-3849-443f-910e-fa190e699610] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:13:31 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7ridAvFzVLOO80YACiFmRDZY6Y5igAmm9eYIJLizqRAZCSzIzOM7BcFwYMmwm6GPn48xCaA-NESCjD3wocB2mlcJj9Jd7Ngsv9S1tHSitYowIm2nXNjV0R2rjVC9GzHLzKcsNDJvh3Ems6ZDy7O6L-E22AU-c1GNnZOu8oxz7s-usgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:13:34 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1176'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:13:44 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rhccc0ycDf-jJUMUaP2G1iIvxIJEylke5K056Fxyl9d4tbdVBGi1i734b0Wk07MdSMf6OIX7t4nhMP8l_4wjyikoGUMquVuwlPaiGgj3unN6P2PiFr9HuIBu5uGYaPdp9OKI8UqAmU1YT6fg8_0NJCymPs0VFV-H_aaakuMh2qJwgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:13:45 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:13:45 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rql1DIJOcCuenR435F9zS1O3jJZl0P3wa0mb8Yuym5l7ghqx6cugAPtVmDkKPy9l6jOhZmUqJEsZmd1Kzv1Rm3TLMBlihFroWUmctEcNElQE63FbFEuf6dd0FgbZ-xu8sP3b5IZq_QZqKSBEh_ynrnmXOvcIAMZWtYPdEv9yBaUUgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup2?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['180'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:13:49 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup2?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [65d7c778-a8da-42ef-b824-364d819d8038] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1185'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:14:00 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r46TJY1IlepgRMo4ny8jbzww0rf-rI0892GlG27pDB_KSEarOHMnMPz-O6HeSx6PUr_cjTj9FONJ1ssnELUeJI5s6DFG1Hugqf0aXZ_k9xl7QLizBOmJfzRpDD9NKFgUACpjNkVw7TdQ2lkw7wpL0GK_qKvqXBzxb9hxwtL2kIhogAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup2?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"Succeeded"}'} + headers: + cache-control: [no-cache] + content-length: ['179'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:14:00 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [b0b4e733-238b-4caf-8e0e-2e08bf55e686] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:14:01 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rMIBdLEy4d3QMcRIiRihV2HXORWQmj6FtREnp2fvqc0G00qFBiTkUWzEKtfqx_1N463mWHzp4PCPQkpfLL6Zdrl7dI1hhR9WcK9oldB97JLj8ACKswjy9A2yNsONO-3FiXyFRxRNx5G1pt1Bzyu1YW8QZckuZAQCMjh1jgFFt9l4gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:14:05 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1184'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:14:15 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rSQZd-ITtMnvXHcbLdrP-uM6GsiUzitPI3hw-lY6lH5mtOdQlk5z4o9otptQGsNw23zO4tf09__1LoBTwIiTXPJiUOcd_0WpDPuz3bfAlw-vWcSGIsmqK5lzYOq985LHq6bYdzXxPXPQrfHve9PiOWdyd4Hanr1FjzxJDve_CxgggAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:14:16 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:14:17 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rPQNfZU1GA4lIdpNVKVS1VxrXXUfQ36sPUvGifTEJnEJ-R_NnxqTn1JquThBsOjqNb8IdJcXvbmC5jyEcx3NfzpL29D5bgmre2z20k_1kJ76Tnlu2x_7cwegaTooVN3Yix9S73GG4S8s1pwkSShF7E0LZ_pyTDKUMhkG8xCmMcs8gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup1?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['180'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:14:20 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup1?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [c72227df-1295-4c2a-a226-de65905d2a24] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1188'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:14:31 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rczmI-0ljzyw_Z0TFdMPhMGaJLEyaQ2jQt0dpnVJvGJD5epuoPZvA5GQlAw12gEdcOuM6J9rcosMo_OaOya1dMHEx0CDbnz3SVMchKnfEjx15QnnoDew52ELAHEZGRuF_HE68DAcMdR_lwrxAvOX3y1jVkqVdqbjrLbY1M24Y5CggAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup1?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"Succeeded"}'} + headers: + cache-control: [no-cache] + content-length: ['179'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:14:33 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [70a3c5da-36c9-4e1a-bc4e-8748cf5fc1d3] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +version: 1 diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup_with_expand_and_recurse.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup_with_expand_and_recurse.yaml new file mode 100644 index 00000000000..0e3568dc634 --- /dev/null +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup_with_expand_and_recurse.yaml @@ -0,0 +1,2235 @@ +interactions: +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:14:34 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rvNES3wbIqUL5NfeY6aNHZzcLcYHE3k8Z1v7HRBxBvHKSQ23be6vrnRgZHKmUfwxUVogL6ldbO16jplDN2CaHf4WqSITCPyHkcHLsUqj22iIpFRkejztxZpJ489laNtTOSFPSHaJ3HZxwSmmg0TYCgK6Cvcrw8lZ9ibdP68plXtkgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:14:38 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1175'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:14:49 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rBTPvANSsAe06iD2cRyQIFiw2HP0SFTEOfybL80MBRecYaT6TfwJsKzaCbW3d9JCXoPjJLujUXXtsmHR_Q5vLOJsb2ctr2tAb8rEiAhSSvHSdLi9pHlXQWbZ1lOarZlPMhVlHqkSdEDNQ5wzWpI-Au7NrpVGcn1iUmgkblwfXNTogAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:14:49 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:14:50 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rV-BirY1hZ3YCCSbrHA6JqREjytIIN9ZhEHWWxzfHWEEToluXuBI8AF5eH3boCoqWFJCAwVrBAD9GbRgAd0sFpTKh-x85ct8YGD8X9oY32XoeruG1q9VBGwzITibtN1nR06kYve2oaXWaaVfoPFoY3lZIi4S5adJVJ0DI8QSxHN8gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: '{"name": "testcligetgroup1", "properties": {"details": {"parent": {}}}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['71'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup1?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['180'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:14:52 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup1?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [4387fad0-9e4b-4ea6-8f63-edd75f1e63b3] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1190'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:15:02 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rS5u_u81lt8t5pvh3oS0ge5lkl6CnynQAKyo5ss7wFhVZi5mQ5-c1wj1kca8i7WUFGBu_G-vilZK_b8kwxKLBWNZ-mIn0Wrk2L9DvfKyKc1drthc2KLLkmp5SeNbnjd-JF14qEr_P2gJzpjV9M-KIQTtRuYaTUhywtV914m_U96QgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup1?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup1","details":{"version":7,"updatedTime":"2018-05-24T09:14:58.9600804Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + headers: + cache-control: [no-cache] + content-length: ['600'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:15:05 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [095987dc-09ea-49e2-af2e-38efbed03706] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:15:05 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rtZcEP8hDua45V_QO1XqsRUiLGO3y-5i6n5xkxJF9gorxKkLiLugA8yraU8TeDd81IkNC8br4UNkGsiS_uAEFHZsQiNxFejIxEYVvJ1gQ8B-v2rb4cDnd-lXHOxO0ngLoZ8EoknMS_r8Exx8Ckp0IVFAXBjfFHY9adGzl1UcEv8EgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:15:08 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1184'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:15:19 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rjRp3bXKhNNw-yiv4trcfLakb9PkaolXPHl0fcNx_E5329fVHz-LPrLivp6369ecjqK_GiS-gS7ebFGg_xqWFIowSUve-YetdhhEALNUIbQcJv5pVP5_tjzFiWj4Pmhx2U9UJ7CZvIaaRRqqH4Sw6KgT1c6HP2b8O6SqwdR0_A1ogAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:15:20 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:15:20 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rl1JvR6DnSdd3W9iijdu7NBh304gL43ltUnGCUYur67tf2oOxJZHBIrUfiRssgNhbsjnD62hysFLhCXcdaZ6h5iRl8A3DbokAiEY9D-3_jl3CrjOpgDpP0m4w7ZmJDDI8W-gY30ULci0fvUMjGr28GavEI3I4vekAdkiT6BnO42ggAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: '{"name": "testcligetgroup2", "properties": {"details": {"parent": {"id": + "/providers/Microsoft.Management/managementGroups/testcligetgroup1"}}}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['144'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup2?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['180'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:15:23 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup2?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [faee574e-a23d-44ba-b3ac-be1beed02ea3] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1190'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:15:33 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rn7yaWrkIVZDJ5ecwq88l_XTy_W7tsMw2mCnjqwBAtDjidP01jI0V44dCo5GB2_wGF4MnAsbERIUTJXJrISlGVpKBVwSHgeuvGCEmxaMqGdIN6vmnPLBWk3cuPeSGpDZxKIYb2YISEZbxzOGYwB_bbGPVec5KbcrMVmDdd6kh2XggAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup2?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup2","details":{"version":7,"updatedTime":"2018-05-24T09:15:28.1821724Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","name":"testcligetgroup1","displayName":"testcligetgroup1"}}}}'} + headers: + cache-control: [no-cache] + content-length: ['540'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:15:35 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [0a080503-68da-496e-a4a0-85f305f270f7] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:15:36 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rBi4sl4ta44zb7rAtGsK1q3g1rBef6oe5T7H6LyLkzHDoHIUGe64kRfffGUGJ_4cHk7IJS8FZG_leNEGeXuoplbcZOuQvnv9KmnfMaCcqgCuuYFGN4FQCguTUy40c6NGH5coYjXIdF2FUgza1n83IM6rUdvgHcADb4WOWEcsbBO0gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:15:40 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1191'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:15:50 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r02tjcgsvWfpQ9gnYBUqu6hCm0qcmk5enaeDLnnDkPmCyp2jnHxSBwcgMmN1qGFd64DsoyIWZ4oQhZsWeNiaH4b1RDr6ooQJ5TYrNRF3xDErsrHeEZ6vGaxknzSlXPcvqeY6MvU7-mQObrIH68w1TKkOOMV9f7wjYppZL_FzITv0gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:15:51 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:15:51 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rRWcOHDUVmENbacHqKreHnP8XT2zfmCOTD6LxpsUhzgZA33UleJ-WYEz8NpR2TFQRRT2lo6f7g7lZzL33RFG8NpHB8l2pD7kYdVrfD-TYPaZDlBqmRURWuY0G5zQ7czPOgj0-oSLj5bwVs2P9s7DtgI6f6qJhYydo8nGcJJ4udmggAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: '{"name": "testcligetgroup3", "properties": {"details": {"parent": {"id": + "/providers/Microsoft.Management/managementGroups/testcligetgroup2"}}}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['144'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup3?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['180'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:15:54 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup3?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [2e6cd9aa-be51-4d01-892b-f26d62d0161e] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1188'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:16:04 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r0LfV1jH_7OGntybx3al2U3aLtEovoRIt8UO-bu7FAgJISJijLKUE7f71tz24y_Zp1qv8JogI3ZwijtpPd1FRFYB3KMdi71i5KjYq5yBYiOU8CvCTBw_O-rVQfc0fpp0XySF8X3avQJEFrocMqepW2gqPhj-GGtoe4s4j9DAM3oogAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup3?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup3","details":{"version":5,"updatedTime":"2018-05-24T09:15:59.3140015Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","name":"testcligetgroup2","displayName":"testcligetgroup2"}}}}'} + headers: + cache-control: [no-cache] + content-length: ['540'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:16:06 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [eb727045-5976-47d7-9d5b-4176266a06dd] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:16:08 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rZizX1O3nf0lLAprbfnjBY7ULj_pKHuij9J1qNweGFymSs5Qr5HawmqPCgYcouUIpcTYJw-bXSUj-PyUCAoyO8OhrGDi8-4qciXpIpEvlBiZ57cUXelj8EP1oEiPt6vsrjqGBD2olSl6kLta4h7Br1Uwv0s9DQeiGJjxqo2zpCEYgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:16:11 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1179'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:16:22 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rqXUgTupUVBcCG7VFnYuWPhaE8o5zjHu9hXxYaYI9cvmqF32UemRPN8gI_JGMrr6Mujwb0NlQoskbYPIBSRdcOT99pRjcJHFZOhpN8Fi2ek9RFJWiyiPN4_XMzZ0Im3Cgbfravz9wzHkGb617ioKQm875oRn34WCZrTo9qTgiCOIgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:16:22 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:16:23 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rtUtBmXcnj2BK3RVfTU9F6hUtfUu3malphL0DPicgYoeFGRlk25EpRm_LqvrsL7rnmjlg-8C-HrQuo-DZkeyBW7o30uZqW-VGqkXjmr_1Cwe671mVvJ-Wopehg03RuxJ2Tn2kblTqBtJKLLP8wLyT-EmY8A8yfDrBJhRH87qJgg0gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: '{"name": "testcligetgroup4", "properties": {"details": {"parent": {"id": + "/providers/Microsoft.Management/managementGroups/testcligetgroup3"}}}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['144'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup4?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup4","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup4","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['180'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:16:25 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup4?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [df85b035-aa87-483b-955a-8df6cb7a09b5] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1186'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:16:36 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rEq0_432zNpHj60H_DsnQvoKrGtNROtc6-SHs2jjpqDZk4bvX4z6xCc7ReypHqCL6MEX1hsJ9zY4SHyeFShvDABVGLVk0IsuyQuf5PZ7TunOl8qm4AOxAVNg4UZ6H7vMaUNTuCMPlSiQ4B57TrqZSw6P0GrZDvgebxEe6Va6B44AgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup4?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup4","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup4","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup4","details":{"version":3,"updatedTime":"2018-05-24T09:16:31.0889575Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","name":"testcligetgroup3","displayName":"testcligetgroup3"}}}}'} + headers: + cache-control: [no-cache] + content-length: ['540'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:16:38 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [a6538cc4-2892-41f9-a349-2e28b043c6e8] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:16:38 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rRRTl0V5AfbgEjhj_jj_FU_bRwrdKNlyqJabNo3f27EX4jqLtvtnUDBmOb981k60iIVkETVcSi_SIHWY5azZSK_z_T_goHaWAMRNGGo4eVqdGktFJMhoHakQlIXbh8ELZx6OTpckVBUKwEZPYDVi-7Keb09JGzikmMeWVdkc63BUgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group show] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:16:41 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1190'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:16:51 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r2AWmAzQhK8wMQqE764MGQKutmR9QV10v225MgvFYvsB1k95V26OtfW_5o3fD4amkKRLSiKQnZicqNiu6xSWhMIkEzlzMBPVzY6tXNv54NM8tvamiCAD3PiEkAN-pkpi0379UvwE4FtobwjvpzZECpR8-Tp7-E7kLoX7GZChOdhMgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group show] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:16:52 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:16:53 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rRS9qAidORWd4X_TCe7HptZNRawd94qhANpS0fqO9-1nzxPeYfO5YijiZpOvQ-XqbpRIrO1WcMRvKVmz47rJsFkimM0ahfC9qGTJL_UmE_neikQEo_NGp8uaX_h-wYlwOf-UtabZGUR_Rf6H1P30cc4qKKdIIJ-pF7OpxGr81uPMgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group show] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup2?api-version=2018-03-01-preview&$expand=children&$recurse=true + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup2","details":{"version":7,"updatedTime":"2018-05-24T09:15:28.1821724Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","name":"testcligetgroup1","displayName":"testcligetgroup1"}},"children":[{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","displayName":"testcligetgroup3","children":[{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup4","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup4","displayName":"testcligetgroup4"}]}]}}'} + headers: + cache-control: [no-cache] + content-length: ['929'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:16:58 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [de6351df-6acd-45de-9bce-990addb58998] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:16:58 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rYVe9CLvr58G6REwi2kfRkwYzrsHRhNm1cADhb6IRbrMn0YAQ6PwmwAv5Gvhk7n-gZiZ8xKE9ivbq-UlGVQfgUrls-nUoIpw0xCUmFmxmIuPhr5PitQLd_Nf9G0OvUPMD36gLKVmU6SIztqN4pvUX62QRvJL2kc06uCjjbJMJWZ0gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:17:00 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1178'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:17:11 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r8wcPX3DSqSc7D_3FaVICVMH_x0nks_acoAMUT3P_21oxIrxxA_U4sKeejeZJuKbNIsxRlAeSw1FBFZhvGGqKuM7vYT3fa6EYGh6VexYubCytZnW9f22rc6YWGI2JbzbO8HscTVLtHbj9x6a9LYiOT59FNxZ9WuaKDd8nU7m6H5AgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:17:12 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:17:13 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rY6mxyQJEYhfeBEwlMncj9jwy_CtPdYIfC009dUX2QnLfB8wS2x9PkewGIo48_0kx84iq0Uq-1u7HAeWZg7AjDzQmkRdIJy2EIqZTWutTwzmYdslybUL7RLna3ogVPTvd5Iw3YqipxJv31BG9nzbbppyBTjkLdbG4Ou7JbhYYrCEgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup4?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup4","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup4","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['180'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:17:17 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup4?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [55d522dd-e826-4cc7-aa6d-4ce6ed352fa1] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1185'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:17:27 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r-G7lXw__-Tgux7oTBO12GeYMFBYEMldGpM6aWyfGpmBWvzOzt3QD2KLobFTsl5jV1_HLcHbUvoegeEDRBjnsRGg58u6K6QdLJSsIv6PgHgg1KiwhVUXuUad6ZIjGczluyuMgX9s1Erbjib6VLTYfP7mPVSeqZKeyPopWnCLHLSkgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup4?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup4","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup4","status":"Succeeded"}'} + headers: + cache-control: [no-cache] + content-length: ['179'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:17:29 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [14fe850a-0271-4e2c-8c29-ec1211ed9d0d] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:17:30 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r_L3izfv1XJGMfYcXO82LYj0hCpcBIvvNHD_9xUJdpNsOqxyiK5K5DQUcvixY9VSinu66mSlCPsVODEgT620BSyKOFt9xaSyeH2gcdvsjsYJZ6B9BC-M9mPZqY4lWW9URgNXgwgZ0jeiD2ri8WKC7qaI3eD7C5B1YHvCQVWdHvy4gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:17:33 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1183'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:17:43 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rdwWgSdIvcwtShunC1g5z5kefoTF0GVAJtQhaXzCpEfVChfMqGcl8-dMU0CMBgWKaz1umjkK-PSVeM-Z4NVTPvkbSf9L1IdL3QYuV3MMOzd49MQlLBNUU3MsFvdt7WA5N3WbDrGBJ45vvFejG5wf9grYGSiuNZwbCtIHzh8ye6ZMgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:17:45 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:17:45 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rAB9V8b-RRb9UzXHc4OS3pkvTQXDiWPvUMEBD2tplbTUX3X12fPpTTbrnuMuU4-L2NUKWhZ-E3-ITRCmVXAGe55rcZ9nzHs8e4oB_TSLB6p9RXLiYKVqUn3zZdO4_Xank2NxW4jmIaju3_fTypOIUC8KpHlSh2s0u4phiK3Xn_FUgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup3?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['180'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:17:48 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup3?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [754642cd-ff1e-49d6-ad06-ad3868927de6] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1184'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:17:59 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rp3D78BJmqfW4JlsTm1DwDjEXhH1dB2Zgn78EDBfIpOdPMRFEqwjtC_elvb7Gg-Nfp3gVY07hBsbFzT8YZYNtbBxe1EFJwcyx4pChGymhaGHdyc2S5J-25wDUKmPnuvTalqgl_ViQywmfxHi0L8-JNFK7o1WFDEGEw5QILeMHGbYgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup3?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","status":"Succeeded"}'} + headers: + cache-control: [no-cache] + content-length: ['179'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:18:00 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [df268818-a020-43c1-87d7-80a08b1a9db9] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:18:00 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rEcIB62-h-REjbrGx5MhoxjjdTj1OwZfD8w4xl3BtD-NoYxwm72QWkTFUJhN6M9wsqYuwT1S6u4lFy82Obxo66Ilvo4GLwBCNwwEu7rr0B6QEPgcZ1ytPeEfL1QfgfA7iZaqqN6Zu-kfODNLwWOil1SSfsVG9AJ7R0QF190tAM-ogAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:18:03 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1177'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:18:14 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rpiYvnDtWYa5kgRosnDZ9ytw1C1jResezngvHmPQdszNPxG-QKyd93y-FAkN-Bx__CstIqXEkmP4oHQWaSLsArXt_HimOAz43xCphuAbkVpHuUpRcFE6z6UJzjcRSy8KZALkt9kS-qn87F0Qo_KAcbV5tcHJJtqVOZaFGGSBTKwcgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:18:15 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:18:15 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rY7xECnwDZXK978PCdcN67T5p5E4tkiamMZVuyEW9veiYaoxPlrq914FdcU3wngxaYtjUy6pKQBzPKppHFuN1c_93x2XtxUY1YtlHH_r-VuZKKxsLP4UBwdyVcVVVNuRQhYMUiDWCbgbXtpITM4NFyo4NJgd70wfPqLMEDSOdGhcgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup2?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['180'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:18:19 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup2?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [8db75928-0a3d-49da-aa00-cc7162c17254] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1181'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:18:29 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rOaR_CU-ZhmRbLlazLLMb-QYqL55NVvwRzNn79A5-CoRMKAKegH4lww-qgjrTop3tRz6-E5G_90utwGqg2gIy_Xs3xPEFZyAitvhZ4fg11tqAcOPH4I9S6nUQciXyqTdckAjKV0p6Ck2XwND49GZEujAnjXaaV1StxoTZ3XxY0hEgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup2?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"Succeeded"}'} + headers: + cache-control: [no-cache] + content-length: ['179'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:18:31 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [fbdb3871-e528-45d4-9330-f36f62d8a3e8] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:18:32 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rEA_mKkOb3c2t4qe61nZAlYpqKA5P3U7EyVhJOTvBANbqpLUHTWyVCn75KyV_yXDaT1k11JsQ77hxdyAheo2fmc-7o6NSQvqJVphYQMOWF1qWeBubqa1A2568fofIO8MkDgRXJu1IsYwNnky09YGA5k3j2UVmRYRjiBL_bZV_Q68gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:18:35 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1177'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:18:46 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rCJpNpyqBj7lw2hemEgEhtjCF7PaUcHPbB-dgsLFasrUMh2oT_kyyFGBUWhFNiln3WcusLSkqxuSWyjUekLUIGXZc3pjeJjGx4FZlrQnoC2Qt84TxaSdZMM66y_sEXQuQ_9yWLe8YxClkQKL8r-jtbZWLWeSLoX3TeSkX3HaheD8gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:18:47 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:18:47 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rtjuRtu2KSC67HaHCoXqphsDIfEVEgLWat-7wvhcKICU3XcADLGGIS1q31XI6JepbTDyM68tfOQLeZWC32xvq_SVZjriNrvUbKObwNAgnTEODEPS58qnT1NxSYxheS2cle_-ZJFgXATYQKxmFReOrksFnddcZvACjAkHSqQlgdY4gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup1?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['180'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:18:50 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup1?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [5b345275-0eb1-452e-8de4-14c5e5085259] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1187'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:19:00 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rMB9SE-Yc_Gik0qagmAFb-C1NtDNt7ZnHJnRPzEauRjLEOs0bp9z0X8gZQfVP411K_X_K75PlHxdAgaIoO5h2aCHcSGnHIeAirHn9zg3qJGVo7_9eWgPHdYxwru3keGOZFeJLuy6zPuMWbwmpi6NMyiUpQ47svdutgXM9uHEVN_cgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup1?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"Succeeded"}'} + headers: + cache-control: [no-cache] + content-length: ['179'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:19:01 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [18b47b3d-a1a0-4322-8909-d48a75615c05] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +version: 1 diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_displayname.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_displayname.yaml new file mode 100644 index 00000000000..390b0a42aa0 --- /dev/null +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_displayname.yaml @@ -0,0 +1,738 @@ +interactions: +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:51:24 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rvet7EjErHEd2I4j5c3YKe1AKK1OtyY6IGEgEfaoZT0D-dIhE7H2togbfx6wAzr6nR7MpO6vsJGWv774fdAuoqSNI5nQx2kzh00FqEixfPqjWr_mLFsMHt9hWp39DnLayatqpNjHq_0GVg2HDpnsx6v_K3vSudNsnw2Ml3YFOnyUgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=refresh_token&client_id=04b07795-8ddb-461a-bbee-02f9e1bf7b46&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&refresh_token=AQABAAAAAABCw9Q9oa6nQrnwvHeP1w5Oz9LHpIBkug879jkq7T31G02PdnRMA2-BAuOD0bz6iniSlbR8WC4x7UZxO1BPmemUX8YUeNDolz2Vdxu1BHk9HlbhaKxn3UyhiSEyllhJ6_9AlVXNPpK9aLYZMHXMrwGXz4j5UKkjnxIg_tkXbIULM0QpSiFpQy5WFgybK7n7QoiEAKgz4nfZye1FMY_DW2WCmo209VvEtN1A6-vxGg-c9bhWUgVHhKGIu6qAt0xs-pKhZu4j828WRxJ-TC-CTFIwpcaxDmphR4L3kDUZj7uPcy2EZM0ufV_XbpUKz2R1arZd-oPr-6_-O6_Z6NKL_94H8Sk9SvbIVxqZltXZ9Eh2JsiefK02W78CDH1_UxX-sOCbbYTS51lyql8xeoTnO0_7JLtDyO_9l5TxrdPfm-S1TQRqUq03LG5a5EQcJpg2e1krO2KbZk-0GWcLA9Xb28ncZgCbGiSHSjHsXgFw10HL4VIEZH6GFl6Es2wT5CyML1SbkcW-uhXyx-8pl88EACWY-kVnDomQm4jMrbF3aDVZTVJ34nfx028hCRPvdmhwyQINYbBOfpcyICFBVUVWDEh24jjT9nTkb6m-qiWMOJwp4EzLfom0Yw0-pufLsL4MWGE64vjbYF8rIDXL7oYfC_0ifb9Rvi6EBSgIAy4hAKq7fndRk8PewImv8BMuRTa0POaySLbYnfugr_8wMRIiBwIqg_dWNAgca_BdD50fernbEiAA + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['900'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: POST + uri: https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/oauth2/token + response: + body: {string: '{"token_type":"Bearer","scope":"user_impersonation","expires_in":"3599","ext_expires_in":"262800","expires_on":"1527159085","not_before":"1527155185","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImtHYzU0TDMxdUFaYTFveVlvYVJTR0NpWUt0ZyIsImtpZCI6ImtHYzU0TDMxdUFaYTFveVlvYVJTR0NpWUt0ZyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvYjFhZjQ3ZjEtMTM4Yy00ZWQyLThiYmEtMTE5MDQxYjk1NDUwLyIsImlhdCI6MTUyNzE1NTE4NSwibmJmIjoxNTI3MTU1MTg1LCJleHAiOjE1MjcxNTkwODUsImFjciI6IjEiLCJhaW8iOiJBU1FBMi84S0FBQUE4Y0EwbVdIZWNueS84dVA0YXBnNGFoZmpoM0xIdWpkZWZzK1U3bTdGV1c4PSIsImFsdHNlY2lkIjoiMTpsaXZlLmNvbTowMDAzQkZGRDBBQjAxNEY0IiwiYW1yIjpbInB3ZCJdLCJhcHBpZCI6IjA0YjA3Nzk1LThkZGItNDYxYS1iYmVlLTAyZjllMWJmN2I0NiIsImFwcGlkYWNyIjoiMCIsImVfZXhwIjoyNjI4MDAsImVtYWlsIjoiYmlsbHRlc3QxNTcyODFAbGl2ZS5jb20iLCJmYW1pbHlfbmFtZSI6IjdmN2JkZDZjLTYyMzktNDQ2OS04MDRiLTNlNTcxY2YxMDM1YyIsImdpdmVuX25hbWUiOiI3NTE3ZjNlMC0zZWNlLTQ2ZDYtOTcwMC0wZTE1OTM3YzFlZmQiLCJncm91cHMiOlsiMWI0NDRkMzUtMzdlNy00YWFkLThiZjItMDM0ZGMxZDliY2Y3Il0sImlkcCI6ImxpdmUuY29tIiwiaXBhZGRyIjoiMTY3LjIyMC4wLjE2NSIsIm5hbWUiOiI3NTE3ZjNlMC0zZWNlLTQ2ZDYtOTcwMC0wZTE1OTM3YzFlZmQgN2Y3YmRkNmMtNjIzOS00NDY5LTgwNGItM2U1NzFjZjEwMzVjIiwib2lkIjoiODIzOTY5ZTItZjhjMS00YWRkLTg1MjYtNjI1NDRlMmY5NmIyIiwicHVpZCI6IjEwMDMwMDAwQTYxNDY1NTkiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiI2ZG0zcWk3SUl0aWhhVnJRZURFbUh5WVBuUmpuVjhSNVdvajAxRTE3djY0IiwidGlkIjoiYjFhZjQ3ZjEtMTM4Yy00ZWQyLThiYmEtMTE5MDQxYjk1NDUwIiwidW5pcXVlX25hbWUiOiJsaXZlLmNvbSNiaWxsdGVzdDE1NzI4MUBsaXZlLmNvbSIsInV0aSI6IlF1bmxHV0N6UTBlNUNzZWRjbkVJQUEiLCJ2ZXIiOiIxLjAiLCJ3aWRzIjpbIjYyZTkwMzk0LTY5ZjUtNDIzNy05MTkwLTAxMjE3NzE0NWUxMCJdfQ.STHWOF5gWst_bQ8BtEN-RSFDSY_iN1ejLTCiFh0fxnS89RcHfU6B5HIJA9E387VtAE3uZVcdkufoDLyV0kXKEUNHuwFYd3HkQBhyEjbmPOFC4D42sXEd4uQ2KUmmVrVm-lpoKl6qF4kVnI97-1WaaZbEGMAB5eQcLp2nfXZ2SEoohEjIII-V0cCzGDacjp3iAjyD4H0yTTkRB-EzMhx6HZFj2Q6-VwFypQD1--5EekoJCTLqPKGkKJeTMMBN7TXf30LYeNgCd9ADcvQvfIDJkfoo8CFVDDkOF-UAMWE_1-rHwYlmx0Nm-KvFvKZJ4BRRd69BIlqldpjPVzyTBtYnOA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['2064'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:51:24 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,3706632.366,'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:51:27 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1185'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:51:39 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7roXBO3wv_brDni21fe6wtj-_wUwcGcES6qb-6NsQENiWnjhiA-37i1ETwmX1wcZzkXqgQW7Z422tsunc_Kj0d8wE5h9Q2IEknRFCGR8pGj6UIewuNV62-QQItaaehsxOAu5meg91dx8XPWONYT78H4HeeckJV09-tny_LL_5I-yQgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:51:39 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:51:39 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7reqFIJrDhQmallVNNnpGSqatk3pEW4XK1jbtJiEYGw9QQtUTeczPVMG5XENP1cfuawF95VL64ROd89ko541ZYe1-rVTeNoPl6xU-emOkv0m8G_7kDZtTkby6CUB7YnVCpWsKOlKmO6YuLClWn4i83PaaUJYRFhCem8cEKRFH76VggAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: '{"name": "testcligroup", "properties": {"details": {"parent": {}}}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['67'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['172'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:51:43 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [d0b6e1a0-c6fc-4800-907c-f20061e3e86f] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1179'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:51:53 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r0uMU9U1RUlUP6m_CrrpJ0s37zg2fGVsco2q8E2iTM0t0pHJlRFa6yguR3lQJuPjjuCv1q4SugqEh-7tRI8HiO6kfnU1YVMsT7sr5xh5bTIwcmoFIGAcFi7u5OsmCd-Rg95HRmGwle-nwQKnWUZfWKcASIAPPIJb9jJkBwaE8EuIgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroup","details":{"version":20,"updatedTime":"2018-05-24T09:51:49.3894752Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + headers: + cache-control: [no-cache] + content-length: ['589'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:51:55 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [691cca86-57ff-4c34-b4e4-44bcff306818] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:51:56 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rq8Sz_mN7UVCczFxZOc_aZWbRzFgMblmPvTm40EisBr6Cy_3WCNa-45aO_KqHwH5FnpCQq3jJ_eG0QEmG6zjzp3rwaM-A4UVTzci2t9Hf3gcOnBAFioxsjOmMdRV604wJCPJllWnuoN5EiFzvvEAMmDFnqJyIQ8TRwGev8L-wPxcgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group update] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:51:59 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1179'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:52:09 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rlJTUJVav4gZxKb2gxV1_UlJ285wKh_F-gnasXY-_cGSl4aOPL1z6Cw66uMNcZJEpoA70XOJmjRO8EHaNS_nAsOW5Uogz4tknqDFt2-xg9qBd0BLHBdGKjt1TtgZvybFnHlc4KuhcVyJ9en2KsN2UdNL-UuRi9R16khYbomvf8cMgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group update] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:52:10 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:52:10 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rQkp_I4sjoTlTUqNY8x98pYVufOwLYKm4T8ZWuELTcvgoKK55V17_meCHsCGb_sEr3OPAEhktcFewuG_ZPR7-nv-__JqahlDhpEXc1aJYFYQPt6JePGxGvfbwGSDHjdJ1G8txNTZkGvMHpIiSkn4hZtNVBeCjXN7YIdH0PP91rEkgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: '{"displayName": "testcligroupDisplayName"}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group update] + Connection: [keep-alive] + Content-Length: ['42'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: PATCH + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroupDisplayName","details":{"version":21,"updatedTime":"2018-05-24T09:52:13.4890024Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + headers: + cache-control: [no-cache] + content-length: ['579'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:52:13 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [8c928653-c4d7-48d9-9d3c-d66b623cebd4] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1186'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:52:13 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7ryNaeVjr8jU6rqQS-BDYG0LgE6ikvAQden8XIgyECc-7yfwA17jQIUs_fXBgD6DVI5JdQvbwzK4inrI_KxHolLRfvOPEn8U7G_lRoMJ2nX9YdkvehUZQNlMOMX4P8staBpQ0BeamBpkFiHTH3YsXXVdy0I7hcz69MdiYfxj9PhWsgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:52:17 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1179'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:52:27 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rHnwCXRE3OJq7pVPxnhsPlUeym9mCY-6CaQb6j3HH0vvMPVpp90W8Lcgdh1NqhRpwZk_sUP4DK2uh3PaIDRG9xRmUBdef-ZELLe5zjitod20Qj2u9v5Um0fjlECoYyKxcF8JRYcRcJ9gU9gpiTUByFL7gcb4VnKaBPW5JbQu4a8ggAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:52:28 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:52:28 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rQP9t2JpiIxqV_9D78KN7NI6IxfV7GnvzGovzGzbPr2n2i1_qzdVf4Tblryu8hOujEGMuOZ9zKFDaSNjjd1JNSSrdy3yQl0Pjn6p0N5j_E_mlY662o7jTzH8jAfUFfBtmQNVfnRRMAjP95S6J2SF5zePr1GqXPXQHlPqvY7OTDoIgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['172'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:52:32 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [bf43e3e7-4b48-4e47-8278-2c766c95baff] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1185'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:52:42 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rf1ydORKNHER8yp70DksMKWXQFI9CXQerr7IR6T9ISmwFs6biMYk_rB5nSBSLH4kwXHBaR-8anfEwqjKY_gmAVNZBS_yw7OBcIbDhr210ghD2n5Z99c6PHXHnXHBkhUmlrp_6_MWq9Vv-ZCqLYjLL_ysT4xjMyFOmwOhRfp5SgXQgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded"}'} + headers: + cache-control: [no-cache] + content-length: ['171'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:52:43 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [28a59ebe-af07-40c9-bffb-69ff4a1a43bf] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +version: 1 diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_displayname_and_parentid.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_displayname_and_parentid.yaml new file mode 100644 index 00000000000..d4e6af2bf87 --- /dev/null +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_displayname_and_parentid.yaml @@ -0,0 +1,1214 @@ +interactions: +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:38:19 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7recKVJa3rg0xObYpBqf9wooGDIaz2TrjEriW5E6HrM_a0DM3oW81fzNE5d7RwI3dgEe1oxf2Z1B66rC8HjiyG64schHDfpSfmU7LT03aALB_kviHAXO6jaEVRLRM5cmyVzz_5KDFfGXHiPmzmcIPeTACxSqf8JQjFDTLHjQZSGcEgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:38:23 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1181'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:38:33 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rvn6oTf9PGmSOLezAib6YxIJQZAEG5d-o_Ky1yoN6IfMAId_4kAkTVBdVed53rT4KpJP5XsUKcwn06Qv1OiuOhJfUcdbWNSKlvarUD-KlzZYiB-BqC-C1gzvpaMtlj1pOHLzcrvk0m4_mW2B6YPPj29ASIdpucEuPXaxZkUuh_nMgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:38:33 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:38:34 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rM2WLb4R6JT6wb57jJ-bhoxUsP-6s1yBRfLTFEU5nUdAlBcoO1Azqr7PDfiM3oOn-a9VALly7wGg5TnCcwFV6HzKO6J7EUFqY3ECJ-2AAdpVFfluI81zNE7ln_2bm_vkkijk4Bk5oPOm5k9AGL5AAQHDqoQMnn6XO2TvJKsgkfKYgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: '{"name": "testcligroup", "properties": {"details": {"parent": {}}}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['67'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['172'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:38:38 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [fe662542-bfde-4a95-9188-ce43f0629a54] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1187'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:38:48 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rjyPAqByt8mtr5StiK-MDJUdjjzVntrDOYnVIJ1tQFNTyL3_VM6R4UrVZJa06vsvHY0TcKgU6VswTn0-qiJMrstvHmrgndYWknpLbItvik9jrnUIDN8eL3TefK0SPeWRvw0_DBkAM5GYAcwAP9lcXzS4P2HwXbSO3aym3CGGJ80kgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroup","details":{"version":19,"updatedTime":"2018-05-24T09:38:48.4019797Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + headers: + cache-control: [no-cache] + content-length: ['589'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:38:51 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [e13b9604-f9a7-49fc-ac67-08c6d5b1724c] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:38:52 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rnZIQ5sIYIkPG7b5yUsePayyN7WS422ShRYChXYOkK7Ryx9g2O6bhT032OhppRltEgV4CHOioMlcCXExrACYrQe8otUOkOSwK4Tom8j-OU8-v_oGkOAMFJejm9aejB2mN9nkEAfTkA3etCt1vAW4cR16g45cYeKQm4TJqcWH1Z9EgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:38:55 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1187'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:39:06 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rFUEdDzcNZuZsmmIZPn-34ijsuVatU3TYuOUdDo4imvOxVKBofmAK88FlPO5RALM7jnPyJ-WNhIDFq1_X3IsFOnZyj76RsiNRPNRPpYjwziUiiqMRcw94dLhD7UJutVT6oCEpbNiXy0fBPpBnqMOjQmUANDo1izc6B3RNRHKkWGUgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:39:06 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:39:07 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rbhrIOTglknIkoGyyrP8irJF54OjNOfvS-1qUlFAaP8Nhui0yy9HdojVw58xy_U1f1zwmHmmeG64oHEQX367wdUImPLTHQpjzVpFt0Ug1bufxlDPmPX7SOM4LMm2uPaxoLTUDe_iCKwczV0BTiEiXdx9uYwnHBkrcuDK9S-YDq50gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: '{"name": "testcligroupchild", "properties": {"details": {"parent": {}}}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['72'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['182'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:39:10 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [16dd1231-434c-4991-9eab-46e99d745cfd] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1182'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:39:20 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r8ANBXvU0PeCpAnYXlHLLdDFLE7PkcWLKy2Y5KhFrCyQkOa9GjQ5-xUMI34VbjsuT3z81yZxltb1ddEiEcDxkhyqkfSKe_vw88VkwPPyAnk2EQ-18CbxTDGO7nhV07rCkQ0--UByEcqiXy2CvrCN2DYe2Q0ElrpJ1YPfhZwmplE4gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroupchild","details":{"version":7,"updatedTime":"2018-05-24T09:39:16.1053713Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + headers: + cache-control: [no-cache] + content-length: ['603'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:39:23 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [f1004546-34e9-4cda-b6cf-204acd214be0] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:39:23 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rZvV4rw8FCfduFEEQByPU2AupDXrKm-8Tnfd15Og7jkIuPQjlucbW6_FE5YmdnE28P1spRmcUIFOaP4u8Bm9JbtwK6kUXJ_KpoC45KvSBy7wWckrkQjDQWZBxraDNMw1P0Hu56gcYTAOk3gwVn6uIjMOHO3WkiFeVY6M_XshaZWggAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group update] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:39:26 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1186'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:39:36 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rGIj9c3Esr94m6Ca_qxrePO-0h9RvANAlsK8xcGjQW_hTzb3P7-tsRelpklxfUyL3QyrSwU4ZjDMWa0EelUTFlrN1IWBMgYF1w2ArYI2iSMA_JXcWWr88MZA8jnnqwY2szYnDeeqJYjsYaT0WRD-7WVBQBzjvao4XhVVlBEm1FnAgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group update] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:39:36 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:39:37 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r3tmV2_LmjyChvG8_aJbpyvA9J_a-9RHGSj45e2nw4v1vklx9sZ89gjjYg03Q5UKVDl1P0JHKsZXg0laRIrG2JFGDdeA4kSYFfnlRvpSg365XNvFW6ZsKQc9F86OlTZ6AxSI-V_imM9G_9TRjUVYKln-_FiI_DjIiWhpHCf5Ri3AgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: '{"displayName": "testcligroupchild", "parentId": "/providers/Microsoft.Management/managementGroups/testcligroup"}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group update] + Connection: [keep-alive] + Content-Length: ['113'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: PATCH + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroupchild","details":{"version":8,"updatedTime":"2018-05-24T09:39:40.7224245Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","name":"testcligroup","displayName":"testcligroup"}}}}'} + headers: + cache-control: [no-cache] + content-length: ['510'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:39:41 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [726b5515-4a92-48e1-8569-15a7b05cb470] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1181'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:39:42 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rLHGphkQRuv3e1ndl9EXisE_-J1eT2g20rv4Ryox0eDS_r0rP-L0BiRlLfrFFVU2ZIdVJ_JYP5zCzgSqc0Sk18aIrTYVnaBFrlAszzkk_zseTdHqFfxv4xWd4VcFPhBUmPyIke0TY_cBwgPEpeksVDskb__6jOpG6xOKzguY1TOggAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:39:46 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1180'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:39:55 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r5JJM9XjUSf-DcEjbxkMvd_jmpTA7kHXMzdgs2MxPSqxQLcQ8RY6kppVWUju39OsnKfnPq40J50K_TEAFyA4iPPMd49v_vefuEYOZG6T8k0QAapNjY1jn8NjngHLypv0WzxeOqf1WrqlXK99Yk5Od_luaIp03LUX4-dFwlgPCD8IgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:39:57 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:39:57 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rtLKQ6m6uuPfz40NgMmTMpvSYxp5P0H83u-nQm7YPMYNaMwpgbIjS3STgfSlu73mRlspKmQLjrNvQy6t2D-AYoo-ANRL_M-1I9fODf75LpQZ57mTHdq5k_sUsi-6pnNxfpWXQn7cjYf6qZJ9HHdBMCX-uLX7B6PJqf8YpEDKoBiggAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['182'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:40:01 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [27dc2737-34ed-4539-bdba-1fa05c61b9a8] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1180'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:40:11 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rsRpyNq_Hp_O6Of6Cb78swgY-YM8sPy-UbS04uTeV4kspKe8K23_s6puFkSoQvVR6knR1q3uLuTbL_rhMwJUkkAp8NfdVbLsldrUgdWt9Sozr3jgdF-y37zRSnRzu2My2rJh316TTCldHibxsfRO9NKqyiws0FpL-HogblwJrM-QgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroupchild?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"Succeeded"}'} + headers: + cache-control: [no-cache] + content-length: ['181'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:40:12 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [312af45a-5e7a-4260-8470-c10b3c0a0405] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:40:13 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r6uqiP_ylzyX5_yBdZADT6NTMnzG4dY16JE7XL1cI-q9_kiLwCBzue355K9v3dyvj8qpoMjUp4djACUyD04aHPq13jNQcgGKd0DGYZWV64gn3pM5mpgNmzhrkvMyWVlHYtPvTuiR4Yh9LvLt3tO649S6056eLaxYQziUOF_PwyFIgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:40:15 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1177'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:40:26 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rCYemXvc9nbVuiYWuldW05BUhEcf6_xPfJmvtjaVAaijaTC3hZGF8mO3j6iNdO_eQtd5Hwx0YzKay9StbWyiPfkdbjN8nwvtlPQYKK2wgIdi2NtQHylpwoK7F8hW-CsvdVJ_W7OZo_flPWoFmXe0YMbLh6t7SHHzRWPm6NEU6gaIgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:40:26 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:40:27 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rxj1wOLNEO87ocWejz1pdMiDRXP1re4zUpXULlt2v09Gzarna5utG6FJX786dFxXHoZDdVbzVbMQxC0codlzdJFI4J52SlFCIYm-NWwPZENj1p6hqc9uSOAROYg9eKyvhKGVLJ0b1i63Mgjjty6X12wtKJaQOrQVSKlkej4f5aYogAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['172'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:40:30 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [7095f2fe-a69d-4662-b611-0f9f305e884d] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1189'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:40:41 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rIGsb0xS1jRjAH6Uk2HghabxIqsus1J_YMZj_abn9KPZ36utdWHYS446bOXyUazrBXYwkzWm-Zztm0zX3aKCo8iz1bmH4skLm3MD4YTosizFtuiYCnVSGn3myczVLZ4N_OAHXPVJc7Yn0w8FbsSvaNIZ0Z0WnOZs2R1YsQcMQwdggAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded"}'} + headers: + cache-control: [no-cache] + content-length: ['171'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:40:43 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [f13dc1e4-6701-4cc2-a544-c974436d3b55] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +version: 1 diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_parentid.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_parentid.yaml new file mode 100644 index 00000000000..8edab673138 --- /dev/null +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_parentid.yaml @@ -0,0 +1,1214 @@ +interactions: +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:54:35 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r84z7Qi1BgY2Pd-AVifH9Hkztg7QoMKRjw6o04fLh3iWLs1joD2txH-7O1yhJB8JrDfeKQEwlXuXKoFrjEbXRxzqzj7GNtUXyneqTFtniZLEiGt2_-k7MZXabmbtP2RJdHw6jHu7YjPyDVICDNiPKY5AGrtJhvKviI69dlp7zTc8gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:54:38 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1184'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:54:50 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rHX5U8eJLrfyorguW8-tD2p36ZdvCoB3-3IaogXQ1gsf7o1xeIFWtQhVJmPkJ7WxewIsxDzUcRvYBt476QxJXA6e1zzFkWPG6CWicKehn93g49FPlsRQBvDyecQ9XNC-_pbn2scOzNc4mAVaISXyXeHN7yqVI6WNoBDK68iYMfAggAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:54:51 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:54:50 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rSOKYCt4iyp8qFA03KXQ1nYKV-JLEU0Uh6y2CLHDqZnNCLHUD6vtbhmJWxycuSzrqQHtrxPlPK1C4m_qKGL0_0bBOuEqTL5lOM1kosWl32jDbS8U8rtKT_DhnxH1YkEXksCzUzO5s68cclETlg9c4c05QRfg62togogYPKFuH4FAgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: '{"name": "testcligroup", "properties": {"details": {"parent": {}}}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['67'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['172'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:54:53 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [9e55308d-91e4-45c6-93da-f870efbb4924] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1178'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:55:04 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rVuPt4d_QIE6Na_4yPPREIgObwJQK5VHzj0YMOmn_HWlgNoA_ewfXcAEFxuTf-XWvUNqtKyZe1pCd4kLc6D2w65xNrfdKDzBzqaP_SwPM1m8riIVl4AiGQCJClHMaL47VTBAdLyJn5OhqLSCp0Ft3QvqsKC0Pd6WeebL1f762ggUgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroup","details":{"version":22,"updatedTime":"2018-05-24T09:55:00.6697414Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + headers: + cache-control: [no-cache] + content-length: ['589'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:55:06 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [14861cbc-ed25-44f3-96fb-122b7fb17c3a] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:55:07 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rPqyJA9_NUKZ3JZrqiJyFRU_SduXrXHvFvtzVBlZhi7JM1oY7S_1yqHHhr5VaZF76KFG1d0m9tQhkFgsv_fyz4tIDhXc8ptBm5t7gZjJsnsdYJSvFkVBABdVqrmwr96paopAqPHwcB4rM26B6gUXNLOrKbF3sbYVuqJkJKS9RAC8gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:55:10 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1182'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:55:21 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r1ceWon-zhPHUmFQ0sPXUBkDdyK7b3IJefumz_Pn_HxSNS_dzgSxw4n_vmcJK101TlOdxLRGKNlnLS6diJujkyivp79xDTSae_S0XrMIGIDFW4TquGA7hMcvGp0Q5phb1fQjVEQfAMeLemOAmwWs4sf-lsEEKfQtP200h5R3nbhIgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:55:21 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:55:22 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rCLyIlz6P1LyR53JWXOGX1GCK-iUT_BIAS6MZzVR7nTWWtC3MVz0aLKKEn61IYbgaWxaZVwLRKlGZIOaPb1hmjV-u6_1_nU7PiV-W3tRiBbA7Rb_5D0WTYxts6TymaR-yynJI4Mul7dKFLFc0KKKN226O92fJhkI1ax1SKopcC0cgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: '{"name": "testcligroupchild", "properties": {"details": {"parent": {}}}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group create] + Connection: [keep-alive] + Content-Length: ['72'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['182'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:55:25 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [7187eb29-d717-48c3-baaa-9c3706293a8e] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1186'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:55:35 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rDCA6JZhN5TkFn1e7l4bv5DoDkw6Oz_q_qO32Oeqc6RAE-7ObmJwEFqQDxL2VJhCL8gdwrdp6fMgo0u1TCYdrp2ygywMf9FIbCRCC6iIIsfmZzdYs1jrI5vfMUyYMgqXF2OxS48LD8CTx34oypsekZzipmj4oRmkBFgb4_twJXwEgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroupchild","details":{"version":9,"updatedTime":"2018-05-24T09:55:31.1163032Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + headers: + cache-control: [no-cache] + content-length: ['603'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:55:37 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [22438862-4211-49f7-b76d-9908f94089c8] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:55:38 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rTXwSZzzNBfPYDwlyQ8x4D3HLmCb9InobAw2js0qzpHx0aO0HU2FhMSY63rDDY03ziJ2AXrj2_iQEEDkMnCEtO3MGwmAHiHijdhhq0kpEDnLoDxG_lIJBZ6VRyB0wukmOXnoybvwtvkGmBD7cSP1WMv4RWSBVe0qhBAwH_slVHHEgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group update] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:55:42 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1180'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:55:52 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rpEJujRBXsYmtWVkoQtOCEugs8zPdJTezAbyuis3kfJl_ORzInHnsD-NMCP_LnJeazWn33ODy6eB0aUIvvhNCW9yiJmJwoDqd3CU95o6zzTPKh7CiK0QonWSe3N6RfdmAfnbOuFXiIOz2UeSj_PM2PKjE1RKxyfhA1GQxSzSRcGMgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group update] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:55:53 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:55:53 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7ro3Hlepsu44QVRW-mzMugozfdbDtUWd3A6qI-TcsIe9VdQ3fQFuLUrq2fAGTgTVB0bR0w59PgP7sW4lIC21nMwT_L2iVYPT0imQO8NOJre5U5ntmXf83tqOjdyCwgAgdsfit8UcuAStB25vvB2JbUVdbKTw78S2ies-e20Bl0q8wgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: '{"parentId": "/providers/Microsoft.Management/managementGroups/testcligroup"}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group update] + Connection: [keep-alive] + Content-Length: ['77'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: PATCH + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroupchild","details":{"version":10,"updatedTime":"2018-05-24T09:55:56.2192726Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","name":"testcligroup","displayName":"testcligroup"}}}}'} + headers: + cache-control: [no-cache] + content-length: ['511'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:55:57 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [986b3bf2-56c5-40ca-8bd2-6392d9667f68] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1179'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:55:58 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r472muVs6RNgNImN1NO7Qk-KhPFf-5wi1OktUZrOEx7zdijLeVcaj0psy5OQPgaDquV5E9TuqyTtugsiNnOwwmzL6-LCVBUSADfZVu25E2atE_waeX7QcBrV4dr56FSeaS8CmRZmqxj16ctf4msMckOyrUBKTql3NYCiGYx702icgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:55:59 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1179'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:56:11 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rSC61uZEYcu0Lf2v71z1EY029YfNvtz2RUtAso-VO_-WUjMW1fB5_xY9V6-f-xbxEMmEEaWgzkhQD1_Q6EsDWpvYyGk_tEmfYyyp74T4AWXLW37AZVPFEspwTywFm41gwY5ql-hrpIFyOdY1k5O-CkTA6LEqPJOVfhFKomlpsdSEgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:56:10 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:56:11 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rXD7-uRbfzwuAqSnRKG9E5_xaE-6gunCG0v6OjutHbKFmdrC1xaM-VkdWqtv4ajGrS5w2NfKU9qwgLAs6c8AVFI5K0hfhs_QbB3sX9JnW75lSDwNj9NUOl9EttYYuSmdms8IrgqQc9VubbJRcGZhKvBQh5Q1Jxm1zDmUpCsKo_logAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['182'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:56:14 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [1cd5151f-c2a4-4141-9698-27ef8f679aef] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1190'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:56:24 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rWX1rCWw1K6KmRuX93A1nCMfDT_U00yUwKr26qtKw-4px9kRFasyoeIdFvmNz3aZIfvwwp5RGzLm9uxNUnigjVRWe6Y0nzQ4ONiimq39CfPSiC0P5o9ZsDfnE8KLRhZy43pXkcuV7BCWMR1Pwq6Tdt6ifjJRasz6mVpvOg-6m4DUgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroupchild?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"Succeeded"}'} + headers: + cache-control: [no-cache] + content-length: ['181'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:56:26 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [e0d5d44d-9141-4643-aba3-a3e516b42fbf] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:56:28 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rr6d1BC37291ZW39yA1tVtS6J0DKjwm8rh3Gei0yRMnfxADx2mGp2YUSj0iJ1Ik8orKQ-3sedwi6Y1kBSbdQxXeTya-SCCMr4_zsdn-WKaIHRZG5cPWw-vNblRghs5ynVkjD89YqLGMcnG755nm3hLlatreFvBnEY4fa7HY8hMPwgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: POST + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:56:30 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1185'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:56:40 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rm5Q6ZVW2Lkw2CdoXRiCJmICqyn04_GU2vej-EeW_agzBZlNZgVrCk6oCbKU31HYatesIbhXilynJG4bXjFaygfaHa2ESpFB1FgjzFOFF_j54y3O1hedxMUo55GIKGH1pxR-V7x41uDKK1CVkrfkj9_tNa7dEI-jmgl-WoOz-g_4gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + headers: + cache-control: [no-cache] + content-length: ['1300'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:56:42 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:56:42 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rdjgYUAkXiw5HbQLtVvgLHDbHFnexR0nEm1SiXdDpNgUUHH6PR-AYNvj2ZJH_Wdeoi8FbLSZ6nihKl4NYRqvGLhq7xsjQi8LHdKAG3yHxv9LiZ7TBj0yqAyj-lR8_I0WEpI9IBQgqZ0zzAutjATR1k3hVyXxm1hY-JgbtGo59TA4gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Cache-Control: [no-cache] + CommandName: [account management-group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} + headers: + cache-control: [no-cache] + content-length: ['172'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:56:44 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [d2b5ecc1-18cf-4301-af19-88ac786d31f5] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1178'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:56:55 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rmarOikXi_m4Q4BiClQdZl-alzEWj3wf6KV4YDFGhUYnAYU6JUrKpQDbtCdsUimzx5N4IOAKAfZBkb21j2oR884RDrQTZY9cz5k9fAjAjZwiQmbAEEJo6CvTFmu82hmiTZr-Xbo0xcgJZ3TuJcTtmz2NmH_JG3_rlObHFkSrKXrAgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group delete] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded"}'} + headers: + cache-control: [no-cache] + content-length: ['171'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 24 May 2018 09:56:56 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-id: [ab7a4edf-a80e-49e3-ad75-2aa13627e851] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.790] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +version: 1 diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/test_managmentgroups.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/test_managmentgroups.py new file mode 100644 index 00000000000..d7d6fe1aba7 --- /dev/null +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/test_managmentgroups.py @@ -0,0 +1,414 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +from azure.cli.testsdk import ScenarioTest, record_only + + +@record_only() +class AzureManagementGroupsScenarioTest(ScenarioTest): + def test_list_managementgroups(self): + managementgroups_list = self.cmd( + 'account management-group list').get_output_in_json() + self.assertIsNotNone(managementgroups_list) + self.assertTrue(len(managementgroups_list) > 0) + self.assertIsNotNone(managementgroups_list[0]["displayName"]) + self.assertTrue(managementgroups_list[0]["id"].startswith( + "/providers/Microsoft.Management/managementGroups/")) + self.assertIsNotNone(managementgroups_list[0]["name"]) + self.assertIsNotNone(managementgroups_list[0]["tenantId"]) + self.assertEqual( + managementgroups_list[0]["type"], + "/providers/Microsoft.Management/managementGroups") + + def test_show_managementgroup(self): + self.cmd('account management-group create --group-name testcligetgroup1') + self.cmd('account management-group create --group-name testcligetgroup2 --parent-id /providers/Microsoft.Management/managementGroups/testcligetgroup1') + managementgroup_get = self.cmd( + 'account management-group show --group-name testcligetgroup2').get_output_in_json() + self.cmd('account management-group delete --group-name testcligetgroup2') + self.cmd('account management-group delete --group-name testcligetgroup1') + + self.assertIsNotNone(managementgroup_get) + self.assertIsNone(managementgroup_get["children"]) + self.assertIsNotNone(managementgroup_get["details"]) + self.assertEqual( + managementgroup_get["id"], + "/providers/Microsoft.Management/managementGroups/testcligetgroup2") + self.assertEqual(managementgroup_get["name"], "testcligetgroup2") + self.assertEqual( + managementgroup_get["displayName"], + "testcligetgroup2") + self.assertEqual( + managementgroup_get["details"]["parent"]["displayName"], + "testcligetgroup1") + self.assertEqual( + managementgroup_get["details"]["parent"]["id"], + "/providers/Microsoft.Management/managementGroups/testcligetgroup1") + self.assertEqual( + managementgroup_get["details"]["parent"]["name"], + "testcligetgroup1") + self.assertIsNotNone(managementgroup_get["tenantId"]) + self.assertEqual( + managementgroup_get["type"], + "/providers/Microsoft.Management/managementGroups") + + def test_show_managementgroup_with_expand(self): + self.cmd('account management-group create --group-name testcligetgroup1') + self.cmd('account management-group create --group-name testcligetgroup2 --parent-id /providers/Microsoft.Management/managementGroups/testcligetgroup1') + self.cmd('account management-group create --group-name testcligetgroup3 --parent-id /providers/Microsoft.Management/managementGroups/testcligetgroup2') + managementgroup_get = self.cmd( + 'account management-group show --group-name testcligetgroup2 --expand').get_output_in_json() + self.cmd('account management-group delete --group-name testcligetgroup3') + self.cmd('account management-group delete --group-name testcligetgroup2') + self.cmd('account management-group delete --group-name testcligetgroup1') + + self.assertIsNotNone(managementgroup_get) + self.assertIsNotNone(managementgroup_get["children"]) + self.assertIsNotNone(managementgroup_get["details"]) + self.assertEqual( + managementgroup_get["id"], + "/providers/Microsoft.Management/managementGroups/testcligetgroup2") + self.assertEqual(managementgroup_get["name"], "testcligetgroup2") + self.assertEqual( + managementgroup_get["displayName"], + "testcligetgroup2") + self.assertEqual( + managementgroup_get["details"]["parent"]["displayName"], + "testcligetgroup1") + self.assertEqual( + managementgroup_get["details"]["parent"]["id"], + "/providers/Microsoft.Management/managementGroups/testcligetgroup1") + self.assertEqual( + managementgroup_get["details"]["parent"]["name"], + "testcligetgroup1") + self.assertIsNotNone(managementgroup_get["tenantId"]) + self.assertEqual( + managementgroup_get["type"], + "/providers/Microsoft.Management/managementGroups") + self.assertEqual( + managementgroup_get["children"][0]["id"], + "/providers/Microsoft.Management/managementGroups/testcligetgroup3") + self.assertEqual( + managementgroup_get["children"][0]["type"], + "/providers/Microsoft.Management/managementGroups") + self.assertEqual( + managementgroup_get["children"][0]["displayName"], + "testcligetgroup3") + self.assertEqual( + managementgroup_get["children"][0]["name"], + "testcligetgroup3") + + def test_show_managementgroup_with_expand_and_recurse(self): + self.cmd('account management-group create --group-name testcligetgroup1') + self.cmd('account management-group create --group-name testcligetgroup2 --parent-id /providers/Microsoft.Management/managementGroups/testcligetgroup1') + self.cmd('account management-group create --group-name testcligetgroup3 --parent-id /providers/Microsoft.Management/managementGroups/testcligetgroup2') + self.cmd('account management-group create --group-name testcligetgroup4 --parent-id /providers/Microsoft.Management/managementGroups/testcligetgroup3') + managementgroup_get = self.cmd( + 'account management-group show --group-name testcligetgroup2 --expand --recurse').get_output_in_json() + self.cmd('account management-group delete --group-name testcligetgroup4') + self.cmd('account management-group delete --group-name testcligetgroup3') + self.cmd('account management-group delete --group-name testcligetgroup2') + self.cmd('account management-group delete --group-name testcligetgroup1') + + self.assertIsNotNone(managementgroup_get) + self.assertIsNotNone(managementgroup_get["children"]) + self.assertIsNotNone(managementgroup_get["details"]) + self.assertEqual( + managementgroup_get["id"], + "/providers/Microsoft.Management/managementGroups/testcligetgroup2") + self.assertEqual(managementgroup_get["name"], "testcligetgroup2") + self.assertEqual( + managementgroup_get["displayName"], + "testcligetgroup2") + self.assertEqual( + managementgroup_get["details"]["parent"]["displayName"], + "testcligetgroup1") + self.assertEqual( + managementgroup_get["details"]["parent"]["id"], + "/providers/Microsoft.Management/managementGroups/testcligetgroup1") + self.assertEqual( + managementgroup_get["details"]["parent"]["name"], + "testcligetgroup1") + self.assertIsNotNone(managementgroup_get["tenantId"]) + self.assertEqual( + managementgroup_get["type"], + "/providers/Microsoft.Management/managementGroups") + self.assertEqual( + managementgroup_get["children"][0]["id"], + "/providers/Microsoft.Management/managementGroups/testcligetgroup3") + self.assertEqual( + managementgroup_get["children"][0]["type"], + "/providers/Microsoft.Management/managementGroups") + self.assertEqual( + managementgroup_get["children"][0]["displayName"], + "testcligetgroup3") + self.assertEqual( + managementgroup_get["children"][0]["name"], + "testcligetgroup3") + self.assertEqual( + managementgroup_get["children"][0]["children"][0]["id"], + "/providers/Microsoft.Management/managementGroups/testcligetgroup4") + self.assertEqual( + managementgroup_get["children"][0]["children"][0]["type"], + "/providers/Microsoft.Management/managementGroups") + self.assertEqual( + managementgroup_get["children"][0]["children"][0]["displayName"], + "testcligetgroup4") + self.assertEqual( + managementgroup_get["children"][0]["children"][0]["name"], + "testcligetgroup4") + + def test_create_managementgroup(self): + name = "testcligroup" + displayName = "testcligroup" + managementgroup_create = self.cmd( + 'account management-group create --group-name ' + + name).get_output_in_json() + self.cmd('account management-group delete --group-name ' + name) + + self.assertIsNotNone(managementgroup_create) + self.assertIsNotNone(managementgroup_create["properties"]["details"]) + self.assertEqual( + managementgroup_create["id"], + "/providers/Microsoft.Management/managementGroups/" + name) + self.assertEqual(managementgroup_create["name"], name) + self.assertEqual( + managementgroup_create["properties"]["displayName"], + displayName) + self.assertEqual( + managementgroup_create["properties"]["details"]["parent"]["displayName"], + managementgroup_create["properties"]["tenantId"]) + self.assertEqual( + managementgroup_create["properties"]["details"]["parent"]["id"], + "/providers/Microsoft.Management/managementGroups/" + + managementgroup_create["properties"]["tenantId"]) + self.assertEqual( + managementgroup_create["properties"]["details"]["parent"]["name"], + managementgroup_create["properties"]["tenantId"]) + self.assertIsNotNone(managementgroup_create["properties"]["tenantId"]) + self.assertEqual( + managementgroup_create["type"], + "/providers/Microsoft.Management/managementGroups") + + def test_create_managementgroup_with_displayname(self): + name = "testcligroup" + displayName = "TestCliDisplayName" + managementgroup_create = self.cmd( + 'account management-group create --group-name ' + + name + + ' --display-name ' + + displayName).get_output_in_json() + self.cmd('account management-group delete --group-name ' + name) + + self.assertIsNotNone(managementgroup_create) + self.assertIsNotNone(managementgroup_create["properties"]["details"]) + self.assertEqual( + managementgroup_create["id"], + "/providers/Microsoft.Management/managementGroups/" + name) + self.assertEqual(managementgroup_create["name"], name) + self.assertEqual( + managementgroup_create["properties"]["displayName"], + displayName) + self.assertEqual( + managementgroup_create["properties"]["details"]["parent"]["displayName"], + managementgroup_create["properties"]["tenantId"]) + self.assertEqual( + managementgroup_create["properties"]["details"]["parent"]["id"], + "/providers/Microsoft.Management/managementGroups/" + + managementgroup_create["properties"]["tenantId"]) + self.assertEqual( + managementgroup_create["properties"]["details"]["parent"]["name"], + managementgroup_create["properties"]["tenantId"]) + self.assertIsNotNone(managementgroup_create["properties"]["tenantId"]) + self.assertEqual( + managementgroup_create["type"], + "/providers/Microsoft.Management/managementGroups") + + def test_create_managementgroup_with_parentid(self): + name = "testcligroupchild" + displayName = "testcligroupchild" + parentId = "/providers/Microsoft.Management/managementGroups/testcligroup" + parentName = "testcligroup" + self.cmd('account management-group create --group-name ' + parentName) + managementgroup_create = self.cmd( + 'account management-group create --group-name ' + + name + + ' --parent-id ' + + parentId).get_output_in_json() + self.cmd('account management-group delete --group-name ' + name) + self.cmd('account management-group delete --group-name ' + parentName) + + self.assertIsNotNone(managementgroup_create) + self.assertIsNotNone(managementgroup_create["properties"]["details"]) + self.assertEqual( + managementgroup_create["id"], + "/providers/Microsoft.Management/managementGroups/" + name) + self.assertEqual(managementgroup_create["name"], name) + self.assertEqual( + managementgroup_create["properties"]["displayName"], + displayName) + self.assertEqual( + managementgroup_create["properties"]["details"]["parent"]["displayName"], + parentName) + self.assertEqual( + managementgroup_create["properties"]["details"]["parent"]["id"], + parentId) + self.assertEqual( + managementgroup_create["properties"]["details"]["parent"]["name"], + parentName) + self.assertIsNotNone(managementgroup_create["properties"]["tenantId"]) + self.assertEqual( + managementgroup_create["type"], + "/providers/Microsoft.Management/managementGroups") + + def test_create_managementgroup_with_displayname_and_parentid(self): + name = "testcligroupchild" + displayName = "testcligroupchildDisplayName" + parentId = "/providers/Microsoft.Management/managementGroups/testcligroup" + parentName = "testcligroup" + self.cmd('account management-group create --group-name ' + parentName) + managementgroup_create = self.cmd( + 'account management-group create --group-name ' + + name + + ' --display-name ' + + displayName + + ' --parent-id ' + + parentId).get_output_in_json() + self.cmd('account management-group delete --group-name ' + name) + self.cmd('account management-group delete --group-name ' + parentName) + + self.assertIsNotNone(managementgroup_create) + self.assertIsNotNone(managementgroup_create["properties"]["details"]) + self.assertEqual( + managementgroup_create["id"], + "/providers/Microsoft.Management/managementGroups/" + name) + self.assertEqual(managementgroup_create["name"], name) + self.assertEqual( + managementgroup_create["properties"]["displayName"], + displayName) + self.assertEqual( + managementgroup_create["properties"]["details"]["parent"]["displayName"], + parentName) + self.assertEqual( + managementgroup_create["properties"]["details"]["parent"]["id"], + parentId) + self.assertEqual( + managementgroup_create["properties"]["details"]["parent"]["name"], + parentName) + self.assertIsNotNone(managementgroup_create["properties"]["tenantId"]) + self.assertEqual( + managementgroup_create["type"], + "/providers/Microsoft.Management/managementGroups") + + def test_update_managementgroup_with_displayname(self): + name = "testcligroup" + displayName = "testcligroupDisplayName" + self.cmd('account management-group create --group-name ' + name) + managementgroup_update = self.cmd( + 'account management-group update --group-name ' + + name + + ' --display-name ' + + displayName).get_output_in_json() + self.cmd('account management-group delete --group-name ' + name) + + self.assertIsNotNone(managementgroup_update) + self.assertIsNotNone(managementgroup_update["details"]) + self.assertEqual( + managementgroup_update["id"], + "/providers/Microsoft.Management/managementGroups/" + name) + self.assertEqual(managementgroup_update["name"], name) + self.assertEqual(managementgroup_update["displayName"], displayName) + self.assertEqual( + managementgroup_update["details"]["parent"]["displayName"], + managementgroup_update["tenantId"]) + self.assertEqual( + managementgroup_update["details"]["parent"]["id"], + "/providers/Microsoft.Management/managementGroups/" + + managementgroup_update["tenantId"]) + self.assertEqual( + managementgroup_update["details"]["parent"]["name"], + managementgroup_update["tenantId"]) + self.assertIsNotNone(managementgroup_update["tenantId"]) + self.assertEqual( + managementgroup_update["type"], + "/providers/Microsoft.Management/managementGroups") + + def test_update_managementgroup_with_parentid(self): + name = "testcligroupchild" + displayName = "testcligroupchild" + parentId = "/providers/Microsoft.Management/managementGroups/testcligroup" + parentName = "testcligroup" + self.cmd('account management-group create --group-name ' + parentName) + self.cmd('account management-group create --group-name ' + name) + managementgroup_update = self.cmd( + 'account management-group update --group-name ' + + name + + ' --parent-id ' + + parentId).get_output_in_json() + self.cmd('account management-group delete --group-name ' + name) + self.cmd('account management-group delete --group-name ' + parentName) + + self.assertIsNotNone(managementgroup_update) + self.assertIsNotNone(managementgroup_update["details"]) + self.assertEqual( + managementgroup_update["id"], + "/providers/Microsoft.Management/managementGroups/" + name) + self.assertEqual(managementgroup_update["name"], name) + self.assertEqual(managementgroup_update["displayName"], displayName) + self.assertEqual( + managementgroup_update["details"]["parent"]["displayName"], + parentName) + self.assertEqual( + managementgroup_update["details"]["parent"]["id"], + parentId) + self.assertEqual( + managementgroup_update["details"]["parent"]["name"], + parentName) + self.assertIsNotNone(managementgroup_update["tenantId"]) + self.assertEqual( + managementgroup_update["type"], + "/providers/Microsoft.Management/managementGroups") + + def test_update_managementgroup_with_displayname_and_parentid(self): + name = "testcligroupchild" + displayName = "testcligroupchild" + parentId = "/providers/Microsoft.Management/managementGroups/testcligroup" + parentName = "testcligroup" + self.cmd('account management-group create --group-name ' + parentName) + self.cmd('account management-group create --group-name ' + name) + managementgroup_update = self.cmd( + 'account management-group update --group-name ' + + name + + ' --display-name ' + + displayName + + ' --parent-id ' + + parentId).get_output_in_json() + self.cmd('account management-group delete --group-name ' + name) + self.cmd('account management-group delete --group-name ' + parentName) + + self.assertIsNotNone(managementgroup_update) + self.assertIsNotNone(managementgroup_update["details"]) + self.assertEqual( + managementgroup_update["id"], + "/providers/Microsoft.Management/managementGroups/" + name) + self.assertEqual(managementgroup_update["name"], name) + self.assertEqual(managementgroup_update["displayName"], displayName) + self.assertEqual( + managementgroup_update["details"]["parent"]["displayName"], + parentName) + self.assertEqual( + managementgroup_update["details"]["parent"]["id"], + parentId) + self.assertEqual( + managementgroup_update["details"]["parent"]["name"], + parentName) + self.assertIsNotNone(managementgroup_update["tenantId"]) + self.assertEqual( + managementgroup_update["type"], + "/providers/Microsoft.Management/managementGroups") + + def test_create_delete_group_managementgroup(self): + self.cmd('account management-group create --group-name testcligroup') + self.cmd('account management-group delete --group-name testcligroup') diff --git a/src/command_modules/azure-cli-resource/setup.py b/src/command_modules/azure-cli-resource/setup.py index 43f817b96d0..afb3820656e 100644 --- a/src/command_modules/azure-cli-resource/setup.py +++ b/src/command_modules/azure-cli-resource/setup.py @@ -33,7 +33,8 @@ DEPENDENCIES = [ 'azure-mgmt-resource==1.2.1', 'azure-cli-core', - 'azure-mgmt-authorization==0.40.0' + 'azure-mgmt-authorization==0.40.0', + 'azure-mgmt-managementgroups==2018-03-01-preview' ] with open('README.rst', 'r', encoding='utf-8') as f: From 42376bedb0badbf15917f76a195c0f5425ce5486 Mon Sep 17 00:00:00 2001 From: Raj Shah Date: Thu, 24 May 2018 03:39:41 -0700 Subject: [PATCH 02/12] Bump up version and edit history --- src/command_modules/azure-cli-resource/HISTORY.rst | 4 ++++ src/command_modules/azure-cli-resource/setup.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/command_modules/azure-cli-resource/HISTORY.rst b/src/command_modules/azure-cli-resource/HISTORY.rst index 885d744e18f..b8b9c6cafa4 100644 --- a/src/command_modules/azure-cli-resource/HISTORY.rst +++ b/src/command_modules/azure-cli-resource/HISTORY.rst @@ -3,6 +3,10 @@ Release History =============== +2.0.30 +++++++ +* Add management-group commands + 2.0.29 ++++++ * Minor changes diff --git a/src/command_modules/azure-cli-resource/setup.py b/src/command_modules/azure-cli-resource/setup.py index afb3820656e..57e61fcf0cb 100644 --- a/src/command_modules/azure-cli-resource/setup.py +++ b/src/command_modules/azure-cli-resource/setup.py @@ -14,7 +14,7 @@ logger.warn("Wheel is not available, disabling bdist_wheel hook") cmdclass = {} -VERSION = "2.0.29" +VERSION = "2.0.30" CLASSIFIERS = [ 'Development Status :: 5 - Production/Stable', From 89210efc9b414b0313a24f703788703f16f7e58b Mon Sep 17 00:00:00 2001 From: Raj Shah Date: Thu, 24 May 2018 03:53:01 -0700 Subject: [PATCH 03/12] Add wheel file --- ...oups-2018_03_01_preview-py2.py3-none-any.whl | Bin 0 -> 61103 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 privates/azure_mgmt_managementgroups-2018_03_01_preview-py2.py3-none-any.whl diff --git a/privates/azure_mgmt_managementgroups-2018_03_01_preview-py2.py3-none-any.whl b/privates/azure_mgmt_managementgroups-2018_03_01_preview-py2.py3-none-any.whl new file mode 100644 index 0000000000000000000000000000000000000000..7783ad876f4b071dbedcb5171e0977f3e4dfc700 GIT binary patch literal 61103 zcmb@uV{|3ZwyhhR72CFLI~CiuZQH8Yw#|xdI~Ci`OYL*_d3W#D-aF^M^M0(X*79?< z{*B(p7;`RpDPRy}000080OO`6X&wK8Uxa`F0Omjd0A%0))%S3AFs8FMwRWPj*0<3& zHMTakaWZwVb+&V))73S%F?Z6{rL}Xfies?t=Z6V?dWVvN>E%D9g@I6pC^M%jZC6ru z(#kw2Kfr#$*7)?!f)>W%bjY~4;_11Ap+=cfJ<}Om6k-fq+{{k5F6*eRu<#Go7CfX@ z%vETd#;HRT;|-RX=MMs+2RmRwEwjkU6v3<`XAx}n?PyYDCzK6-hhWG16>|bz z1%L#Z^!s!nD(Qzt%l?uP>OKktipK(Z`?1ptlD)lJe=!=TUL4{^H2zJTjV6|^zTc8o zZ#r+grU9->PA#jc7|amb^~Jp>Sy0Hra56&y&bgL6){wck$M!xMi6XSQWoKEf2%Y=j zf-3=A7Vz@v3uwK0Yh=UZ*(W6z5jf90td}o0_7mN-M8Z+A`7QR+HN%$}&lh%F1-n7w zEt>p)9<#~!G4nynv?)OV02t8#05Ja-$NYbvyY7D+yso~T`S+P$sB7A;vm*OE)!@&8 zj|LVNu8-$Vg4Q!rMX;F1Ie9}u1*e#0R1jMb|5?Ck-|iMtKsz&{Ge*!AUd4|o@Q12#0RT(N7{k~kPrbP_O}0?`zAn}!~$E2M^>F;6F? zAx0nzxMq<6n(-DfOn^?vWt4*ua}b#s9A|qt1K32E;~s(kF{?F>ocSSW5YBG+g9aU3 zsw^G|(rqegc@zmpM{p+L07MW_>@FH5-;+nAq{wJlSe)p&AA+$upG$MsO9Eu<8f>t2 zVaaf)&4GuEsm%U9@YQ?_$Mv_ zg6omJ7$D8oUL(PA3d1$F`jkf~rsyKK5=40HSHF@q8GHI#_I;{{F%H^;CbQ6#HCCcu8zp778$94%2!72!KF~(oDr8i%ecdHvbEzyxLy7 zg;m?Inz|2FND-cX_}*c$1>ZuW<;S)vb#r9jJ$iWos(r_&sFMt6g#*;bj4;A7fs@26?>)+a2{=1)VG($+DHX+C@7L^qcdnXEz%R8p&sfpKD@HV4#R zJL`r&FUIS0DA0n}f zo58>VQA&_*l%|>dx~2h-YeQhATyVru)_@1$YuMS<#_Gqa6drHE+uVnX}^^2 ze&BCqLu|;VbxEL*{9dY`hV$;K-UB!gWi7w()29GgyeUr9tm#3pMgQaEimkna3DyLf z@YxMOqr)qt+piC+wqpY!5_{Tw^6VzE_w*C4kiOqiT9LbiB01wH06JPU`%4oDKM){( zJawcB2$}pFCMNez?o$I^9@6fSsxAvgba{-`Xd!19Ie0#AXJo){Cjmg!bwPo4`M3xH zhAoy#(pi|o2?`Lz#$+9#$IG;fc*|8AG+QbR!=*Yhvn~wb?fpuYx3_A4C4$(gArf@1 zCM#_$#Sdf3sM8`o;YD~yy^0z!zwPvbbV&xh7FJVgOrnDO{x<$#jerLV5MVyC8foBBQV$i4lSFn=TmDK z4IpXD`zOf!nf}P|wt`9+?5OwdX(v)_<|WIoBhp;OFt02D!dw zs*dOQhJ{Z}KfyydYBl8lP!477SXZ_)E)(i7kfpOkh5on>$FoSvd(^m)2JrMDd0KC6m&fBF_ zIfG?;;%ya(8-PYc1kI#%-$K*WM6=QW`L z6NcqhnE51oO)TJf$F!f#!l&qP{9hI>`QS^v((q3|FJ~l%&SP}-*x3im&DkIH7Rs<8YNeiL7PGHk5EXq{KSLc;|+BfpTy=%pE z$jGuOnF1PcjPe{`l*JGLkW!1n?zMZ$;dU-tbaOI0u{xmEA)PP%$lRmR#$8Q&C!H8B z;jLJO5ER)8v-A92UDs_YMt7rzOiWakWne*{dFx%Q={2>uu-DyOnHK4Bm^gmj8(BHN zu6MiV>M6tqA#eal~TdjPuaiw0KS_hEqsbh zc@$tnDs{-a>TMcIdsAGC4l^2+f}b|0w*OlAkS}@`ZCT7QvVkYGTK`b5*!^PZW?f?h zZ+6kM{6cDe95kP!HF4Sz^rmgZN&50uGGkltfkT{2X)miYm!B3fYTmut5uk&p#ow~>E!i0 z5R(2EDaFOu!O`5-<{w#5z$TC$LF6fOkIE_mG^{bhsy-~gJYu2oM_D_Y34rSFz@d<& z^<_WI2Y?$J(djE+u8_mI6_4#V%2g4DgwQN}E(f-VGOXC9tsSez+WoQ6E+^_StY!*0 z>qra-1P5Z^Wb@WH6J~WW5)aLUUbdjSlRMk2JwYeD_t?-nrg=!;#76{^*a(uewO}aW zv>GW3{x#p&;tViG$Q~2(Eb-^XKia_Z1pdBx=Cf)HiI6y`%YEuG%q~quzsAmER?pY zUHnX?s7nUPVM6K}ij}FD>gxm7B^M0FS}`4|^Qmk4Dz(Q>FfFQeB?ryJ^^t>}z%=nA z&WfZ#;l{giG-`4b)>QJ)p=7q2v8?n^fqGOV0Rea{JOF!vNLVWBV+tb-n@}MP0(q7p zF5|)5S|@?a?@)x#yg#_lNb(b~I6OfiF-vJANe!9sny0A*jEuAkVgwgNkJ4?X*-0VO z`tTrs#sRpkxz`dpseH@^MX@e4v#^mk3N<84qNu!}1z}!{7A236@QXdA1vEkYV3#YA zsN&cyh8Ze-KXsm!Z>IeH2g3VBlJw}0qy)++e#PtqeH9-*pZKCi%5Z$7PSM!Otl4YMA@d0G(wq(Ys{f4gnX78MZue_^>-AM&lWQw3t!?D!Ah9S#p+GbvCHk;9tvooZg_7Id%} zOzzb#6N36eD-}L=BCeh+5A|=nL_fRz|MNK zAN{#+w3U~Ajq>5Ci_!y0n7EY8J4u|K0#(o8zhlH(IA=R~5HowQ=k)Frl`EaTT0SIl zesPn@7L47_8x%Xf=3;(^`0(y{l+EjyH@g(};A&fvt!kLJIIp;OzQ2RAo*fbCu6h@^ z;+l`Pa9JO0?uOF3zq4t-wsCM5XTl92pEJp4noowE(TWImZ`Lr*xf+K-?c;{%kISD6 zKFEA$j8S~**>&1ov6$r3c7mDA;fKXjdBV+Sje>B3#X#M{-2EkXajF&PA11phw9d72 zh2n}(Qyj@_Y{B)Gk}|}t%0!MMBjnva;}V0$=i@K-b5lu_c75b{qWj5Xt=@%J%(_`h zw`Wzxycq%wFUJ@B3-Dj-){OL;1N(OadjJ9eAoAa1&(O@+&{Ee%-`ZGL-$mctO5ecT z%G}9a*TLA{+1SzPZ&_2QvstG{*nB_pxbp+WVu``B^rAWAF8sBFBYZ4G(e zc$$)$n}Slq1jaz_HRSIZ)}VjNP%#5uLa>g;H4CkMef8o*y#}`5n4tr*W-5NVB%=hn z!WP))rur3N0CLr#(9}NlXc2@;Q;+g(2ej0(%S>vb4wf)VezBm(UJg&SiOqumS=jue zX^Y8syvbX8vX@PF_|~xClNZ*AQHD61MzNHmC%ufg!?$~m12vdeoX0?7k^zc~bH^0*}M&siuD~_ z2}3&U#eZ{zb=bUnOUDO|20s}jb^$*XK z&vD2%FqQ`88t-4FdG{ux#P==Dy>Dqs{Qn|NT|0NCf5>zEuRJ@?s8DbE;8*UO=y!kw z-~{|R$>%m;(=|pbDHPNbT$1rW9%(5wUFdj%(ZUZV&d=?{a<$5=yJGS*yeLF#pBo1a z;Hxjhm)`)8Sc0Qf4mvAVnLqh#@?KCR-=)U21wuGa;=9N4}9{V_@_WivFj2}en#zh&#TgiuIhx#7l<_X2fJ)W502g;UmDs? z9}B^Io%_cmbcA*_vUr#oflCfmR%8F9>>B9ewh+U&h9sN3xIp-pr?&C8Jk6&WgM{2~ z+IG=U+Q2ZUgJoYHj>54=`{U}`HOFK z=A;}z$JNyp%iK5`b`5}~Z6&}McLa;Dlo-5hNt?H$Dj=-mQ3T?5eds%B2B7NpqX^Z_d$@5G112KH(1Y+uuc0SSeRlGAV^#9^N()OKPsSv6ds#@7D+03@Nvdaa=IZ{Wqjv#nH8ks&=-_FFR)=M+=?` zvu>*WRZVdLKnP%kL@Fdl-E5fJy-;AP1Oirwmsh;9!zAy)>^;AaAcl(4vfs%T5J%o1 zn#e@!IUZ)@0Eg1frJobj;HphyvxXR2h!FS))^^B*B?5b z;z$qgiM5)dx-_hsRS52c$n*Kg<80w3*PZHBhLhR&)Y@kd)>O0gP7e+aYQm&X_;;k5 zkPrIR47d1#{iODo2^az5Skw!p6%_J0?z4{$Dntz)li_^TWS9;#HWGo@T1C3=#ydBP zRT4)M>_~1cw$EliC=*Hb1LFK;A&-<-*W1KFDT(}O=pMOz-OCViC-p2I$gYktNg@Pg zRIoF$r>wx>-)l7;F9Og+9ye^aivj@X4hwO&;`W zO4>MKW0gA6&JnoDj$)TKRXcI)HxkoUTtOLn!R;Jj4dhjj4H?tNcdL<47>=)?KuaSV z64lHT+bOdATZI!=h;DxHx?Q=@Nf?T&w^VA2Y}{L^WIIPDY0nV6A3UMqnslK*+0D=AX%l%=?a#aeWtHXnOI>!<1?mfzc*jWu~uPruFmtwzc zvST)ls2%N&4UXol1th)dGo%OMeKl6;C)Kc&@t`G(<%AGv)6&K=ZNtNKm-2~&Nhew} z?T9jI^pDi@gV(h38+Yx7BQO6#1IuBPrq%irpRtN=Igq<(S72QS9G{4Xa+KxkA_P%~ z_3OwD0A1Ikg@-K=yG2}D@7GB2Ra~)oBmifcoHIX}X7fCo*DC!z=CUY)bkuA3gV_H?CUF)w%*zYjAUrS@hp~#9MA=h^&3D;Tw=z z&MF*2(gmi_vE{2#3?6vhLeJvN;d*Y&&&^&R|IL%iJ+Xu0zG(-B1OO2K|AY2_TGBW1 z>+A?!Z>lf}f#?0ZZS-+K0*}Ce=?3vM9xP@S#P&k*loA~Fk&i8|AxTD%-@unAicC&; z-fh8nLyje{EiHRjR_oNz?w+>rD4j1klhvG&_G?)0=ulk+R1jvpO}S$-nqazr_XJ$%q?MN#*oNYOHRk!r)R*e4t{dM z&!t=!mURIK*ei*th8OHPaLQxEB6U7@?bT3TX_x^^V1kyF7tQ7_(qJ&_ zzZXFqm(0>^MzpZ?fTPwgo_qi!UO6`lF2M~SLMauyQ^_H4)V>wE0sl}0}&_*$a9eIz2FG&e7U@uVS(HXlK^9Q8h7RR7w*_(f}4{?xyO(WX%HlW-)ZCKfSz zsv?5B1e(~N1}9^IbbRQIqUMzsae{4&#cPWF9(i1u%H_IEPtlRqT( z4OV5tQO=*%PFuHYM(Zq~Yjk*cC3Hh!wYvOWr}k_D@;U%NUdg_gHC?*a!paVm&b0!8 zek)KY#M`G3>~s4Z&CjepUts-f5}ikv!F2hio(Jl`PrZY&zLT-;zb~Y84b9B0jJ}tF zCboZrsB&M-I_o#}RA3$8tNyB&b@a8NdVyfjMuGU+_X;3jG|@(^$Yn4Rwwd2y6iz}S zg*9dqb+->;l+D&;Yhq?uK272Db*ba@aCwzwYw z4~jhxCV;ALX+`ohhX|tGm2mLT1Tjt%Q(+h)oRJu34hnpGKZ@Y17-61KOIi3+S&l5} z6W$hRrRD_=j~$#oX%hTnsUL?x>;}KFv`*kcC-LTDQ?~pz+c-n)+JFaGM^#ldmLSrO z0~JLYGyvsge&8q`Qoq^bl17UGx z6F~^~g}fMHB&QQY2ig09(Aa37#wF;}RNf#Qu8oC@Pn__E4r@>baH?*<@ z_m*hE$k3-z9dxov_d#yk@*^X22`cQG3cX8=dluPsc~5giUe#?uZ-q&DllH;&lp2*f z{0j7-I&t>YCT9KDSQ-tIP;g-(!gQ+dfaQQoL$q|MyS*;xy3~~^UciX zlVzpYIQR;NG5RF7Kj__pU)YHTVskjR6e5gi2}yI!lGv9aiis&b9Nc&WFZVpcCcEZUGsjQSf>X zG5INe5N`LJ)Zf9+g?^GqI(F~+#~XVD+w598pm6d9#Z~QE4p|wy>ABsBh#~MX%`qJ@jYwd7sszO~r3`gl32~@*(UHf$cZy!X06xvT_lKh8}KWoX1&& z#=J2-UlE_4x8Jp(O~jTvyPW75A!4z-<%MOf+Oalw&e*If*=N(NSoOPEvpPnWYxGBc zPcuLko8J;)#$Qp*eX`vl`@G`et$?TFLjc_~i!|LVnPusW+;7>tDN1OEMA#w4Ylh1* zbXq@e|IN{-k8|-ozu6Y~W?TBd>FEC@+y8WRC7IZDQJ8O6NBB>^K?7(osb^p#oMxpE z(G9~BR-;UkUap5A=eBjGqKKuihHV0l_1xHFV-JWpmgSEVl)TTho$v0>F>QQShK*d? zdC<%MgYQ!MwbQY>&BiqdF^xah3X7=Bb>(^STOloSZfPaz~V5E@=y(gvtHWJ4kG7E z?Zz~D7M3}M#F?W)QgCiqjZ1!DkIQX``oM~ns<0OI62<`)UN9UJOX)Isw!3RRp886? z*&T##iD~ER^z@WL36XXo4FUgprie454h#TcHVxek>QD)BgZGbD$^AWGt&`b_x2djDq~bXH3DL81H7BXWphIG8mRI@fUL6q4Jb?)oCV%FE9k zWv0b7T8C#LO{q%o^WX!@A983mu&XVMCgZ>3sw%hF`sJ}2ThtRmlEWQ{ohzAoiQa0S zk7558;8@>)!+Zn&Vp2$(e3tmS`GxsN2m24ebK;Y}0eAlk`1*CAnMU~dm7?>5;;W79 z`~9|3to%3N<@Akgi|C)hFC3_Y{v&?@clZX}NRt9CgGk*tY&eDGEx|c$g5oO4aLktZ z>Kkz1yx$SXgE7Fit+eFTi%4zSQTLsY(+19736*adL|r(+5geFG6dL?6T!Txd+`#M) zbhjTl6kK2UT^G9fjYn8I=#=wRPS80DrSvZZ!B((2j3!hAzyqOT`!{#DVR^Sd2#>uX znJytT87pto3+vtOZFvFdlRX0(Z@)9emLy2|x0 zxB#;C^jcQg@fhiQN1FKX_WuByB*aq#?6>n&Rp_Z7$Mbj%n{ZLvnG<*goHMcr;7q&F8dJXl{{Wz)WN6cd+`@+2W@d>Z4ONx zAL*&x+euu~j#+E5dJWCALngJc%*NTGKkQBELCG3LcG}Ab2`~tlg|Mg;hCL(L$$dbX zlySY)h$*h{LhQj;VI9FA)&k{m^9i5fZJ={&f@R^qPSXZ4I&BOV54cCD5Ga*K6k6q% zqKRd%OzkczyTuF*_pGHC4i+~ngUe_5i8x1sq0ie$Z;P0;BBK{T1W{^}y*gp?mL`bC za~YnT=ICK}tG!;E56MVQz%U0=){?Z7^Hbz@&+)NXxBC;67bFr6n&`o7Ak+sH$baew zj%_8lT$nZrE}38|m_~v;b8vBa?l2+SLpwnRXrt@NyJNF&xAr5-p&n#&xZz&&fmn`O zJjx;js5paH*=X}L_F^Fy`yGOVjY*pCC0$@D<1?1NA2_)8>rUY@p{k8U#Lg382kO&foQ`pzB#) z_`R3R5ajqi*@{7#Xj79xKdP?T#BJAiv{{M3a$9geayVdJXq-cVRWHkN9e<}~K&Xn$ET8*ZUno&LjKCy4~=@=^nl{)`fp%WH^&C>UwDRYb5+?XtfZ2Yi|_0f7UjG zL%K?U55D=8xv&=a_8bTw3sE?mipSUK>6=u*H$X5@ViR?gg3E7sG*rvW*pGd&axjw) zB&AkWnBdZsj#)X*p{2!b1FBs7B^We*qEUEK7CVN`?Ur)c>O$@LLsmSr!xL1usehoW zu80ijxx>MVi?dg=&OswD>(ct>rQv|?UwNrcNY$PB=7sc|m;dhQ_5Yoh|8&HEVJ7N= z5gCv%_slQ9mk~z0))Ifcv0yQUTT=EAb+aWl;rutooL=Z_oH+9KKGMs%l(;jga-EqK zZ$}KR{-X(e;^t{PiMkba)I21$vEOuuB6K`VvSwFDRh>>O%CTAi*@#F!pf z^jKW44MNIO1uyo1>+g@D&u0AO=`xA0-wQzI)&$GHrHx1SV765AESygM7(;+k8c}GG zn}h!thDT~Ouk_(J6x!1kUpQFUvF z3CYVWe2}U!R10l3V?Ll|{41bzTo!p$Nu-i<)>7_xfj^n!e;|EXF4OaRwQN8E_hHep z0+H6O`B{|vb>{S8IPGP_fx{S@t8V(^S%9&|LZf zT9zJ1e4%je+L|=8$kQ70GACMl=9;_S(>pT8G?IE%4A)CW3>&fP=#JZTdQRfD)u2L~ z@P7h+IaG0Y-F@Lq1->To?UfNkRpi&-=)d|rlU8SHOJh@`uyL-o%N);B6A(j=hJ#BxMV7jt4wE_$@kI zHA)})ph0QAd{)=TnA5-5csICLp)>F`Sj#FRk~8sAbljs-KQ&?saL%1S-ZE{>1WV z1^z=e?9J6k0e zf{_9mThln5Z${R@pA1;i4yMIyqdMnWak?FWVx!7YoEk-AadvYjpcY910CoIEajuCU zylKQ$+EmoR>`()16UmTAlG$o;n2>*kE()T3nl(mVBwvX8?uAVvA!TexEsOicxT zdj@|rbuh5?BXD@+Fm!8Gmb>s7;k6J5=I!ZavmlyT9q*g^>n`R(Ik0|<^_`Tzda(fE4X_73mmT6-yX5-A3b7) z8-fP1TD}Y3$igC#Pua^mAwONUY485|d8L@Zu72F>Kz92NVo4`))?c9ax&cJC$Xp~4 zeP&IeV@gdHuum>Qnez@tsnm_%ZK3T?aKgy7WeSK#>M#o+t??}UxK$Qz24x+pnCqg$ z@xz4JnoDokAo4%{#~?edTm3cpmB_Tf7+Ur(=fukyU8j-+CpDhRF&}lRSNpA*&+{?l ziOTKX!2)H@%rlp%1+M_~b)xLH#l^_m!iQ>tFe~8@9Ke(Ak(BSM6?;YIbc3B==J0~| z=*PW43xXZa8H4NVo^DW5y#88Qq{(@D*+uKJXAue^dp-iHrqXo#y;;(0lHniit`uaW zD5HZe8`a8iYr^(ic@|&iFY#*I%g=tc>YV^u73DSFk#L!iLH@?cB*0%o3PZdJyQ!!T z!Ez(?sT!{(=DvNyQ*j}35@(->;yI!zxkw5(m)`H_=2nk;gI_4y7X5|PlBxHALfjci z-AyY-^&iX=fzZX8WsHJ2SI5roXX}f=4>;^&5G~K!8kgLw5nq8`79D!$e3r5m69!Km z{#Ojhv27EF%h%phTEA>Px!v31Z0O=FvU~lknPHBL zC0n?caFalM0t+38#Dori_)HHmapku^U!2gDd6zo1@g%?c&6E}k9l`}$x!k>4xeOgi zsoUS-nv(;H()_Z!6I#V_u(x6xP4YZ|CNaENcTWr>ZZstFGHZrS7aGdfgt&GOD_mX3 z-(qGtZU{fpQJ!9ixik*=r!fIGSh1wh4w zm!L9W#vuWluwP2T3<1j`6P)cZw~Rq77Dg1AW=&@jncOnF)eeV{Rgt|G|3$szp5FgnDkErRkP?nb!G#o4kN#ROLKWVV){-f__^sfD=Y-v0Z|{ z(tuwsOP{JKfZxEu&7`bDF?C(EXW%%x8wtJ*OdwT9#tHZw7<*koE*adw55~5^t2z2% zV!Ngy-tJ%ZC2Zo5)WbyOt`F<3Bj%NTdU-geIMV&D|0Ndcf?R_0iMcF zJ+||KO@Z|F)Qu#jd-9Uf>Exn%BB&xOCZN{df&Pv$j+-%UfxQ%8~FFK zKsU}5aoK#Cy_dbhq0dN<;NlQ3_JZP$AfX7iC1^N03v%MeH%rXZdECJ=RVJT@J@~Tq z{q9btX+3T$^lau@tyld9Em`VvFEG^xo0V-J`gGIVzH5uef^lG7NwTP2SYW`sAxb!KKBb_AnaIzYr6F7{&7}?#7q&RU&#s1!@I-k@Pd)gbLq1oN z87=#UrP4Ico`>3wuMAuv^R8UfF8Z%5qb?`-HAD2NC>WNQ!_#GK#F@0n`W@ zg(yp)jy)q#O@o-7)$zSFh=-~z>%*X4V%Shm$NZ;ZC!_Db#{e<*a~Xb1Qs$xeIj6Rp z4A1IB&*Y0X_eZ0i@kG8%qEB@(v6*QD>5%5;?OYmAI7Omz)`dtum+D~T&v^Jt)g^q_ z0!&=u*cN{I5N9JK9u)yujT8dxHMA=%pQX5y+y?A2Dt2Xxq<0ik@KyU~xWjWnV|5h@ zeHtx<`bgUV`3@<@?w-BI+c1o2#vMl|rzGEtzyNu});}E8y#5kM5Ann1X0rxppUncm zUah@rNVe!oc|sGsV;>0T=6UQwhXJz|uw5rzYdRuv(d+z)f%wK1unY(K;ha$F3;KZq zcIi*NQ5l#MD@n)vOAThtHxZf}o>O`86Q*~aaJFr90K9iVpftT=vky>YW$CvmRm3$# zS#Vg26X35-CCCMh^YAB`-M0-qqYau*=ro$CoYM!A2xhbTm_+YyVyEH5jpQk%p$<)r zT|dqo$kyWy&^dCyX6WFsup_LoZkh`%$yGDmvRJQRvK9QiL;?BI`{u)*^5LGQ2Wi~B zvd`(?)@=21*s6jYiP5(7SHnMRGb)L`;DA|_kkCQj@(iX6KB|RUU^$m;cfRb}cCE8@ zzp}a+bPR!wDVm&&e`zXBg2>8V;(|1}+}#X{Jn<-eo`!Pz_hO<2j__~SVaSi9D@xc# zplW9aw6bFA0_}vCTq-FKrZ^FfEAKO?8H@MJOlhz_9&#ElPT*{QdIto?*O%(+})a%XUuj12{K2?;; zs~_y3hymL~*LJpV>Y`l(*U@bx0_PDHGrf|jz(p;=Sy+cjkRlV5+9X=IU|!e~ktXY~Cd!EcnDqdqZ$tsAY7co$fd!quO zfD~I=FibfEDa8!t`LgFdFl|wwX+|S*3MHvbPvJATD$t1B9Z1p^r=Fsmpbm`&Hah5P zBHt!e;O#169!+GzIPEtzIy(BSiH4q**-JBN|A66?UK;706k-6|ylaWX-Wv*jur(7R zfP!rB7=IZPUy@u1Q-;=0{cBp(V3CTh;>T7QF> zo=mY4wC`xv>Viaq+ifflbwTdX9B0cx7r-kI6iUlauJVHTuq=Hx#TullDC+@Bk^1d% z)t^Gt+!Sx_SNCll-)O_S%U`J{9T^P3kS`fv5_x?~y)1T(P~8G&&R(BuwE2&JGi!iB zq2Fg<4>}ag=%ZjG%?ZXBEXmaTA4@FRp{QjzJcdF*ybc?em1 zNZ!tjIZ7yf-afa|}f_U}sm_wJ;bxv_)3gQ1zbuDO%3 z^*>gFvoZ6W2;Nt!Q7(9MBAe8)rE|Ram!K*Jhyf^c5Xv^(65!ZeE3&BpJL?$hGU-Y3 zm&vT~))$!^j$S51JfZ#KbBoSr+d^k(xm^CvhSQBX>8B+Z(Hp?w1FJRO&em~}SYnR>(7_JlN z(0A(AEHezC+5hH+8n_KT)uVErS_>gsfx}#Eu59WF5tZB$8E>v+ZiwN~BY+c*eL7Qx zztTo$&8{I?TUb@g?*J)av`YCM_5Kj0{@!K#y1$KiI0Be{LGeLxF0ex!-HFIBliF~; zEVm7NZ;tKcjO&EJzC5+}pe5sNCmS_N_F2|bI_<(Bhe21H${;{7JH- z=81HnA^JEI`aGSx(!_qXfKsUD^dPD%;E%FMo~wWp6p>VOq}~zQd-jsmBXf6CR*Kzf;RNd^{3J^o`b~hswgvSIJwt$%$ zaHS?^Pt%g2ref^~{Nrc$_!+%9t=Q(0P}^WgQe$Z%O2jjiK6v})Zkeai9C|L^r_@k* z-Pg*bCuS82mLTIM_VP8)4LFv#iPUqpIx?d)Gu@?CBp)icu>2#NH2FN_L~IwtZdZ}> znZ0tPiNdfcOrCzzF_Y=JH*1+$Y|I(bv(6?i-ZI(sz#-PqO`(IFn_%h{LCse`vsoS= z0xTj~So_p7u+*0a|BZe*RlU6kaZ0U5JZX={Bu=>lU@We8H(Im9n{SkxZcC;quRx0* zf@Ay>viCJX3Lu9B?W1LZeJ75mc!NwE$L)qr0Tbl zcb*8WmFxhYf4lHJJ@ETg{+rSGZ$|n42aNvHj=ooX^YjQ^N8g;no2#x;iz%7MBjixk zLG(pH3npX9%>fR>HP08}KVL*;k;<$n@ULO7MSZ*IUvU_8S6omRk~3J0zhfn@#hZ=x5JU68(IF`~+w#5Ln>_SvH9?`2NDzcP+WGZ(&_WkJxMI-Nb*nZ_ zXwWV0my?*7h?SxPO+#7v)3dbF94qb^lme|Xrm4ykYz1NKP=fni$L=%PpeIO#Uc)+% zL8iiEeW1_njx{4qG?_Jppv7__ek2cW6DlC%rz<;g>&@RXQ6H=>G z&u>V(9lNIrA~<74xQd>mdjvES9l1em0Bs)y;A~-f>?8X{$!#j>r^=Hj;w*?FfU=}q zi;DB==3x|)4hHz(Aw8tUFiFkTfNFL523wX4bX1$BpI!^RQkV7Tv|`$;h8-eVD9nGl zs*vx=L2%8~#8lwMWeov*T+?B|M|}+YY<0|P)DsYQ&<&G#T|EcF63>Hr$ zt?$KJ#X^jIhCnVmf!rCA3A)*uFM4P#<#UwoGldiojD<{4c;?_LH3|(sL-@$I4E+7t z@Y;9eF55uLp83Nya@Ip1t#J%5Z1@{7znkf^m(ePgoEQ5v!pVc^hm;zvM4~RODV*}J zK6Mw@XIfpX=v6m-7b@>9Z8w+47nPN<$=!FvprS!}f6JHqbH73u!7X>*5p?lKQ;fL8 zgAmBf`9JJzp{#qUhciR1oM2G{6n09q`=YbROP;-HpDZt+{~8}#nU!h}Lx{CELIR4~-)GoYRrVE!qxjH=;E5@XeWho>=x zKAeqNHj9DQ39j4Tu1`3Bq{NMfL~g1XULNEcq*_1q;r%y9J!;(Q80h6{cKk~uEq-CG zsWvH1*ijg?(n#5fVj^28X-*j2ek7NWGn>qW!JwqUevePv)?;>EfBWe3V(s*=E=Ybx zmjRL#`D;-MQg)%J&$QqEG);}s36am`&lmJxdP5w138iYaj(Yc7a~pWtlBXQMv>6cg z$E0iyO=5xLNtRrlvD~PoNrg%q(Ho}dViBZ(3_Xf5wAgJWMGy9VejY~kO`%d3C@L!? zEiQLZxuv6Z-9bUw?gg$RH*HYYV656T)o)#`DHV2fwQI@*^v=OZ%s$(q}C;;h#l#J@vbM5#sgBNk>%Lht^emnrCc#R`pTS2nA zY$YM@Dhfd!WNxTFHP_HeNJD(&A!5kc0&jq z0Lx-5JCA-}p-a%RPrxoS*UHEnl3yVlCc38h4an=AF#jWa<7uUe>m}6N9C=9j=Px&i z{ruzBdc$HvJ~!L}mer{pVwmy>OPRz9ily4HU5Pn5OyQOKgrQ*_0pmo(S#j}{;!@`Y z7mhWD4H4)t`u!mvMKfmfXpYzc`C@(rcUWI!8J6Pl!4Mm)Q)fm2E$4MI#cL}e_fFDa zqC9U#+}9o>;c=F7;X{d#bR80mlW0A>&1U7Or@>X}yUA%R4gV^BRC*q79%-ojG$Z&y;z4 z+Iz~|n$V!eex@&4PjFqHdK8Z7d=jr{G3 zAw7jU&XIj04b={f`*%3iXTyBWieUHsOe+syaVPsOp za&!G9c-8mc@-$ti+>rZVwaAC4>ZSvmk&^V`B>F+wBp8>~4x!!d4)2YW3Xs`1T~uX`d$kP&Vr~467sMiDqn&D2UPDaQ{=r^6#|fdw}~W;9%!OTTGEAFNyD; z@Td||uMvGv)zo3&av%)*d6lJIQa{S!xDq>@!DhQnEATeddTDa-_^Q|(bOuj_*zqtR zT)fVJ>;Vcdnh4)*+-H7Wxbl6mzxj$F{_n+pVAi7hEv#r-J>UY%I6qeicvrr!0g`wA zOuF}eJ*_>MgRfi@{3{F%x%`D3wf?vc9+}CMQJuhucapG;*N@Tt;Lz1U3+sdIbDaP%p1ih-mAthX+q`M*-su?hasF5OTE!V}lU53WL z?W0g(#Lf_(!2OemX=3kbtP<`IPby(^7PsST8?*k*QIZK!b6$?b3XxZV%!S@cf8By~ z$9%D`i-$@wB$kN{jgcW*W)uc>i9CyJOb-4W#I!m4o#_ zzJ1u5K(=RmCGbF`!}`hj_Lha0*n4wO(T7?-#y+5|4068CqD65UV5RzYZSaDw}`(%J(0Bl?n0>zk&i8 zRY6y)&xL+ugaM+-va0@3mXM^_V)pfjBjGL2dQqtTpcgsZvHfuwD3&Ei>PV}y98E#% z`zy2mkDMpOxyq8}psFRX=_<#@owNiEw2*_c)F4bMp?^j_NJ*hUo@i4aH^KV0dx)SR zT=d9Ke|4e_x@=B+AYZ~q=(|w>G}#iBTiuEOi?eeK4|Chr_6i!?Mq{Hf8yk(;#*W9dpd*xd$926+D^(vci6yxc^MTEf=Tb zm0bWj3@P=NNfSI}W-EViT5tbtQKYKJE_!~=k=3kpnY>U>eN1(4wy^@$pD&X0kd*1+=K{Dc^n5Ko**$ioB_0u>@sldcxE9aC{e$0d^ZX+Ft_( zaS77qcgk2+^{|rTDT^Fgaz2?rOG%*@Va1-pG5;lEERjrP6wME98^cVU-7rZQH>Wf= zHBzBNRghZ2^>gmq59^p$=WB3uB-sJ}(0vfq+C5&`X%5vucV7@FB}WQywb9Nizf95^v8!1I5Eq_LruJCx>VXv8ADU(LOm` zbjEtU(RnKIFP0_14@;Ep@l`zv+r?WS!B3eE@^Qv?52bE&ZP>Z*nD^?ld4bwHhU{6UNDYlckm0Y1+@} zAQTH)_sje)*Q6wd9@9LPP3h1fpmFb~n9!MpzU>e40I&*AMuG>i_c_}r%GBX3Vlt`{ zvd^Mbh_V(fdsaxn+BO|gu-{ijOy^8Z>y5PT60aAvNgjF~7uO(oSgR0+mYwMl7$>e- zE2$;XGnz5K3^BLf;a^Krqk7 zIa+9c$E@6M=T0-eA;Eg*$Y!D@$FQ#kA?DClPnygW#(?W@+H*h|jc6isY&PSbslYKw znX9r`9=&&aq~Y1X7qlALHx^=r&qW-REBo}aLD^R&htN?=jmS`SF2d(CZUwP3KFGvG``!`9Z}W$IZ3x_4PzXBi%lu(F1p#9$Jnx|+)3MER{NN0*C~^lX-XT8tu^FSad`+ywHL2*iet6CqThfOHZGaNYI%!*xQpyW z`hD}6_r9km*tkID0gryw4}JJi`XI<99sbM0hbrAH3Qr8T#m)dUl*~zwYI*%?+_Y+V z_Ly7@Z9CHjZ^F`m^Ej18JevCMSFZG}?wuIxQl>H|&~Wq+xSWd&Ed6Ve$s(R!9))?n zTkMO#(@ zSF6uHT$Z<37^jvZ5GlM4dwHZRmT;zYqDHKzYQ4P^cSEQ%uRW$0vr;Ae&RMoXCw#O3 zkGg--5i|Sl$U$bLC2>0)LM*KAJDCh1Rn#f7h=V#3nEYE8d9h=tua;{9Qts~Ho5ErZ}dS2tkbLztX?%LIP`$YOnJ9SUN(}PghG;Xva=_n687M**6 z;%jjR@B>_lj!>?IXbdRa64A>}>w(C`xaAn&Hjq*S&yNWm+u*$Sl9hz7mseget0-B@ zHBGXywSE0objcuuxZVdsA6P~_bX#w)J898mg;3(#D>nQEJnt}IUCMhVw zg|7#If}j8e{mt3_|E8cnhbeKtt0?Hy3+6rNPkI#NKH`rMXvcrbh;~7jMkFUG~U9~$h&CJtHdHO7^-=>|= zNsuUozjL;K}TeG6}M6n)xwrC%Fx zH!V}FX=1J@*&=|$1sA`U9p!QnlpfOBYW)7IOFT*>{6R&OV8h-wRFWyZkgEkXTn)lA zN?8M1D7y7nmmgq$%tP7aW@TVec>1)m$Ai(@UNdTw0=q8xZCmAW@>lF52vg@5yhrMR zziP@274yq(As5qG2?NHdJefU zGkN^$S*gv7tS5WvL9u3(LM1(X8I$fZId_|GpAbUW;{3Q(es%EsHhR za~~3Z|Aqh&qIb~(;YoRqWU-`d^2&Jws>&zwtWu3?nQ2zuSdn;*E-q;Gj_=CaK0;X* zSXu3j@0@LbOHT)Zk|# z18le~Km{5<=c#V|q1oA{?;adQa%K*$adBcL_e*K-+b83GWy~pisVz;y^E`q&GWh}@ z3cB+ss5*3fZHVZmq)Ax=sJ@&1J_LTM0k$y?Y^p+L<#MxUb_2-e{xfWZjU3rH(#iz; zv%vldV}pG21~|D=OHezb@AIuL^c$#iSRlMSGN5{k)Cw}p!a>@N126dCsAFEPlh7=;9I~vFlQQW*1RO_SEyqsY2I00V z=+OfSO;AG^mzjwb=d&&72yvUvy`3X*N5f)eF&@4yuSc4m*D z+`OV(%3tQ&cpjuRS0L*93*}woZkWDhJ$mOvDd8_r7OS9cZaD9HE0pt6$EFe5u&?mm zt&^K->J&%9%@Vuw?14__wIg|t@*3r z>QAX!_d+E015nRGtOjYNqI;($vwTfj*aj(VsoyQOtLRbZNM~slyz3z1)7BBjJg~rO z=Xv;ON|tcyPdkNLsIm?<@}{4b$<|8CCyVd$+QI^2f=-PIQI-kdQnoDaoZWfa)}NDE z9^n78Z6em3C?WvFMfvV;&?x_46&e06E;~be8*3|j!?)|d;=h_DokDR(0?;j_+8#EY zd7pY`p=wjHQcG;KWj4BIYeKTVib*GKWlVvoP4}%_mf)eC0;*Yj%-t_Joax>RC^fK) z1pQy#gGeuEF4|2xoV@OdK2lm6!Fg2`G zvb2U|6*$@{g=5^w8bii&lIYXWaD*Q$cz?ntTMr#qVmyA*Mh?yT^i_F*6Nefuk2px zK~qVY9DSe@Q!GJ~EVgRsQXJeZ?qf>L`kP)&vPY7#L+XBF3{%NG1+7NVAFqSTv)h%( z?3gj`CfOSA<{nFR%?2J#TV=O;y=gD_X-V&c2i&nJ5L7Y?To~0DWBLl?2W?#>{g$Mo zSpwmyXou;m==sSM)x73VYU~&B`<2{-T-$si2L`w_YqpBN=grTl zbT(HI`@B^%OiQZ0K2ycz)Yj7?!9>P(6xx8Kvq8_v*~dC^Z(fO_J1U`$}wYx zKL+r#^_1lyV<$FK8&7s1hndG@Tu~jB$R-2M&TX@nKsEF9(Yo~os@Z3^V0TY*T3;*J z#t(L__=1*!eP6TtmL{<&SORi?Jg8m9$60_yqDrZUmWs~q5HI0Nlk9x3$P0e}54z=a zBG`Z!V&6GY4YpOn6y7ifqAN}af}|%7pna}Hng-DQsnX=Lc2ZZrRdMqpBm~5lP3EP! z#EC$lBi@az$Gqkex(QAz!Iz3QGM1XQnF1$&lc_l~Bj%P&+r>Qu zl{2gfuVKFqTK~Rzcme}&**wO}2R_>&Zg)wceMM6Gs(|B}+MtHTrtW6xb=pYYO0NYB zGM<*ENu{QDwEX^ZhPkzeJw5lK##AnGfjFFf7fIA0MSGjn)UDR9J&cX_i@vRJ+rM7v zF0yFR?i&Ev1tX|@E}Ua*WQ-Y=4OU${O9gM@L)gb+D>68f#F%?{wNX+nnuKoCze481 zPx*PKqnh|Mx-*`}?)B<_HGK@3@Ye(gKRhzGGce_R513ck{+{msnsxr&#Q>=84QoIH zG0-WyPRUCTcZEbcNAz)02=}Un5>5kWz=BEvUqN;`=kb`EluTX05K=t=Qi#-e#Xa3M zZ0T@b>m1 zn%E_r<|((avH4DGcEm&YP;X5ejs=KGSp?FL2~yp}gmHZ<4C+_>r*}PmYxB*!j`!wW z4~|dNh2nnLat!~&yG~y$)mQ>JRX?QT8vrJqvkvMh3pS~QDhz@EjCYAe%lIkH8Uf4U z({L{785z7aM>Vj%U40*eWW^2R)k7X=lMQkkDgBTlRNRZCl}qdEU$(MaYw?ssF&2=5 zc`QFc5``~lqJSsux*uPQ`6VntgQk>sln$8pz^$6|snT;kzsxjnS49Mp|K@#(@q%QS zZ-d>j7M4*HZ$ali?a0fiv|fUT@$++QXiHT7Fc0Dua%%q13h`g5hDKdPdcWA0Hg+xGtV3 zSHjMYD!efBNLZNWv&F>b#tL{vgl8w%$;`TBIDSO?5^^2&#h!kZVOrKJnsXiSqTo;!y8RDKC&voH<#yayjHjd8R& z8XQEHEQ^)Q7QS>;(sTO|a5+1DL$2>T-|YEE!JG9S-w~+l{p8vBIcrXOf`l znj->@Kwlb(xCl?q8LLs0ELP6=T%qwP&C9p362D(Dd5N(lep2UqqX4GooKCtJh7${p zc_7l4s?s$Sedb1?w7y9VD&1O9T5cWUc0RwtmBIL#q%n z`2D@h4VA< zAcxg5c~aj^Y6#eD!Q@v%7X6=wRzPc$NrvmNmo4l&SPZ3M(}pq&Dfn(lH@2= z1RSJQEEaZBye-qR7>2HDM4~b&-BV7qtOeZtNJE0fcg9;VDzGTf8E4O}So)5_i0r6q z*VR?EK84Ld0qZg2VyP$8!xQH)W>DZEO}LavDjKf9wZ477e3rnk<>VbygIjO;wBCwF zy7CX-4=ymST7@l71K^o)?pl-H$vRjD`(LBGAL=+Rl#98WcfYZ+q7E5VWEp**`bH~iV`taC(ae$-JP$v~ zRx~-wA+`n@T(-N9T@Mbf)8;%vbX1LExiIfsZngv#?tysF%Kh7wss&~<)5&if^%e{! zeZ&5p>kr4Gj+yvA&TU5`!cKwTR{yh+lU$*{-~vt|CU6S>CTQ`mKh%Fag@1N+Nw2Dg+*?CgFK&7;;eyY4%_Vj4jXG`sAM%zVV>WFUZQ71P395<5(#k) z@j zmSYg2tP+$A1TA;^6xLmeoX)1Aom~y$Lf|9Wax^mY1ISYjILBP{elL_X$8-xcZ$p*@ zt7M*op|%brLO%~#+D+!-(hU*SC(LXuzmup?hR!FJpd(R!m$Wf5i;zQlPDe`#n?fo< z-NaP2hR#s+^H-+%^pvqV@po7hi#^?3b|=D#0kdpM{P4K4Z3 zF?uYO#Q-Of7C4E*Y(KUQ>1?08Q)O2JtuKb;Zbi%*^~A#)`DPd7vo)LM=aYnW1D2~p zh`teiGU%F$J56*i(Sj{wo;aj3=8s1{B<>_}Dkn|-c$gHUOHaMd4e!vZME!*N9o^}8 zlc$yDQJgLXt=FrNW7d`^E323Kr(Mhoc`U2Zer&dB=CQTWVSeyhvpYyv`DZ)xIyF{| zB(h3fgj?dMGzUy?M*qi7_>(>UqrO(pk0S5{z3xBy^;nKScXHk9*RHnvMK5AJ*4+&9 zH$Hy;>D7tkdWV63=kTk~s+I1>#8jKfEk$mov zGsG(0oQas3!;i-HtoN2Mom`NTM15S`q2L0k8<&f84;*+)AFmjPVM6=hKUaw)Zt?v6YU!2Mr}4fc*!+q#&|mu1)~P)*M%wt z{2C7bTbZKN^v4^R02s|Jl}33sVY(4Q44cV#ua8p1=k%mzo6RlD{q=&dk$6N&t*WDS zOcf46xc6nXAoCbi%DjCHn(AJu)Q@*OHK7Ia!aLrz%IGf&x5*Ov5c(3z7x< z-e*ul=aQ-fj5`OGINKBtgH5xu5 z3_o4%)_@1o{mf%NcTY$Cc}Jxs6?z{~S90q|v zd?m=;UnZcQxl4z>fSe`%e(K_Xlk4WCyRkI@lgimpCmaK*qUuw!H=XGDFDpw*B`-xrkr-tAhA=gx?aG$Qhp!_o<( z8*qHHZ9r^)Ya5D;?G1IY0Ex1D3)^@izMM;(<#LFcP=8=`lS4KBkJAo8#RXN2PU0}qpj@;807KQoQah-!&)SO^)>jNnF?z>I z7&h)S*uN@jiN?r7I^1Og)Y;DHX>X_|#7ajb5#?oMorNO(6U z48AO2G*fj>j2iv$>3lPqqWT<7XXyN+|CF{ACow3x@!ImN1fOic^3D zoyJ^O`0OupwmbgCj=>{jcQ4s&^r12YT)Xa+){3acu`wi`pM(}1L@}b}m2Dmm9*HE! zql_MhKq%M=^m-+riWo&_#f5p}ODh#8Mht09>{n8If8}bw?So;*r57dm3R(Kmv@ymp z;saK=;O&cZA_r59suvix+LW!d3K3rZSLBM0F!i7D^`W~^y8$jw9rd|8le5`IBhb;i zsQ0fn01Gd53wIN|J@n--u_6J1i0DZ`;L-qe^=}3({)fQ-bcg~JmyI_AH;w2qNRi2& zZQvA`SsnVsgb?O2dWr$c51Au}qmT1uubzEu(7p;P2?xN!h_u_xRcSluP}%%n*5+y2 z-r@A?4}%!-%ll?h%wN>^D8P~j0&2%ow(Uz;plRyDbQRFn1m1WQIFrfd-u>VSooHqW z?|rq2hYButID)c5j(giQVt(mUPqZ^tf7HNS~Q^(a(xvnh>`1zLeqobUV97?JHCPq}rEw!8)#JoeZ zU+UMqdW=y%vjAWbO(MA;&HLRp&yq~-9DVDgNJ zAcaN-ZoW+3^}YYEVKOKcm*QnIzYevEcfQhnYexo-oiGfnU+Ckt_*$KLZ>jra^?gpC zpuUKxqjOvtFmBkYOJy>AFw-PF&BaOxE>0eoQJbakN=3J*k!mR)<7Q3dT3NQWIR)Vw z5>DI1Y~*o3x2c!Q(?XtgM z-SbCagAMj)-jti(vl$Y!Vt03!4~00d2)9sTulx~;y#DtsABfAyn#$OOZ6TuZ4I%OHm^1Kw$W|f)t9Q&&_{~4QXv~w|Hgci@Y_1L5W`<|u2V3G(a$a! zZfjzf1|so<{P2>tQT3|>j(eq1S1qyl$^?1yXs`cvR^HZ>QQc`S4+4*?bHL@}|9bs@ zJ1hV0Ui|aY0SxtGA9%nIeZB?fd;~)~w(4G^W+t$RcVf))!;5&qGGJc>!Ob0jT&-FIxWpDeXmpny|KJjX&E#+K zVFC6mH^z`mIFSn0inl8Iah+0KNOq~~_QFaIIt7A}%P_n?#H356yZo}xZs;mK)N^JQ%A_fpnm(AaVfuOr zHK@}tN(EY-Kve0o`H#?9#eK#r@t#+s?*ZafloV~=DK%gIvkQ*?#ACJqR8=jYs{YMr z%zv$_fA$PO8w^y|pi|edPwu}_L-AI`G^6}cS{oK>G&Mc4|qYDs1r9br6>r=>OkQsKDV4utpl=( zpBiSM*$Q*w^nioWB#Pw2XmX>?gbh{~o99#Aju`eniX?!?N(S&)G2WiXL{b1AE1fEg zGAvFI3(P)SIEswgU8=dl=ty~$1|lBHB?B1zGP=$GB68-MW!6^ov)wXme`l-=6p)nHVoyM&YC_CdY;=&-&Uy9gyoDx&MP%q@P6-SXX1=iXPPxYG?G z=kpfPjleV~m}l{bRy{)rTc3_MwFYJ26^w1J3}#1E+B~$Wv{`>Gv{jcg`Rt4Y0I~)b zHgeFWKShZ-s4iR08J*a&w&n_R*R5uaH8^m$u4aX;vXr=owuizDNV3?v@N*B$9rr=% zI>og_n>w}SCwJ-*C)9?Etm?$Vuj}0zrB|HPZp3=9L$q9mhxbK(TY}TM!e1KC6Jccq zyN-S$MC{zg`DuB;*8f5etCwO&qdnBE&!5=$`7V~vEw?yiwSF`>&dRgwz$(}KKaWlA zf?#|QP+SRtrxLFJ<9ziWiwWK?jvT;=aSIc$0~TjUM#F+p0q-U6I|_oW#-u)B)w0Aj z<%>Itb2^6K%)h;t*jZqz3kUxs^?tduhm!@}gU2fdCsNBM%|8lJVT~pCoBGDXj z(gFgJnM7Y^-6hjZs7oSOvGEfO07=glS{oZFrWW9xw zWozGRRxrsV8%48U7&t zdwrk4B`DAohK@pw(vr^7ip&Bpbs$u=sBj1J4J#is z<($BlJ=0@8=1p+pz( zIxWC6I&YuI&LArgG2K`BE))jOEPJ`8r9Ul=+XYVX1)&K;hFoZvN1}mm2*WnWhe0Pi zbe`#Ge0yR>(juva1)a3%ebb!mj=2tB{oEx*w;U{kn8rI7gg_djjElWH)<80$8B zmeq!pA_-?GTjb#_1$JH&w&s~)_)A3n`lR&jx7{^gBh%4Y+@qUnq6ALNhFe^@;9xHk;@VMv?q>ZlYsW=E%NbyY@h7kwvc`? zv~slk9UH0e&zbEA8HmcR2HYMoY;#V>gwRAwc7JWIAPRig$bmP%x@5Xjs|v-%`T4n! zmQO+N-HC3@%}JYD$8tj}WqrPv!DI$_qT4&}+!W9{6x)-~1gr~mi?Tprm=3I%(K#ii z+vxE+h6A ze4C@cQXvSwd5jpP*cf6ff0((m5_~GcS~1vS0@mqdt;2APOrK={v%V6T12J z+I?*s)2xs45Hskx^NO=Y^-gg+{TVQ^nUzKipPd>QD$!Jqe+FGFwGWLwr2AZ3ue!^& zayYj+yS_1=A@gHGzU2^PTGn+sTZn=Eka;GrHPe3Pa$LD3rKyc<+jMY)@IPxhr1>`J z+wK`Gz;?m#_iDPe4G`gX_{Uzie=b0RbO-AA5wHLWDevQ_Z&u+fduC%35=JC(2eGw> zSSJm);*w#!2Cx+8cPlNoCoF*zD!*8qJ7*gR!>N|q7Imv37x5)nxe+hzK+Kin9P4ki z3P<9ue&K-JTEaqa`HT@CSECF)mq@Z8&_ERkg0>5(dAs8L0`+gNO;;VG)-rZEm_9tq?~&<|+464tc2nH$gEbk20C& zbzF`A1dj)zxzjj?$fx=V&bt-e&;2~pn5Ce1(&X{yAX(h+o>6&U zr3+)NC_ujqBz>fG$ZZ|lG{LFKwioQX=VH=0n)Z@+*hFvEz2KZN8ci#;OXlX-hVU>N z-;Br|hB8Fo9Y~^parsO>)Kn;SDq-p07n!(>3p0u}aNic7E{%4Y?mbgV=0SK7$NZIE z%^EUITeGw(Xjl|`n?0?myZ&?6@bIO8!sf#&Lpe92J6{+*@q0`?(x|Vh5MaVXU8e2o z{Q&BalAb zgG{YBEn?nO39VVU-Ord{Dg?*5RRo6IaK?@f?);?at}f%BumF4EzDmZ2c=5_s8tt zvFDF{ekPj`I8SC3ppj6PDbd_vdZ)1??wuNLM-f34iU$l6~@If&4 zF7iTGh_#L0U90qkSBqkgcTH!7W^8uyu8UKlWnsM@Z5sXE=pOXL9E#BjKB2yx5hi-Z zLGxTfb9I-ZF5wS_dzFh~CoH}%o_55YX!V-;35!;{7~u}k?ChhE0x7(_yJr<nd6wl(fzyK&E`97*{7mY07uB0O{8mRSKpZUclY`u|x} z|BI0Syk`FE4Rja~^Bo{&pB%6tkU=(w&I(`J$!ZnN3rbFPm8&>J+Nnbq^kC{_V>`B?4jIze@Ve!Go@~5u$-i+i+dsW|iwuI2i%o#>o%_5)B)RSn zG~HkvS2U}yc#tF`1iLn0xGzIySUX1H$6~Thh%w!QF(hrlsSY~m;bW~cbm(t>0nKuk zK=lvsY{sG78phl!hhNO_y0d&1Cs6Q2X3vd_34LeuuyxlPkh|2;` z(b-_{^DLA@HW8WeY+;URf7>mEx?5UWvQYDt@Ef4VJYrGtvQE9-?MX?bj1uf&=xmMm zYeo5~u8o(?tgKy|_?TMds1X6D$ZZ)y9E|5kw1M%G@3$7^ZN^Y)TBYDF;C1TWgJ}59 zi;qt7B%zMsy}<^=u#R(?jl2#%e27|jv4oz`)QXEurtpAAS!@H;(_%YKd*>(rOp~Q= zG*(1{IC1AnI^qwspZ7gtd;Pc4{5D(T zVGFtH2AabHpgH`Tna_Wf=6_2A|Cf21?#FQWKIY0OZDeH@hB*LUTWq(g$4*Yib;raaau{O;HuX_DqValPIixv znF#K&EG9;HFuDa~He>`dx>q_(sF-tuJE}&++Awq(c3d;rPW3gy?ap3EX8=xSx|enE zSnNR~xod51dN_4AM+3tu+f$kD#agZ?wV|~}1`|hRF{}p@-HdwT{K!wJEcbNs*tPe^ zr7{rBKopp(;fz{`D#X^zMH(ZWv|z(Qso!MmLCj1i{wsU*ca|UQ?GU{a4WA{g{cg^% z@(ghv)Z8L-!?(4b*O5)w5p3CF=@XE38*ssCtlb)Ylfa{C5btP}ce{vJJEXii;xnOt z;8wG4*&W#a%(3zM{7SYUV2qJBfw)0-YtjtD5V~sY&VOOQkwu}&3Itr}If_f(>&=#} z|FXfoZsg*LWS6nG!h%eodKvbBC$Ur>p?vI#kh^7I8sqs$Ip7p8WIZjB*WY(b!0OwT z_-m?kL^V8m9vtJ;3G1k{UQFS7q`NG+TLax7qnu~AxQ?{7Mzq6o@*}O?$Gw;vHJFp< z5*QW)sXggXaIfI1mkXA>cTd82U~dg%bphEUE-a!!dGIe364v4{8jcxLGq%tx$p9R9 zW^{sD-p}&syd&#vmp8~6a)DWj+4&tOx)d^z2(>(d#4RD8)p8i!!nvDN6F;V+AcSpO zBI68ll!W1h|5k|CjTE)n^O%~YY`|*Lm*@sO9?usg72$t1y5ucO5s5cc9~a+Ua}PHq z{+^u0@L|o~-u?rh&*8#Ya(dV!))I=jsX-)8BqDb$KDsTcdrv8Yrr6_^D7^V*!M)abnN=em_`rif`gN#3Kh)Sv@^)`qTN- zA^be*gyz*rp+wL6Fdpf5sq!@?6oiVk7W+3*`0}MzQE`JBlKs3d@=4H|XFl(Zr>0uW za%KCs%SNEN*Ak-5xdd9-@C_^+x!N0|eD_nt=`hCOkX2v!DxcUXhmcv+ZBJl6;@NVQ zIaPnzI9}rkwvH`iA7-BnAwq2QJV`(|bNik_GiXX=cCo8qc1p5L=ldto`(dM)iuso)0W&$UnedOL2mg-WgF)z{Mu8Mo4w$NiGO7H-`q#G+ z{qf_m_34}}n?$^VvL50mi}sY;o%>?~Ayew?w9B=_NyHwe^tMHzVS1UC+ME>ky(F;Y zkO>@PGr7ll) z^rXfmm=xj+7GhoXl!OsrI4Wm0w@u$thJrUEr4nY*w30YlMOb_9Vjn(Yyrv9+gFCG~ z(quK}yCFsCD!weGZ<&|5p3V?Z-QoC7&aXF(SX{_cID;jzI>TnFS5ItoW%enjUewpl zpxAh;WKH2m-n;-M^J;g1QhyGmg~7gsaIG8>_9u_?=% zRqjL!7w!!qgDkiWm~bGZ!_u^q-$D&l3C2}lI-$RY9ADM{dv z9@Y`AR)_kPg6oK^6JKFhYift?-Z-xAC5!k}mIZ_t9}L4KiZ7j{+?PfUP&>9PV*1GE zP*z2DDgvY%X$0--P>^5CMULF-E4Po@>H4+sy$9)3W615$@S3-ZFTX}JEm<6QYA@;A z=%=HiQL5QUFojg6!J+SX2%c(cetL449Bf5h&7S#*!19aX1%;M*nsSt_yFeXZk?B4v z8^J8&CB2EtHk`U$c=s%|n53o1P2c5MeM>oli|)j-BdZ(!J+bR^r~6BR0vO5MNByFXv|-~;7ffqp+B4Q)1oLsJSIn!owZ{67xOKigDoxkW}a z&(X?8zu@{JN7r;}CTJ#j;&NQj`q_RND+Rs%MJn|&YGb${ks5xW;+fP!|Fr-?mI5Q`_ z;{+&HYEl|f;NYkqt-`G>aeMmDkgXYlnxQUf4>gsH3w9^T+YrvfT1vj z7J!2z!;=$65dM*Zb{y+yYyJ^|zcj+?TQ!S9pUInJ7SA1WeC!NgdLVG9rYvSj<8DT; z8Odx;%J|XNopHb?GdDMv`@(VpV=qht%qpoQ8MnN)aN>bua3hp39nCn7{3pDhiXC*h zRjU>vR|N4&9rj6t#FQkiAJ53Ax0OFzs2s)ocVp5h$szC9iGD$Y8z&^?ovjrQNRFMC z%B`Q|N_L}HRts!@V_Rr|Tl-+Sj%uwD+AR*DA2uu~KXTL<{#%+8MIUb5V25sB;XXG0 zojU&jd6UB+My}%FP~xq;>BwBJ*h-Qlmr+ zLQ|%;#yo8Z>>)aPUy>QK*cmHnP?tDKj8=44&ThU%yTgffo6S+(7G16gh|xG`wfmkf zm7m!@LwI>VEEbw3wPDGAGhFO&nfKP!z6Ms}y3&8Oab0PkEG15dLtMI^S1pgZkv$=7 zDn9;Al#uutf*`|Lx zcA`WK1<(TGd}eTgJA%qd>0?@GXfgYx^ysrlMX*4O%!)0Km}V% z0vhDaN%vhS6Ztlc5}>_~QAa^6Vd%Ct^Wzzxp;pVi(Oy9dm>w`O-e|9qmf{kkXvCD2 z`qKt@3!6~r)OjjJV+FXi$tyDJC5{gW0OULkYO2@Sxz(^l5SI1un~tSCLoHL=6-0vt zMJ-4H2M-L6wLcN-ehBlGnhU3{M6b>lzDFRsG_i+cCY9J6p@l9T#;@yy#F}!dBct6< zDgiT47Dzbs&5m8PVK~e~visN}<+mOa7Rh$@%)u?R6H~uw%rVs8(X8^ zMaE$Fiupp=3+h?|Bk3RXCb@>pXFAAu#9k@M{p1qQcw9T8UOd_SLuaqBp=CZBiIpW0 z<_NtYc+JhkH1M~3roEux?y3o9!jfra7GfB3`iF-Hiy2Y3cqj2$EPj(1{d@|?L6vD0^NFRx@WEN=LQ5C1S=k=o6(LFFKPEml@|5rjmorQ(w+j9F*K!Sg> zeE$y#{#m~NHMJimCbW42Twu#Ps3Gg@2UP%}O%t(FTGzPr8JdSxF^SMk2h9c{$10fv zV0J%FLdk+zqET0o-YzG~=>1*DK(%>4qR0t>ya$af2iV~@@o9x+fsvy2*P4PP)E_(C zE+WkM!$A{75Xv`9I*yUp4qNoOfV_j}8Ua2OI%DMcYPF3{t&_Z&kTi1+lz=UM3wbV4 zG>KACOrCtMC3_4mRl@pJ)>*CP_Y$TK@O5NT+M*ROF_G%>b)$7w$jVtL3|sSZZt6818V z4a@hrYx0hO+wGAuuzL3j896d*5_M)0ah%xe9sgI>GVU$wm(MSFf%de-qk$;&qZAm1 zDP6R@Cx(u>=miw!i09Uy@h-m4KZAWp$mn_kyPK-PG+Tri-s(Bc^0Vd`et6;SEROmu zWzC>yZFiumU3tvOi%Ch$M>qNDFKN!%U$X&ZfFO|oK??u937CzpgTBfC+#~vrjSz1c zJD@PiZyvH)?qe5!B#L zTT^a%6#Hd}9UbSJ?anz(A5xfm^ z@vFpB9+h{B=rG0(K%tiibicRp*DK!na{OpChE%vs4jPgh!jEA>kQ6G*0}Vrd`W#$5 zUi$?Is>_p9cKJIkoAkJF2ba#I0K)WX05R#ec5cN4+WNXZB23H5Ox*YUK(x~~1^~Z< zW|A&05>s|_)f_nwwWiksj|~xW{A^D}q>4h8oC-;HZ_&EaTZEdOGkgmdSagw36~Hi8 zyV0W^Swl%J*Qvo^!6-bMZgP`=^NUCaYl^fiWf2b?&geEpC=Py{OfEt50k^#PBIWr1 zW9=)$;@q;Vg9UdBF2SL2C%9{HcY?dSI|O%kC&As_-Q6ufaJR40J$L%vJKgi$nV$2I zryxJhs{Ph_Pn~z4z1K2K?fAZ#`I1B;hgk}?0g5V6GNCw=z194Ff}}jJiibBPen=nU zqM@G)%?y9PHZ1s4y+vF6Gh{`_eK?fybevntT^xwjhoFgEpbisA?QRdJSi4XQZX^je zX;t}#h;dSu0O0kKeSUCjuy+cd9M5hPsL1a8t*0CVUb95(Z3{-NEv7}(6dNG#@wGk+=fugv?TeLk=4=?|m zwIk7Ke{e*|5|YmRAv!X`4jd#-`Ea`di^Rs5IWq<_&3H8K<>M*aA5XVT;PK4?KpGMP zY4{gitp9r&{?|ov=ueAe`QJO+X`15yzDTNt?-Z`c?D5wh4h#$!M-nkL&F(eZ_H7$5 z2lcf;#A&4goxSjJrE0J&3`P1=yKVnow}9Fx55xJ(ki?<))7EkYqo5^2u*iYfCIZyT z*cxRCPU}+I z8AbR8+nM$b*yX835I{R6K&n0{G*e|9G}y4d!;f1)gv1#vI<#|&40I?`a{xBBlLKau zZcpRxSa_)h6=l`_!=dQ)hY_S&)dNC(xqz@-JkW!{1Cy4^A`pXAxp)merEq;quxD=u zfkQ*MlL0$ooPvTI&P->7JQM~<#ax8uAB@qG8q`yTzo-~_KqrvFYZEugPJaNwa_~cSBq)#VO0gen8&K5f=1A(UyXuR{(ucsc0J%5f% zVk;FiE~R|_sc9fFtLXXL=K=Z)ZjaO^a=MGAR%@bw>j!c>tuO;9pxA9Sp7XfIb-ddIsi3rWO`D_6~Xuj`li# z&sF?gWc2L?W~RMOg^B|43CVuT*6qA-&v2o=S`5cS92>n?F5_ zxlimUP*@g7T>AOvYT4szYjq7KerW{}nc)HxS@1ZlR2GmA=yzx^|k}o^h#Zw&Fa&I(5Z>9*7mpsso z6v6f;8W~7M=XE*qH#p;e(gTeogE(jB;7F+f%bKh_+1fc4BQlIQAToOu9tZ)smg;ot-I7ZjQ~lp zEC!X@)p+_Rl@o?78nYyKj`+wbS8=&87Wq`{u<2r4g8ZnfAZa77gTu%CcEUq-8xoVF z(<)9WG-4aEhOkb#p7lcoVf@RAzX1#Se5EQy-m^Y~L-8>~dIq-@3CnkHo{}=bU}lfE zwg@78yio3$%$*275dE_#%MCUEffmn!8;w6(l4^~u$s_;?e+DGH=>GxXe_MiqMlk;% zJ!u)RH&+oRhcMrdD#T5TqooE1v!V@e1sY@un4nt^5TZ&yCsJRTuwHj(;s~5plxI6w zpNp$lqLkvXWLR2t(1;xy?yAJ?`bIOPs=&olH2!NpfNLbd|F>Ry^Kv_{C&9#Gfbyne zAh=bajeE@^-od#~<3=Mnq`ati{4Hn1x`z9hSo8I3#e4aSXhSw4Fd)_&1k?f zYNZ4l>9V}7?$x9V1Ly7XX%7?&WG^|~AeZd!5rBpPKoKp)ZgtgcjAgBm%PONjL>YGL zr4|*d559S(?^|VLWH3%Tg_&vG*%w15YC;}J8<*v6Ie#_VYaB`)%+c;5@t-h7L=neE zu=Yle!8nps7x!5BZKl88>yn@+57%XD3lf!4f{WKI8Cru{(fR^XNR@5)3X-nywDZ$@=Edz=z&*BO{8@HgJWMHsaUZ& zEp3zaT~yl%Ne%L*;%k`k=i~v8^(!*A)^4>7@L}knt2j{V9;K)zq z?-g9Ikiw{>AgwWWFC3rWO9}AswcREFwmDbg7_S?e+Sofg41y z$#Jh5wr`swrE^SC2+Hu@$WrwIF@KZ;bwjW7jd4l3VHa%*&{&!U@%GQX-GIWgklLD zz+lMZI4;M8-=XL6JlP?KPyjQ{%b=~|$5b4et<#nZe;IMFjCdCCS?jbQzGOvmCK+~4 zVY66)da?ebx%2U<(K8@q@O^lLNZT`>)(wfoQL{2k;(3fu`OyoGOqLajGm6fkts$xo-X9tA+TZWN<|7D0nxoawp; z=NM&3m9%$TUY|A>73XeoGxpkfBA^5bXy6*zU-IKl0%`cMfg3K`{yJMx8y5@6x{8XJJ zIF*{`&#LLnZCL&Z&OcBfiU$2ojpk=EJtNy;f9;v?)iM(6-K43Gn85+SQV_AO;)~&2 z0>y-OvHbnU)>P>}bUswXE#$%y?epSbHw>N^QucY{Tt^)shIMryCg?MSj#lmJSa0Zdm_;vvzYP^V2#Q(+{h!aH$ND*dzin)erXCm){oS zlDtR>jfS)rlE`Kz6Hpw60>)wkM}&n;Mj{sOA!t*|5<~Pe9BwV;zcHu|YYRYOEe}`U zs{O#ANLEtA^}x<1w%czlFq`4Xo`ZJPGuQG%`J$=O3zC82=qu%leOA!$-Gd`WGk5nq zQiqaf*|@q@-)3$dg0&!1GL4M)iKN{wuN0G|)UkKOd}|hcK0|7iQ6W^yYOpn(h#aJL zwOT^_oPT=eVUr4HRLT{<076p-EvJ`*Ygv#~p9#Bc;A?s{=FKb0Hb{pfKxhhEVGza% z%sA$uHXzWaKMjBafruqY?F5;%`Rsr_qYcQp^whrz;`^E-S=DvxOGF-N<0{FixgPZ< zDl2mfMV6I8`Ge}-QTrHIWPCs{hATay$CGQS%d8t#DJe-yHJ<%-?o~c(E+v*X4kkIW= zwxRh=CDlmeQ0O7ldjeQZ63^Wf&ubm_D>#@N$ivvhw;pQQ{D zgXEDhk;adTbM>Xjeoe(f;u*9G+!IckQ~{ZBS(UuvCO$4f2uf=qt7)^fMNQ#SbgZQa zstyk>HZNoaAWAwa7ZDZcLMV~$Vz9l^S%Y-2$P3uA$}+Uv_S0Zuch%P~R8_eGp9D>2 z%ndYy_cjOGIj48@$-{AJ2GAZrUn5mi%*D{dP(U*d6m#H5u;+7%Z|9y-7_FDD7`=(> zswR5tD6E9BM*YZIb{cX{%d=m=iH=>sTjHt~5yT*DHW`w>8y={UeI4aDR2kLI8?M&Fn0Uzw83d4%07 z;^f1UmjvM{N>c?JW?>FA@dIF_K$)5@x4obAQ!3wdxgg$QC!7ptSf8^#G6%?P3h!3g zS4NGMG`osy)3HA7g89SD9W41Zr5w@gNQSX zxMKTJ$3)>n!}a*7w9#O;rjMBFJ6$}wRwG{7K|D^v0xqA8=PXwAqgck*mWyfK5aAz0 zxCk$?E9~wh2*tmYoe9yqz6-bxo zp*Ft+sG`Z6C0qbi!6ZRG~7wd@RoZjDa&5&IA3|g@j@Tg;s1g3I4x2aIQg5zXOD!7rvhL{}FT z^UhizPQV*EmC|0?1%Yfxuu={p-+p{YIB_cy86OCVn9E(HIV3tORQ$L~ zn?PlvEH2pV;vby4e0$s~J7{jk6e;nU`F0Ort0UljE3Q`BN9MVq{V714ZWUFi?_(|N zKDjp_mWsfXf^|*0Z{qADtQ-2OmQU>~F_ghh!iW^yRtgt}CN^&7_U2dC*wZ|P&5q|Y z_3$qpYb#$iBK6z(#hz6&9Xw3JhBv&{GM!^=Xd~!ju4lEj^Uny(zd6|NUELdyrN8pN zpmOAKd3zCj&NyX)UoaUCq;;+OevhGKEfY82+*v%AWwbK_{@7!qN;RVXcx{sK`tyMc zN$X>_m-mfDrS@^R7PIbc5i&3T(T?Kq`gkRyI~&JP<+lVQz95^0U`Nq+L|Hr=5;so$ z)J-sK7&XrD)j#D)Y`OMlUQhcSI2zCSSinb@^a;^K%!@>+=D+Y)UroB~Ae}X|d?vOC zDV!o5vP}L7cfd*l0>1lkzJJf)Q)`^d2^T5eh=MbwgMa=MzTT%*!)pjFSUi?@ZcNul266zpwO>ItD68jYhE{JoLY;A0go|(Vc2*-LK^_ z?6Zv(iP{ymt(;7OA1-C?AH!_*jaW)I^y|RRo$0VVefHxfYTz&$P#Lf%L$Jg?qc7O= z_ey?E9dF~uXjf1gUgVIs;26vkwstp3a(@zE_t4EFwBTT#kL{K_e+fN<^d~ECdlJes zH?MKppc~?^{$kzXeSf|-DgOQJ3prQ+!=}MRb;4{9l9lH&Wwuu9fLCZcI(%V39@h5P z2)2bQZSQ7WuRw|C(;NyWxKL!)YWV)NDuF$+5`J`ZGuRF_QG^%P#>A>auXFaN2(dE< zXy&S+)n&O2DeR_sEU;&Pi86EXzytoLrB6rg0PYYg2%{|W-#3{W0SncY!EmW{yezJDZf8zEsomD)bY?d^ z-ZVV^=Q$pe6RFv|SnGOhj3t!yODP!AdF%y40Lh%DBDhRAXn8c~5Lz4?4SDfXka4*@ zO>p6G3V560`R%i3i_|8b!5XG#k*|t!VdD135oR$WW?=h;WMG^C^s{!eg0U!u_PA~j zRgmm?_VLrZ?QMPNq6iF3DO2+MWoQ`F$qY-=Iz1Q(H$*JU@*62J)5vxs4Y!^^aP>W# zk*PNG_kny|9+nJ7{kSS7BGo@#E*<@OcSwU&1!vAZ>JxJV%wN?gZaw29u4+bG*8 zAHlkXXU>D}Fxzhj)S{4f1Au~aBQT|Ctp(_7l_&|?l2fy1spbjd+G&-gS?2rSl>ohU zO~HnYV9%omR~<#~bKOap%2H<)r%@PTnJ#R`#{7oRTh-yV&*0sHU~*cE=RN!{Z@qUc z{8XLQ$2a*P8`uH&_d_-J7pPYXl1@EK00suxRBR4) zW*Xln)JIyR)VSMB%~_y2x483z5reV0n1Z%#Mj>op*v)XB`h!h{AN{xY>jwC$sQU)Y z;y+$EF33b$GRR=Al|=-)KqxTq+0fv+BkUB`qdGaP;aHz0-Lu4l>Y5MpH6qY0q~wb} z4IqK1SYk4!TB?N=)}r+dwW3sMrR>P$)l$p=^2BU^?2^k>p^Le>Uw#Cj@$k6KCJ6q> zzIVHHb}Wq_WG9yI{Mk4yw(Gz1bVAwk!(L4MtZHI+-j{^Jrm_I$fKHt5+nG5A6g6NV zQ3OPcu>1zvfa?;K6_P<}vvt_j=w)7`^jmN{J)fnp!Y;6gs;EgCUVZHj(+IwVAt2@f z`khNA{+bHtYnQJ{O6EStJRs4=$IRkXJ)~RH!4I@KCZW2Uqv1u+jrhHKh*=&xE9~m2 z78DBiS-=4KS5$Iep=w9FIk|5WmJ?sw9DNgrFQjf(S-uLfM~d{HHa+wyA@LswfRcHF zxVjeQCAS+_tB;U%QcCZ-f8!N-2|Zyg)K0MLQ`CWpUYw8DY>Sm2RDPY)>ZiFqxK{Xx zMafn`=1H`OtK5r>n=2>$lRo?s)0^DTWRkD zcnZgH#zipY26qGMSr$V?N6-A9twMO5$W z9Ki)HOP0w~xj1^Ss6@^I@*Fq(!`sz6I?%PHcA#BIziRJU6&a0UuQq1T&iVOHl!PKL zUwwf*!>PzkaZUe%-VE_6-w_?r4cwOy$7mE(!k^pneKLSsGlmJR-CE6Lx!7dh&ln?y zF3%wtcLai|oNU|<#mu#s)m2z#ROx&0pPvgLjYXJv>{H`Ze#T>5bzxn}#jT59$$d37 zx+emh<7M-+K8PY^Sgro}3DI;g$|_pqd{%b0qHTE86#wFTwk3Ni>BogIviDr(DN+)7(Xi=+X6n{^S*>=Vx(@N15K;=RYPJKG$f+&jH(HKgs|9I{^NXSfKm! z*TkQ{88nZrSJ+YBGCTZiU{xtC>Q-71VRf_!P42?pomxeot|w*7VujW>B?#jQ?^T7b zZ+P_-QAosO%pT2%#5m?}*|4WCSP!0n#aDmD7;yz)%w!?rXCIC8be=#^S8!;32M?PT zybdZ%SF#}5k5p|73lM7@of$AVsgEP>XiAO^plGXYW@Ue>caO^_kiCv@v zb=wPB1$0VaDn9*1T;7-602J^6Ql_a86z1OZn=!XbcJBz3daR!h1^v`R9l5@PTS%l? zmy9?m^A@%AU}OBxJ{U|%`5cyZ5z6oAck#BgMLgux9{gCMjf0b|)N5+4sWT6^XO*!~JT!xL8PNBlMb;rao zo}@OLSUfjuH#{`POn;X9VwTzT8~&|!RWtzyqs*w=evt6_d<3{(kR;!(^t&&w4weF+ z*Z3A19{JeYuqo3Xr^|VY5<+ml6$J0?I0&O;W2En0$#oU}7=l8(^iA~hBm|mxC?jQ; zQ+Le|h3P`YCb$k>>^*O=S8N{ViH?JzaJSgv)NohugF@-gdr!)9L|;Ohk~Riq1!kAP zMCcMmhiVT;EQR#dK+t>F2t5mssyha~RPF%LYNK=z-MCI$(70TD`W)h+& ziF4U^MR8c1zK&u5SoPUu;W=2-q4L3sIz&FSelbh*vN9vLB8q60+17Uwggu%*$b+Mb z2b*LAuc{As;qQV;Ni-OWzq7%fVn$}NLN zF#(Zd4(ua*j)cAqH$)Bg{dT5>OnJu=$i|9$pNo{zYxLFRWFcBD^Y1<}+4pY2$C9SF8-1sl){{QRlre2ouJ{1vutXAfaK?RlL|SYk9Y~AZS;IRR%hx}o zXz3iC7ny@`!9ECY@{IEG`C#hC4zS(NQD@!H8PLxSS8!u&?2P+7jtV&wrkMGODIwPQ z%zG={R)hT6E&-(=)mTGnk@xb!ofo6&jFH(79aVet6XgZU31{s0SiZG$qOZ1IRM7F9jl>E!>mzw|11Go=iA-m(k88=*m!@Zg3s9J z4L<^E_|C$FrcwXwn*nd-@_S4Pm1GqmlYABg%Xw-v{cvb0xwvG))XDO)SbV+jg~w*4 z!7^i$lw;TZQ263PNFxNi!ok5gANT_{K51ztZQ_uaA)Z{`)ZAAF-jt|BX0}h}xdWsS z!$iKhitv-pnZNq}w52johy`mcGi0#Ukh{4r!Q-Vk>1>^MecHHv`f9z5;-;KG$O*0L zWx>sAJvXlFL=1|U=CFE5|G{$Fo?cT1(^2uueyW2bOU%63xm&j4sgM(wGhC?BtWs`t z?J5D^oAKwYPp%7V9}`9=b+N-ZZ{B*x&<3;ZJrx`qlMp8*5qTU+W0lAB^(G@YKEYIP zFP`{u?NJJCT zQN@kToGG#9T-W{_KUol=NcoW791K3ZlWEBYw+ZS{bPF;0#erKoT;7=#`&+f`9oDp(Pyr)G#fhGjooO-9d3$ zR9^`BnJ0hzaEHGo$x(q;YVJKMfCE#uSu(x0Q1caRO0;QND_XRR5+$mo?c8XX?rW$u=r?@Tz}`8a zjc0kUe!}5S6!?{4oAMSkqY?E?M1s!%R{mtA5ros!piw|f7J`53qd}HQy$Cakm{IAp z$91tvWsm>5y^(I{cvLzVj|y% zeVYtP%syM8bX)Gv3kDU=qkYtna|D?{irnzoat_}(3t4jxTw&9_)!4Z?t$H->J#y|l z)IsFgfJxiHOG4DY#N$6-={Z~DKYPbBlCe&+=n=_RST6>WH-0k3PVu3??eaS3#EWo^ zl9E^lJj+$mKI>iB3*)8&{l!j)G|RbMt^s6J92(90ZJeD@1kxYinBX7Yj~OX4iRW%` z?6i{CwhFJI(VFN8dA<^xWi8yfzGzGwAJCX%LtbLmS$R^Eq6xQ0viA30zzQSh=PSIp zsq6`>d8@llIoD2VnBP+^Iqos|D!yI2)A81)UL08(JK$w1tR+9yQ{k&51*koTCw$!R z-+2a9G??s}BPO-c0a&}&Slinj(RdQKkPqlr!#Um5Qo=wMTOJLxna2)cUX|+FkdmkR z{A}LBWJ^+=1@P9c@c=I1-(yNJqt^~fdV(y?rL*@GKdQq^(isP7t--Ihjc;L`w&g6o z^wgH^K}(ca!D*Z+f%?8UcK4DTsw1*AG#s1ad6sm zWC5v*Tyfw17`Ns7O?~PGTBHDUYm`Tf5cYfWYCIW@h|KG2>S{FvuQh{mS8Z_36LriW z!HT3Ae!yI2cxntHH(BPJj1}XMIDII_R=?B4&s4*CrTP*fNt)?7W3wRs=ck>1sw@1F z`b?JFc(X9G>`%u#b}g|dLU#9E)YUH#e!w3b?5(HUyY?5$rqh)T;BVXw9q!aw7krWH zY6BWF7pHfv9d}N5DjV*J6KC*(>_|jgAC?}IU&1qT%_;BtdfHtUF%h4(x7yEok4&yC zHN)Mh5R2X((2b4>Zi*K_OmLG0?jOI3qW-A(;vs0v^7+*CnvqlUzf0j#-%qUGdV! zg}mJi2Tnr@Ubm2$`!&4ht9`!4KBLa_x%a$(d~jHN>K#G^=9f@_=9s{cE$Q=wfr3P!-gFsrOEHdgkk!60ljzJ2Zyy>zXaR;?^ZL*!PJKE!vZMQ3!U1Kh*&JuQ&(P_sP?^8=&BJ1}!%hodt|q~86K`Kob+TMrfh zVR4DTYcusLY#8kvFa#Spo8oKq6@&abzDy$o8PjlzsWpKyqndJEi5Olpn-YbXMm9~l zIIJ#Xo~%1jA%_YFqo}x4apl<2RLNGgI3j(!NJ;_5SF1@uG^mSQ^(*-8(~15g68$xC zjzBQ1Puu028+>HDxLxy-m?Ac;NJCqcIp?$C7kEA33!m0}6%XYFUhU}m+2VGuKA(kR zkljR-Y;!MYBza&qA|?W@jK6gacSUJq&cAo{w0ksiv@?61Lvg~rowdnkW@1-nj*e~u zdqMNruN@0CSlf$CcNAwPuvd*^-a}t7#ipc~uezhUbr=AVz94iPty9v&|0u3NFp;9d zzdOiDJ2aAbzX1jsRD;l8_#u<;I~*RhL_!uT{8$j=D;F zBelaxHq!Kku^@L!CUZ`bhgphT9|?xDIJeHy+ppYhX{p3-aaOo)6{x0C&SzQK9FC%L znWX&gSFyv1n6~<5aE_?TVc(irGx zjD{L=^yNp;Yb|MA)#FQsQxKEgtTSGrH5!}P@@EpY)%whvo-p-L6P`@YD;LHP{c1io z%n?1PWP;@CUDZPq4Gr{W@H(Ps~{%uf(UAW;-|>V}jrE-*<; zv&8ES<$awn`}!Jr{A?vxs3UaXO9;d%CyL^6ZT9t)N)u4ET&K_{v{Gxojs^y$zRBe6 z*`4&8XumGvTAGy$h6MScw&}UhFnvqJZ~?KXWEiVvUDI+Eq_ zQUB!O)=1OygCR))LWyVT!~Vqv=fpFqIT&X*aU^*{Gp_iPCnE~melE1|y7H$zDpqJn zWu7Wea{tmgXJb%)a^#ze*a_oq67dPKrj#)7#MJ!14Mx)}c8*dYo#kBq}Qnh0vx2Dk(n6}gi zfGEjRC@W&Ors{3cj)O>E|v#*ss|z> zNGO^#qN@AS>N*d$s?vFWa30kKaFAX&*N#59O`ZtfejU}dZNnyuaUZMU;`9mA5JN_1 zuSKwL#QYvc+10O zliwKC=uc4jtmZ17R*akUDiWd#yYvZY@PaRJCR500?=O(C!i8Nxz-C59Oc_6#(Vt(I z-BOx|$!~~GPb6b>t2)E{K*B>3+tZmhM^?Jwc?$PITwTFEUBw?Ga<67tNRf7WStXmr zj~m||UkPPPLO$4GKf72yY$I%)2yvBg!}kPaD)J{BiEy06i=|D2#=r-y6w;XPieYU_ zmNyB@3k1m^&9km^p24ipzKr9$Rp%pHPV;eI+w!76tR>SB3-yuxRCIG%E++*th^)Jr8xxEd?Hqm0ByxAGEuPXV2|(2p7!_0f zeS^?1*5`fMfPMs)qG1880{>HyvCx|E8RQw%kXW5whP(rkB&C68>c3Ws<$8L(qu$i zUn4}yQUUlls~ty`5~aw#ND*Hm;O40WSbe2}L-iZ+qe-TrQuZ0JkolRt`-c2#=|V)) z-VVp!jD!(I2hrY&c0UY;`3cNa(6TKfPUBkyr@+sNkq2(mk!z3~j>S=%)5ciS!hFFz z1?Op>pEGo2pUZ9*60)FptMrj~4LB6=So=AQI!E^7tc_A&t1>8|XzsC2)UqsIU3}y_ z&_6K^m$rp7kv=O938~gTD-bdn)-sOHT)fL0ey5B6lc^TrtCI4=Q}p9cBWKY7(T%o^ zah?gbyQ>>2*7+&ymPy~U=%!jmz(!Q*lBbQ#ig<^PjdQV6rrO(W6XT@uD;Ck6Nrlub zMWLe>o7D%5csBtEF}~qJ#DP;gE3HR|cNF4up`zmHt>+TM^Y#_>s36MVsmV+O(;u}T zmAmL=nqQd}g@`msl6z;{Ub~AWRyO5H6~K6@tg`Dm+|63#k~<}*pIGpE{rO6ml+<5T zqu0mKFdG5_`@Ase^Y6$!I+|0+F4*yjH;IJwsELv}UU2kmqG;YONeDpY7^$0h0r%s& zi2Mp%Zzd}4j4pVjc@$Ve%bhVjsNcMQr@Z@%UD^aaj8MSMDp2m`-(#19wT+I2p_8En zt%Hk$WH}W;Vh{A)KQ_p}ux{6;+jW3AR=|J%Y3KaEVX}&tu&@;DgqZZ$6ucyWYJ7B} zMxK6_Y18iWm?S`gW{9p@UQA+$hBlNAvP2Fj?#;wH$uzkOGdw{zbwe``PXUk^8!IZ*g%0O~%fTQ{1#3D%C*)sI6W>4TEV z$nAdHD;@ut*5ond@}}}8ss@_txHMLmP_Kwuoh|)!j&5~0sJEh?ZalPiGb*(pex=-d zqXNl1vc;rQ>domWe z;pq>Euh4(Qt}2XPTf3T{p;mGs=heo0Flr0f>o%Aee5^%8`x@^6&aIl5THY?j`}yoG zwOXwo59r9{EP~abYypmvud%9M=pfwLZL6XhLfq*0&Wju?Qp#9_H0Yoy8hX_>1+6!L z&1%uLrR2@gwbb)|ODM{@XgOGg+`W}|Y3JZ$l!)-#p%+6?&b)}F?de1?@x+A&5gagR zRZM=XqlPk0c+Lf8T)nexqe<9`?veE+`<-T@5^p=d$p`02#HTj{1?hy^M+V>Vv1}Ok z{>3X_wN)>k^w6#{OoI_c)$AzAi`^wytTOlm6D7Uv`5r!F_N??eJyI{{=B9 z4jf%}9CxOl$^03%Fx#Gr^;XCHHRu<}$>TN*9I!YisRL2k1MwQFL=rZ=+~U_laT`>U zW3F3I1Kw?rvEV`L>`cMuR*WS?lanzi_wXNk)( zrHiHHGg>ORHa>a0Ebmg|B;(o%9~OUh2tt7NyAqmDj>=IYojYIm%ay37+U4v?lo}oq zi4VP250z?+kjzz{e(&)d~I#qvHvgpZMkZr(dny)|ZGYohr$XH0m z*jAQpj|w?Pzj)BsI8o)tD)U>{WCEE3`QM0QMmHa@KJC1gyc= z+MDTH@0ZD|x8Q4&qu1;0T#?`^G?{a_)R6e&-#z*NTG%Amm_~_!M~3pazZ0eY->eSu z!h)aWg}x;ZROc;L2OW@aw}vW4B_>t()HKi#giX&Ba*mKIS6 z=rr>(skn_yig>T?xW5goQMa)-iy9I%%*i@?zl%;ZMeIy+TXzTz-fVfR0t)BdKM5p7 zS#jRYQgXXX6LJ!+==czP0oN9!$k0NNs9WlKdV3vs>Uw*70eRlQ+?+dtOuo_ujY-9) zGCK8>y8dK#Xlj!a+5eM@;&Sv!2U@IYTa+=VRDej7&gF_iO^o4f5L+I%uY zV%#3BvMq3!iEJaup1wD5OdheMe~*K^?71zCF4EWFKd<_pcjJ^hR}Hi{1?UgmO)Pt` zoE;S-_h`GP<>)w{Z{<(qzD+6#P$axOksXmr^y3lHr7vxbM}wF| zR4hP^uuTVdxB!Dt2c=#kK+*w(*`o^|tj-r1_kry^J97$=Oz0z|by;y7yicSFYIv-C zZuF1g>_h@*sGlwNF6TE+I7rrH9VglWOHoP z+M~VBv5P0uMt(ck4&6lSMokbQ$?grY=$vaH=BN zZ>Yzl>6~lTb0Z%7Eiy}b#*!?;jcKc>R@VJ=9LR#(z7*L>5oz~HiI#WX5CiN9-$L%sB{m3){n zOy#DF>%OkMf?yq6CRXIz!uuh(X`W_pv=w=anDopG<>=L!xzV2=>XNMGNtQyh1OynQ zy9DiMxC>dKg4)O)tOc@K=gNfHaEs%}D_szJ=8F*2@`Zfxigu7jiWAtEH2el}3)s%h zsor3p;}wqrD!*$5zPjA%7C36=evw3}#6x{9Es z$#^xMs3RrPgdkc;v$PNnAi#9p$S;oeg0&h|JN-cehsFr4!E8d_$;U!Gzk5)t)+FC) z?%Tyr0%33`VfVS=GVB-pyP<h07cxL*h3m78v zxS+`eb;a3wrKgC{$pio!A+jSb26_Yt@8=WTHKh_AaI!KtE#m8svMvYN->J!}2fXla zcQaNOxVmC?>@oayyU|Zp2~d4m0CPJfIY3TO%zVwz!%0dWC#ZUtAzR3ZlwRa$<xZDqM@jub)1Ec~BmM4}Q@i3ZFf{_lD28W)YPZPt;wj8T zin|yl5dHH?u1JS{a)_>hP||uVc#Z;Us-Ov@psL#fO7FD1j>N6AV)7K^=4GV=Qa_TR z?xg5|dSf5_O~{;B6J%eYnT=UT2+M81mo&FdRo3On=|LVKz*Ru*h`*;P2>as0r~)R( z`B8q0hf|F-DgUSuo-zGpxa;eFt@z=$!;JIhKJ}_SDnxu~2}$3!$Tl#fad&3!jk)ID zsLUp!&<*0ZkK@m6v(NPGiA0+3@uDI1e{`126&)qVNN#I)e{sJ>$S8Cu8(E|){ZW#+ z1Uu4~xRHFccKGn2g1gb$To|p1FlL4)oUtITp+Q@%M@qLtdBQvM1D_(oT@)#N3T&7h zEoP=9`HTcf7Ffxa2eoPdLN+c90_+~l9Z;1yDcDV^0!RLB!rdSKpv7PM?D>a?hIn^q zIuAZ<_`7p@qW-31I@+DiX+7WmIu3z~y(>KM?%Fa~>x|0Nl?I*&o=5hOl}|%tma7`q zb2%SAt`NNd#KB>?S(owi`)VPWaH=nslkd*WMMDUxvZl-GcA(Hqvz+`t#|0B<-lf>M zqlS#+%T!OfnV|skScNZsJiYccENna*?@^@gL&}*+XzsWsqz+pVTApR#rhhMJbpJFP z?!?~0?Ok-qQoxII%n_<8nM0FFS!z8>qz;t9(zwDUz)B)aLW2FkmVb% z8n3q&8qfZ8S~3hKqETSNTg>n@;j>Q*af}7l zk(5Hn>)mTE2&EO)lM4bG?w--D*PonMOR_H^J<0+g<;62V(a~74T+DwGBu$QQo)Drt zF=>uEa*^nu4n-Y(evNY7+l8$ef^)WRyj@ctp?lvJ zC1Jhys2#mAo%>Gf>_+hJCP!wK0dpxAVuLpp3CpwqYN@XWkLs(s3RmbsEWmyfdo*Nz z??bSTd(|t_>#pZVh=Lai;f(OrJ-2qB;fuEZ@0W20nU61(!j{nVu=XZPY+yWcmo2&N zuITGO9*@`wZ1}hPz-K1&^^;hQTTPZyej1FLQI21nwDRhd!C$1L^JKqz7`5GObaZ&O zmcU{|-0aVF+dCk*!WYJ~>ib)WUpI9uVLruojYTpPvTq4g2J+sS6TA86B-CyZ*Pi@;%4 z+Jja3_3*~{adDrb3}3jVm!_L&8(w1bjn}UW2maGcJrp?VI{^^z3PCov{Hc3GyzZCV zZzV5Xm5=;8=>AD`I?La^y??4hh+x+bLPAUl9>nz!UbL6(emfiot0y-wgucSsyW3lF zkM8yA0S#rL2x2V03r?K~Tv}x)SDn}W&`XRu6 z?Hv3jgfY z`h3I{NedamTTd>963UDdI_r6Uw)MJ#aUy81M5+G?v;={f!g}O!@WNv5G;>>y$4SF zE4xSb+w{QKT3>jW{~p1~(9ZtvD(-)t(}p!gpB|W~s7HGDj`k08iUS`|{@ZtL{l(DY z4=t>Jo_kVi+3uHA(Jn9(Dg1}I`w;%p+y*9w2Ie|edX|PddQN(#7JB-o7N!oaKsf|k zM?-sue{zYgo}?9jY20rEA;tdysf+x70r?*t>3@z?t0*eyEAT2l0YCp=8aTg=THp6T z*8PR6_^%`VB~tlM0xfmN4TuIJf&mjuzs@#(8@0aInEwZe|02$r57O99KvZrZ-~NdD z1K1?-SK_oY)N?TW-SLag-)^kmxd8u@SSJp%3EhFH!a!81-vR}`*827n{2!tIi+B%+ zb@#`BbRq_7CH|4YWgq`7tDpCm=oSB z3B07Cz*XUwINWce))$5SFX8>I1>RN1#MIDE&(6TaRmar9(DI)IHqq1jC<_FN0RsK9 zRr_t!`ql$+|3YB@6zE?>)yS+^$q!u68GwZ{48I`(Uu%60fY^T>>_6Nw|9r>U@AL5u z0KZay(f^mI<8PzZ_e$`8I{kkd3jP`7W%CI}6BvUQFos{M>c5RzUqq4rImqAiwEqk- z+Z+(M4~zp02=hl`w@ds_ApQ!mQG|-#egLtcfLMPd_B-i+3+rD{z{EKm>II1R2*mp( zKmOaO^_BSi*YND@tnGCE^|A|&t=a+wyi?zR0DmMwvfTe1;9o>Rq%mEL4+Nor`12O= z2H0TuSBU(#D1d5EHo#Uw!+&yLw%)hn5CajYfe64m{y#^puc7k)0^wi8!3&SfH@0@#Q=DqKuR_=Uk=nv%El#{}Dyh0_H z)y}P6W%Q{PX2dW~roD{hdyKL7?AM^;x)f(#|FScooaJ5QfcB`!v$e-rKhl1Bb9y$c zgF=vHsg1*o;Vl>aJYn(HU*$Ln7Eq<+4_TLSjuQp~I_$oX-U>#|($#>lEjZfqPwa;^GciVcFndDQtXhDc#0}bRNOu{2zGzE5V*{ zUPuWoFk4qsno(X0A0v+Y0FhZwONi$-M>hbdZlnYd(VOssY1QE z4p5D*RW`YM5oXVAfNAtHvdLYHFv}rky{C~aZaaiEdKXY%)P%?!_c4JhJOpq*T}_kY VZR%GuJ-~6O Date: Thu, 24 May 2018 04:00:11 -0700 Subject: [PATCH 04/12] style check --- .../azure/cli/command_modules/resource/commands.py | 1 + .../azure/cli/command_modules/resource/custom.py | 3 +++ 2 files changed, 4 insertions(+) diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/commands.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/commands.py index 661b60c3c9d..7e88b5483fb 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/commands.py +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/commands.py @@ -20,6 +20,7 @@ from ._exception_handler import managementgroups_exception_handler + # Resource group commands def transform_resource_group_list(result): return [OrderedDict([ diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py index 47f626d6f50..a1ff5bebafe 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py @@ -1076,6 +1076,7 @@ def update_policy_setdefinition(cmd, policy_set_definition_name, definitions=Non parameters=params if params is not None else definition.parameters) return policy_client.policy_set_definitions.create_or_update(policy_set_definition_name, parameters) + def _register_rp(cli_ctx, subscription_id=None): rp = "Microsoft.Management" from azure.cli.core.commands.client_factory import get_mgmt_service_client @@ -1179,8 +1180,10 @@ def cli_managementgroups_subscription_remove( _register_rp(cmd.cli_ctx, subscription_id) return client.delete(group_name, subscription_id) + # region Locks + def _validate_lock_params_match_lock( lock_client, name, resource_group, resource_provider_namespace, parent_resource_path, resource_type, resource_name): From 80d08ab5e015c59b2c2ca9e16bb52710ceca7460 Mon Sep 17 00:00:00 2001 From: Raj Shah Date: Wed, 30 May 2018 08:22:14 -0700 Subject: [PATCH 05/12] Changes suggested in PR/after review --- .../resource/_client_factory.py | 2 +- .../cli/command_modules/resource/_help.py | 68 +++++------ .../cli/command_modules/resource/_params.py | 10 +- .../cli/command_modules/resource/custom.py | 16 ++- .../tests/latest/test_managmentgroups.py | 108 +++++++++--------- 5 files changed, 105 insertions(+), 99 deletions(-) diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_client_factory.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_client_factory.py index 8f350202402..96f577f7ea5 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_client_factory.py +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_client_factory.py @@ -109,4 +109,4 @@ def cf_management_groups(cli_ctx, _): def cf_management_group_subscriptions(cli_ctx, _): - return _resource_managementgroups_client_factory(cli_ctx).management_group_subscriptions + return _resource_managementgroups_client_factory(cli_ctx).management_group_subscriptions \ No newline at end of file diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_help.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_help.py index 8090ba09bd9..b3480dd3abe 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_help.py +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_help.py @@ -177,54 +177,54 @@ short-summary: Get a specific management group. long-summary: Get the details of the management group. parameters: - - name: --group-name --name -n + - name: --name -n type: string short-summary: Name of the management group. - name: --expand -e type: bool - short-summary: If given or true, lists the children in the first level of hierarchy. + short-summary: If given, lists the children in the first level of hierarchy. - name: --recurse -r type: bool - short-summary: If given or true, lists the children in all levels of hierarchy. + short-summary: If given, lists the children in all levels of hierarchy. examples: - name: Get a management group. text: > - az managementgroups group get --group-name GroupName + az managementgroups group show --name GroupName - name: Get a management group with children in the first level of hierarchy. text: > - az managementgroups group get --group-name GroupName -e + az managementgroups group show --name GroupName -e - name: Get a management group with children in all levels of hierarchy. text: > - az managementgroups group get --group-name GroupName -e -r + az managementgroups group show --name GroupName -e -r """ helps['account management-group create'] = """ type: command - short-summary: Add a new management group. - long-summary: Add a new management group. + short-summary: Create a new management group. + long-summary: Create a new management group. parameters: - - name: --group-name --name -n + - name: --name -n type: string short-summary: Name of the management group. - name: --display-name -d type: string short-summary: Sets the display name of the management group. If null, the group name is set as the display name. - - name: --parent-id -p + - name: --parent -p type: string - short-summary: Sets the parent of the management group. A fully qualified id is required. If null, the root tenant group is set as the parent. + short-summary: Sets the parent of the management group. Can be the fully qualified id or the name of the management group. If null, the root tenant group is set as the parent. examples: - - name: Add a new management group. + - name: Create a new management group. text: > - az managementgroups group new --group-name GroupName - - name: Add a new management group with a specific display name. + az managementgroups group create --name GroupName + - name: Create a new management group with a specific display name. text: > - az managementgroups group new --group-name GroupName --display-name DisplayName - - name: Add a new management group with a specific parent id. + az managementgroups group create --name GroupName --display-name DisplayName + - name: Create a new management group with a specific parent id. text: > - az managementgroups group new --group-name GroupName --parent-id ParentId - - name: Add a new management group with a specific display name and parent id. + az managementgroups group create --name GroupName --parent ParentId/ParentName + - name: Create a new management group with a specific display name and parent id. text: > - az managementgroups group new --group-name GroupName --display-name DisplayName --parent-id ParentId + az managementgroups group create --name GroupName --display-name DisplayName --parent ParentId/ParentName """ helps['account management-group update'] = """ @@ -232,39 +232,39 @@ short-summary: Update an existing management group. long-summary: Update an existing management group. parameters: - - name: --group-name --name -n + - name: --name -n type: string short-summary: Name of the management group. - name: --display-name -d type: string short-summary: Updates the display name of the management group. If null, no change is made. - - name: --parent-id -p + - name: --parent -p type: string - short-summary: Update the parent of the management group. A fully qualified id is required. If null, no change is made. + short-summary: Update the parent of the management group. Can be the fully qualified id or the name of the management group. If null, no change is made. examples: - name: Update an existing management group with a specific display name. text: > - az managementgroups group update --group-name GroupName --display-name DisplayName + az managementgroups group update --name GroupName --display-name DisplayName - name: Update an existing management group with a specific parent id. text: > - az managementgroups group update --group-name GroupName --parent-id ParentId + az managementgroups group update --name GroupName --parent ParentId/ParentName - name: Update an existing management group with a specific display name and parent id. text: > - az managementgroups group update --group-name GroupName --display-name DisplayName --parent-id ParentId + az managementgroups group update --name GroupName --display-name DisplayName --parent ParentId/ParentName """ helps['account management-group delete'] = """ type: command - short-summary: Remove an existing management group. - long-summary: Remove an existing management group. + short-summary: Delete an existing management group. + long-summary: Delete an existing management group. parameters: - - name: --group-name --name -n + - name: --name -n type: string short-summary: Name of the management group. examples: - - name: Remove an existing management group + - name: Delete an existing management group text: > - az managementgroups group remove --group-name GroupName + az managementgroups group delete --name GroupName """ helps['account management-group subscription add'] = """ @@ -272,7 +272,7 @@ short-summary: Add a subscription to a management group. long-summary: Add a subscription to a management group. parameters: - - name: --group-name --name -n + - name: --name -n type: string short-summary: Name of the management group. - name: --subscription @@ -281,7 +281,7 @@ examples: - name: Add a subscription to a management group. text: > - az managementgroups group new --group-name GroupName --subscription Subscription + az managementgroups group new --name GroupName --subscription Subscription """ helps['account management-group subscription remove'] = """ @@ -289,7 +289,7 @@ short-summary: Remove an existing subscription from a management group. long-summary: Remove an existing subscription from a management group. parameters: - - name: --group-name --name -n + - name: --name -n type: string short-summary: Name of the management group. - name: --subscription @@ -298,7 +298,7 @@ examples: - name: Remove an existing subscription from a management group. text: > - az managementgroups group remove --group-name GroupName --subscription Subscription + az managementgroups group remove --name GroupName --subscription Subscription """ helps['policy'] = """ diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_params.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_params.py index 6eb7aaad77e..cc9ba5ae7c9 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_params.py +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_params.py @@ -211,16 +211,16 @@ def load_arguments(self, _): c.argument('mainTemplate', options_list=('--main-template', '-t'), help='JSON formatted string or a path to a file with such content', type=file_type) with self.argument_context('account management-group') as c: - c.argument('group_name', options_list=['--group-name', '--name', '-n']) + c.argument('group_name', options_list=['--name', '-n']) with self.argument_context('account management-group show') as c: - c.argument('expand', arg_type=get_three_state_flag(), options_list=['--expand', '-e']) - c.argument('recurse', arg_type=get_three_state_flag(), options_list=['--recurse', '-r']) + c.argument('expand', arg_type=get_three_state_flag(), options_list=['--expand', '-e'], action='store_true') + c.argument('recurse', arg_type=get_three_state_flag(), options_list=['--recurse', '-r'], action='store_true') with self.argument_context('account management-group create') as c: c.argument('display_name', options_list=['--display-name', '-d']) - c.argument('parent_id', options_list=['--parent-id', '-p']) + c.argument('parent', options_list=['--parent', '-p']) with self.argument_context('account management-group update') as c: c.argument('display_name', options_list=['--display-name', '-d']) - c.argument('parent_id', options_list=['--parent-id', '-p']) + c.argument('parent', options_list=['--parent', '-p']) diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py index a1ff5bebafe..40be7de3667 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py @@ -1104,6 +1104,10 @@ def _get_subscription_id_from_subscription(cli_ctx, subscription): # pylint: di from azure.cli.core.util import CLIError raise CLIError("Subscription not found in the current context.") +def _get_parent_id_from_parent(parent): + if parent is None or parent.startswith("/providers/Microsoft.Management/managementGroups/"): + return parent + return "/providers/Microsoft.Management/managementGroups/"+parent def cli_managementgroups_group_list(cmd, client): _register_rp(cmd.cli_ctx) @@ -1127,8 +1131,9 @@ def cli_managementgroups_group_create( client, group_name, display_name=None, - parent_id=None): + parent=None): _register_rp(cmd.cli_ctx) + parent_id=_get_parent_id_from_parent(parent) from azure.mgmt.managementgroups.models import (CreateManagementGroupRequest, CreateManagementGroupDetails, CreateParentGroupInfo) create_parent_grp_info = CreateParentGroupInfo(id=parent_id) create_mgmt_grp_details = CreateManagementGroupDetails(parent=create_parent_grp_info) @@ -1139,22 +1144,23 @@ def cli_managementgroups_group_create( def cli_managementgroups_group_update_custom_func( instance, display_name=None, - parent_id=None): + parent=None): instance["display_name"] = display_name - instance["parent_id"] = parent_id + instance["parent"] = parent return instance def cli_managementgroups_group_update_get(): - update_parameters = {'display_name': None, 'parent_id': None} + update_parameters = {'display_name': None, 'parent': None} return update_parameters def cli_managementgroups_group_update_set( cmd, client, group_name, parameters=None): _register_rp(cmd.cli_ctx) + parent_id=_get_parent_id_from_parent(parameters["parent"]) from azure.mgmt.managementgroups.models import PatchManagementGroupRequest - patch_mgmt_grp_request = PatchManagementGroupRequest(display_name=parameters["display_name"], parent_id=parameters["parent_id"]) + patch_mgmt_grp_request = PatchManagementGroupRequest(display_name=parameters["display_name"], parent_id=parent_id) return client.update(group_name, patch_mgmt_grp_request) diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/test_managmentgroups.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/test_managmentgroups.py index d7d6fe1aba7..6754844fd0b 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/test_managmentgroups.py +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/test_managmentgroups.py @@ -23,12 +23,12 @@ def test_list_managementgroups(self): "/providers/Microsoft.Management/managementGroups") def test_show_managementgroup(self): - self.cmd('account management-group create --group-name testcligetgroup1') - self.cmd('account management-group create --group-name testcligetgroup2 --parent-id /providers/Microsoft.Management/managementGroups/testcligetgroup1') + self.cmd('account management-group create --name testcligetgroup1') + self.cmd('account management-group create --name testcligetgroup2 --parent /providers/Microsoft.Management/managementGroups/testcligetgroup1') managementgroup_get = self.cmd( - 'account management-group show --group-name testcligetgroup2').get_output_in_json() - self.cmd('account management-group delete --group-name testcligetgroup2') - self.cmd('account management-group delete --group-name testcligetgroup1') + 'account management-group show --name testcligetgroup2').get_output_in_json() + self.cmd('account management-group delete --name testcligetgroup2') + self.cmd('account management-group delete --name testcligetgroup1') self.assertIsNotNone(managementgroup_get) self.assertIsNone(managementgroup_get["children"]) @@ -55,14 +55,14 @@ def test_show_managementgroup(self): "/providers/Microsoft.Management/managementGroups") def test_show_managementgroup_with_expand(self): - self.cmd('account management-group create --group-name testcligetgroup1') - self.cmd('account management-group create --group-name testcligetgroup2 --parent-id /providers/Microsoft.Management/managementGroups/testcligetgroup1') - self.cmd('account management-group create --group-name testcligetgroup3 --parent-id /providers/Microsoft.Management/managementGroups/testcligetgroup2') + self.cmd('account management-group create --name testcligetgroup1') + self.cmd('account management-group create --name testcligetgroup2 --parent testcligetgroup1') + self.cmd('account management-group create --name testcligetgroup3 --parent /providers/Microsoft.Management/managementGroups/testcligetgroup2') managementgroup_get = self.cmd( - 'account management-group show --group-name testcligetgroup2 --expand').get_output_in_json() - self.cmd('account management-group delete --group-name testcligetgroup3') - self.cmd('account management-group delete --group-name testcligetgroup2') - self.cmd('account management-group delete --group-name testcligetgroup1') + 'account management-group show --name testcligetgroup2 --expand').get_output_in_json() + self.cmd('account management-group delete --name testcligetgroup3') + self.cmd('account management-group delete --name testcligetgroup2') + self.cmd('account management-group delete --name testcligetgroup1') self.assertIsNotNone(managementgroup_get) self.assertIsNotNone(managementgroup_get["children"]) @@ -101,16 +101,16 @@ def test_show_managementgroup_with_expand(self): "testcligetgroup3") def test_show_managementgroup_with_expand_and_recurse(self): - self.cmd('account management-group create --group-name testcligetgroup1') - self.cmd('account management-group create --group-name testcligetgroup2 --parent-id /providers/Microsoft.Management/managementGroups/testcligetgroup1') - self.cmd('account management-group create --group-name testcligetgroup3 --parent-id /providers/Microsoft.Management/managementGroups/testcligetgroup2') - self.cmd('account management-group create --group-name testcligetgroup4 --parent-id /providers/Microsoft.Management/managementGroups/testcligetgroup3') + self.cmd('account management-group create --name testcligetgroup1') + self.cmd('account management-group create --name testcligetgroup2 --parent /providers/Microsoft.Management/managementGroups/testcligetgroup1') + self.cmd('account management-group create --name testcligetgroup3 --parent testcligetgroup2') + self.cmd('account management-group create --name testcligetgroup4 --parent /providers/Microsoft.Management/managementGroups/testcligetgroup3') managementgroup_get = self.cmd( - 'account management-group show --group-name testcligetgroup2 --expand --recurse').get_output_in_json() - self.cmd('account management-group delete --group-name testcligetgroup4') - self.cmd('account management-group delete --group-name testcligetgroup3') - self.cmd('account management-group delete --group-name testcligetgroup2') - self.cmd('account management-group delete --group-name testcligetgroup1') + 'account management-group show --name testcligetgroup2 --expand --recurse').get_output_in_json() + self.cmd('account management-group delete --name testcligetgroup4') + self.cmd('account management-group delete --name testcligetgroup3') + self.cmd('account management-group delete --name testcligetgroup2') + self.cmd('account management-group delete --name testcligetgroup1') self.assertIsNotNone(managementgroup_get) self.assertIsNotNone(managementgroup_get["children"]) @@ -164,9 +164,9 @@ def test_create_managementgroup(self): name = "testcligroup" displayName = "testcligroup" managementgroup_create = self.cmd( - 'account management-group create --group-name ' + + 'account management-group create --name ' + name).get_output_in_json() - self.cmd('account management-group delete --group-name ' + name) + self.cmd('account management-group delete --name ' + name) self.assertIsNotNone(managementgroup_create) self.assertIsNotNone(managementgroup_create["properties"]["details"]) @@ -196,11 +196,11 @@ def test_create_managementgroup_with_displayname(self): name = "testcligroup" displayName = "TestCliDisplayName" managementgroup_create = self.cmd( - 'account management-group create --group-name ' + + 'account management-group create --name ' + name + ' --display-name ' + displayName).get_output_in_json() - self.cmd('account management-group delete --group-name ' + name) + self.cmd('account management-group delete --name ' + name) self.assertIsNotNone(managementgroup_create) self.assertIsNotNone(managementgroup_create["properties"]["details"]) @@ -231,14 +231,14 @@ def test_create_managementgroup_with_parentid(self): displayName = "testcligroupchild" parentId = "/providers/Microsoft.Management/managementGroups/testcligroup" parentName = "testcligroup" - self.cmd('account management-group create --group-name ' + parentName) + self.cmd('account management-group create --name ' + parentName) managementgroup_create = self.cmd( - 'account management-group create --group-name ' + + 'account management-group create --name ' + name + - ' --parent-id ' + + ' --parent ' + parentId).get_output_in_json() - self.cmd('account management-group delete --group-name ' + name) - self.cmd('account management-group delete --group-name ' + parentName) + self.cmd('account management-group delete --name ' + name) + self.cmd('account management-group delete --name ' + parentName) self.assertIsNotNone(managementgroup_create) self.assertIsNotNone(managementgroup_create["properties"]["details"]) @@ -268,16 +268,16 @@ def test_create_managementgroup_with_displayname_and_parentid(self): displayName = "testcligroupchildDisplayName" parentId = "/providers/Microsoft.Management/managementGroups/testcligroup" parentName = "testcligroup" - self.cmd('account management-group create --group-name ' + parentName) + self.cmd('account management-group create --name ' + parentName) managementgroup_create = self.cmd( - 'account management-group create --group-name ' + + 'account management-group create --name ' + name + ' --display-name ' + displayName + - ' --parent-id ' + - parentId).get_output_in_json() - self.cmd('account management-group delete --group-name ' + name) - self.cmd('account management-group delete --group-name ' + parentName) + ' --parent ' + + parentName).get_output_in_json() + self.cmd('account management-group delete --name ' + name) + self.cmd('account management-group delete --name ' + parentName) self.assertIsNotNone(managementgroup_create) self.assertIsNotNone(managementgroup_create["properties"]["details"]) @@ -305,13 +305,13 @@ def test_create_managementgroup_with_displayname_and_parentid(self): def test_update_managementgroup_with_displayname(self): name = "testcligroup" displayName = "testcligroupDisplayName" - self.cmd('account management-group create --group-name ' + name) + self.cmd('account management-group create --name ' + name) managementgroup_update = self.cmd( - 'account management-group update --group-name ' + + 'account management-group update --name ' + name + ' --display-name ' + displayName).get_output_in_json() - self.cmd('account management-group delete --group-name ' + name) + self.cmd('account management-group delete --name ' + name) self.assertIsNotNone(managementgroup_update) self.assertIsNotNone(managementgroup_update["details"]) @@ -340,15 +340,15 @@ def test_update_managementgroup_with_parentid(self): displayName = "testcligroupchild" parentId = "/providers/Microsoft.Management/managementGroups/testcligroup" parentName = "testcligroup" - self.cmd('account management-group create --group-name ' + parentName) - self.cmd('account management-group create --group-name ' + name) + self.cmd('account management-group create --name ' + parentName) + self.cmd('account management-group create --name ' + name) managementgroup_update = self.cmd( - 'account management-group update --group-name ' + + 'account management-group update --name ' + name + - ' --parent-id ' + + ' --parent ' + parentId).get_output_in_json() - self.cmd('account management-group delete --group-name ' + name) - self.cmd('account management-group delete --group-name ' + parentName) + self.cmd('account management-group delete --name ' + name) + self.cmd('account management-group delete --name ' + parentName) self.assertIsNotNone(managementgroup_update) self.assertIsNotNone(managementgroup_update["details"]) @@ -376,17 +376,17 @@ def test_update_managementgroup_with_displayname_and_parentid(self): displayName = "testcligroupchild" parentId = "/providers/Microsoft.Management/managementGroups/testcligroup" parentName = "testcligroup" - self.cmd('account management-group create --group-name ' + parentName) - self.cmd('account management-group create --group-name ' + name) + self.cmd('account management-group create --name ' + parentName) + self.cmd('account management-group create --name ' + name) managementgroup_update = self.cmd( - 'account management-group update --group-name ' + + 'account management-group update --name ' + name + ' --display-name ' + displayName + - ' --parent-id ' + - parentId).get_output_in_json() - self.cmd('account management-group delete --group-name ' + name) - self.cmd('account management-group delete --group-name ' + parentName) + ' --parent ' + + parentName).get_output_in_json() + self.cmd('account management-group delete --name ' + name) + self.cmd('account management-group delete --name ' + parentName) self.assertIsNotNone(managementgroup_update) self.assertIsNotNone(managementgroup_update["details"]) @@ -410,5 +410,5 @@ def test_update_managementgroup_with_displayname_and_parentid(self): "/providers/Microsoft.Management/managementGroups") def test_create_delete_group_managementgroup(self): - self.cmd('account management-group create --group-name testcligroup') - self.cmd('account management-group delete --group-name testcligroup') + self.cmd('account management-group create --name testcligroup') + self.cmd('account management-group delete --name testcligroup') From 972a0e6acac3eb7bb094119a3b45d1d7d028356c Mon Sep 17 00:00:00 2001 From: Raj Shah Date: Wed, 30 May 2018 15:56:22 -0700 Subject: [PATCH 06/12] More changes suggested in the PR and rerun tests --- .../azure-cli-resource/HISTORY.rst | 2 +- .../cli/command_modules/resource/_params.py | 6 +- .../cli/command_modules/resource/custom.py | 18 +- ...t_create_delete_group_managementgroup.yaml | 74 ++-- .../test_create_managementgroup.yaml | 74 ++-- ...eate_managementgroup_with_displayname.yaml | 74 ++-- ...ntgroup_with_displayname_and_parentid.yaml | 150 ++++---- ..._create_managementgroup_with_parentid.yaml | 152 ++++---- .../test_list_managementgroups.yaml | 58 +++- .../recordings/test_show_managementgroup.yaml | 243 ++++++++----- ...test_show_managementgroup_with_expand.yaml | 254 +++++++------- ...nagementgroup_with_expand_and_recurse.yaml | 328 +++++++++--------- ...date_managementgroup_with_displayname.yaml | 245 +++---------- ...ntgroup_with_displayname_and_parentid.yaml | 289 +++++---------- ..._update_managementgroup_with_parentid.yaml | 285 +++++---------- 15 files changed, 972 insertions(+), 1280 deletions(-) diff --git a/src/command_modules/azure-cli-resource/HISTORY.rst b/src/command_modules/azure-cli-resource/HISTORY.rst index b8b9c6cafa4..8eb530720dc 100644 --- a/src/command_modules/azure-cli-resource/HISTORY.rst +++ b/src/command_modules/azure-cli-resource/HISTORY.rst @@ -5,7 +5,7 @@ Release History 2.0.30 ++++++ -* Add management-group commands +* add `account management-group` commands. 2.0.29 ++++++ diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_params.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_params.py index cc9ba5ae7c9..5ddd7f05005 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_params.py +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_params.py @@ -214,8 +214,8 @@ def load_arguments(self, _): c.argument('group_name', options_list=['--name', '-n']) with self.argument_context('account management-group show') as c: - c.argument('expand', arg_type=get_three_state_flag(), options_list=['--expand', '-e'], action='store_true') - c.argument('recurse', arg_type=get_three_state_flag(), options_list=['--recurse', '-r'], action='store_true') + c.argument('expand', options_list=['--expand', '-e'], action='store_true') + c.argument('recurse', options_list=['--recurse', '-r'], action='store_true') with self.argument_context('account management-group create') as c: c.argument('display_name', options_list=['--display-name', '-d']) @@ -223,4 +223,4 @@ def load_arguments(self, _): with self.argument_context('account management-group update') as c: c.argument('display_name', options_list=['--display-name', '-d']) - c.argument('parent', options_list=['--parent', '-p']) + c.argument('parent_id', options_list=['--parent', '-p']) diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py index 40be7de3667..c43d99ffcc6 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py @@ -1133,7 +1133,7 @@ def cli_managementgroups_group_create( display_name=None, parent=None): _register_rp(cmd.cli_ctx) - parent_id=_get_parent_id_from_parent(parent) + parent_id = _get_parent_id_from_parent(parent) from azure.mgmt.managementgroups.models import (CreateManagementGroupRequest, CreateManagementGroupDetails, CreateParentGroupInfo) create_parent_grp_info = CreateParentGroupInfo(id=parent_id) create_mgmt_grp_details = CreateManagementGroupDetails(parent=create_parent_grp_info) @@ -1144,24 +1144,22 @@ def cli_managementgroups_group_create( def cli_managementgroups_group_update_custom_func( instance, display_name=None, - parent=None): - instance["display_name"] = display_name - instance["parent"] = parent + parent_id=None): + parent_id = _get_parent_id_from_parent(parent_id) + instance.display_name = display_name + instance.parent_id = parent_id return instance def cli_managementgroups_group_update_get(): - update_parameters = {'display_name': None, 'parent': None} + from azure.mgmt.managementgroups.models import PatchManagementGroupRequest + update_parameters = PatchManagementGroupRequest(display_name=None, parent_id=None) return update_parameters def cli_managementgroups_group_update_set( cmd, client, group_name, parameters=None): - _register_rp(cmd.cli_ctx) - parent_id=_get_parent_id_from_parent(parameters["parent"]) - from azure.mgmt.managementgroups.models import PatchManagementGroupRequest - patch_mgmt_grp_request = PatchManagementGroupRequest(display_name=parameters["display_name"], parent_id=parent_id) - return client.update(group_name, patch_mgmt_grp_request) + return client.update(group_name, parameters) def cli_managementgroups_group_delete(cmd, client, group_name): diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_delete_group_managementgroup.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_delete_group_managementgroup.yaml index cf8e07b1811..88096aff3a5 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_delete_group_managementgroup.yaml +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_delete_group_managementgroup.yaml @@ -22,10 +22,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:35:04 GMT'] + date: ['Wed, 30 May 2018 22:40:42 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r1SlNhQ3IjgoK9ReNs6_mqcGwOzVdcgymJJIoZ_BmOXZWND4o0lm_a5bSBC2NBn5GMhZwOKrV8NHiUYcR_1L1BrepRnjrCD0nrHZc_HcmxccbTVN_BWelzglfXFUSVR3OCLnJQDYIPOy2FTz7_YMxhiarrH0uQSd4lfNCQ3cGovEgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rBu2p-uYei1TpxDcI1iyV2T-RlLgaQM3HaeZHr2QpSU5_QNmqz0hzY8RyC2QMuYctYk4a_66AptcQyI0mmZ0ECal_0tlRw17mSNdlTA6Zb05oq31Wx3BIaz_9pHRWhpMz7OOFS9VXCJl1lzSjT_ASi0gByIZVYxF9Z4K7lbM4iK0gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -53,14 +53,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:35:06 GMT'] + date: ['Wed, 30 May 2018 22:40:45 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1180'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] status: {code: 200, message: OK} - request: body: null @@ -85,10 +85,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:35:17 GMT'] + date: ['Wed, 30 May 2018 22:40:55 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rluIK1X4FLghKGAATPTCm8xnHOqkFkhZXblHHGQGnhQy0aVtex35Q9_-6-NbTPP-szkDR6E8VfFpAm3yYfFjdG6M76YP-X1IHJX59lClfGV7HnlZCbIhL4N65yaDDTXBnF-hnA4MgtMoOwciFFakTIK5QBXt_yhgiFl04WZx2EGwgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rExYOmy9VN82poFGKzhbXO5AEo0vXacinwRh3BJzBeB6kwdnpjLyIhUv_eYg8tBYk52G0fjTbZC7I9PrURN9PPXoqGUqXA1ie8i-yEll1TpkS8QKwmv3vAMPSHbBTywYcoq0R85u1or5_nECFJ-lWEYb4Ysge6uK7HfXvpwTdv2sgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -115,7 +115,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:35:17 GMT'] + date: ['Wed, 30 May 2018 22:40:55 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -145,10 +145,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:35:17 GMT'] + date: ['Wed, 30 May 2018 22:40:56 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rQVJec_h9T5l-LyuXC9xCX6XR1WsbBDhoKEKDZTo-veGUiT-NVlLDZoBEIsytVAi5VyyUBLfP2dYVT6PDb6DqmZwAl-PDY-GAefWY2Sr8kCUNnU5RmZAxh-WaseDrDbGk3fdhr3cnWqmAkhf6cdLLrasuKZna7ZRl1OIECuCo35kgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rTYVDhfduSPzERzNcW66MgoXpQwkmhi1QEQmE6E80uL0ilcsnK2W-tQhX9op3cszIfdU53vmjtxsZlIJinSp3KiS485Ht-t7T9j20HWcs2je3bjOefW-8fxdnUd6AHEAp1wcnDt-C8j-z2FI8itgfZMrWREBdUkaBxUKOKK88qAEgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -177,17 +177,17 @@ interactions: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:35:20 GMT'] + date: ['Wed, 30 May 2018 22:40:58 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [89ba4cd2-7afe-4ee5-9ecf-11bc83472be5] + request-id: [ae726a0e-347f-4d77-8742-66606b6aae36] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1180'] + x-ms-ratelimit-remaining-tenant-writes: ['1197'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -213,10 +213,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:35:31 GMT'] + date: ['Wed, 30 May 2018 22:41:08 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r-F_zygusn3PqJsHIb-utq_XvjHcVKMAL-mDNJXyZlYr0HW942qAdB1VDxkMAdruUSZwo5afURRzUHI3pReAKY4aHyvEdsULTEMq9dNi7h7r2nfp_gzbTtPLb5Whdx_R6Cc2cEXePXiaAOnOKS_OMcxro4Itxhml6iVbdnLoBq4ggAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rghsyQNrzi3rSvAECd-FY2UflEMPeuGhRI0kOZTEqDwbgnVkZ-aeAtFmWp6s5gZZJIMo5OEUr0T6UZwrCyzaVOYteAFUV4ivDTzUQaX71JN2-I58Ge17dgSOMKbFeShvGcATqbu3VWM2bPKKaBLplFCpBHckvgnjMSUcjNkqKOqIgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -236,21 +236,21 @@ interactions: method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroup","details":{"version":18,"updatedTime":"2018-05-24T09:35:26.8153089Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroup","details":{"version":58,"updatedTime":"2018-05-30T22:41:05.0813456Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} headers: cache-control: [no-cache] content-length: ['589'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:35:32 GMT'] + date: ['Wed, 30 May 2018 22:41:10 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [742aa35d-1d81-4124-b5bd-fee1aea626af] + request-id: [9164a9f5-eb0c-4d75-84ea-ec52598bd853] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -277,10 +277,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:35:34 GMT'] + date: ['Wed, 30 May 2018 22:41:10 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rX5o8KmiQ9YPp4wOsQf73qFFuGH4p3VPuRMiMWBoy02F-VxTixKGBMBZ6ZrkgLbD4aPDezOtgvsfkF_o2BuyVJvgjK6pC7m3qahJLdVgJKtPJpJeu0iBmBfgRseUPK5FrmQFoXmBu8bozSCyW0lHI8vaH6DmTSDoCoFfANQpk2sogAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rJ8IUrp-r-kJfxQb74aoLC_q7ird9GN_qBmiAYlMitsDS-Cm5xLPKjwzzWyLhbQAYqo4Y7pCFnd41d7B1_Gpdg0I3EEqOKxgcjxCiXyTeJaf0ne_SJuPzBqAp4Fbt_NQl3G8MhyjhswwrIQbJlMxew1DnxyV-f6SH5ROzu8duhjYgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -308,14 +308,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:35:36 GMT'] + date: ['Wed, 30 May 2018 22:41:14 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1178'] + x-ms-ratelimit-remaining-subscription-writes: ['1194'] status: {code: 200, message: OK} - request: body: null @@ -340,10 +340,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:35:47 GMT'] + date: ['Wed, 30 May 2018 22:41:24 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r3SeT1k3k5sDSthl3HiC2-nrStv-hq5C6vVrASAKbrTiE7QKgaQCrz65SmtEDmaQyuxU2kfrGNZuWL5WQ5gApAQrZQt_1Bu85ll0k4bB5PdPH9abGbXw1cQ3PoD4vaAG0q8aXp26GtNIekRsZRTdj-3HFi6VhzSloCxUa1bW2N2kgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r4FLTCJqWFd4T0tH57Hcu_nNGZDj8CRF-JqW2hRCDeJJfhW1-O7efyYOuQZqcwbugu_F1yt0oX8OFh6yqHRc-mw90FG_iSB1J65JknLDV1lBQcjsoShfO0bWUza5eK4R2pxmwW64hdUmaqHdYxR7QzY4eHQcqYm-2APNJpXwWiWIgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -370,7 +370,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:35:48 GMT'] + date: ['Wed, 30 May 2018 22:41:25 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -400,10 +400,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:35:49 GMT'] + date: ['Wed, 30 May 2018 22:41:26 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r0N21gZobu27GrVfyP3slgWJKnaIOXj9dPGb_K-rKkIn670T9oeJslN6KjYyY21nt4SWi4CxfQd-WFQ2dNvadVXICL74Kg1-BWRHiUrSfQMfQ_bkDhkOcN-qCCrkwVdZglJwBqFpbu_o1h-6a-RMLsWioMTMejMTa653T9x_p0EYgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rqPrNQ6HFTuR85D9gDN5ca4etZLt-N4ohDzbucPz7UcnGHhgbvyIDJNcG3mZZsk4AzqoHkZtlBG7F52zA7TuBkVl2OCymZ2mC7AZ55i4EDqoe-dFKZVszwCroPgh9rrwGUfz3lZJ4A1CoPGM-kOb6NzIFjivGWZs37VOoXSbXhccgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -432,17 +432,17 @@ interactions: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:35:52 GMT'] + date: ['Wed, 30 May 2018 22:41:30 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [8d0f5f0d-593c-4d0a-9561-9e74dccae477] + request-id: [935d2ddb-9e3c-44fa-a81b-c14001d2ade0] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1188'] + x-ms-ratelimit-remaining-tenant-writes: ['1195'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -468,10 +468,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:36:03 GMT'] + date: ['Wed, 30 May 2018 22:41:40 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rEEU2bOTeZBpfUrocPVSu8kKFyPJDIjwyBoZ4PSCY8OrKgFi7qvNtgcs36pESP8fxJdgu23HUqXvdG8PQsP6bQQcmpVxfnSR1s1iNkBrgZUfImRPJDUYdDC77IVYDrPZe3oHzRTTxmjZLY-__ki4bVrNRPygS_YUJll6RDmT6sn0gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rKixTXic_a5pa7XuEySsNgYCyKjewcsh-ikfGmDQNlIUKnn6j5DRuLcAHUiK3_qeo5Q5FI-IdevsnflPIxf-RxQ1RAztGwBw60yGoJ0Rsdu1JcqQC4OCikozIwnbENrLIZ3eBPIqBecjTu0rwo-BpucbMD-dN7Z1Irfa0HAiUS1YgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -496,16 +496,16 @@ interactions: cache-control: [no-cache] content-length: ['171'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:36:04 GMT'] + date: ['Wed, 30 May 2018 22:41:41 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [6382dffc-39be-4f47-bf1e-7083c4415d7b] + request-id: [9528c035-2b04-44ed-a695-a9d17fdeb4bf] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup.yaml index 1266fa58751..e07d5dcacb4 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup.yaml +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup.yaml @@ -22,10 +22,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:26:49 GMT'] + date: ['Wed, 30 May 2018 21:40:36 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7ryLDZTg7nSu6KlBS8A-OmP43r5JfsT70TmfMSlHP7bcPe2KYFOVVdps9BlzaQq2b2P8AjyLhsM-VR7eq2AMkD-R7zoKdgPn4yFUI_AfGqsB88oDghS1GW44Q0doF4wONiJWHwfXQO_r7zoCnEKrdovMWi8a65dPaCJqRdJKP8xIIgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rhNDNC0sAlUD_T4npslfrXYylRWNbo5TZhqKpeZGnwLwON5bXzblwbhnXtam8ABEPMablXUgWLG1OvQB0gRVo5529koIkarzt-Ax2ppUsmg9YTJ_RvB2gjKRBevsj-WVSnLoH8_T5q4qPhJxy1zWbLFpmZUVTX33Uhzm-ReT1-9MgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -53,14 +53,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:26:53 GMT'] + date: ['Wed, 30 May 2018 21:40:39 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1178'] + x-ms-ratelimit-remaining-subscription-writes: ['1191'] status: {code: 200, message: OK} - request: body: null @@ -85,10 +85,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:27:03 GMT'] + date: ['Wed, 30 May 2018 21:40:50 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rVzvtcWOxozyNdxgHP0PAmxrNW_prYw5B7DUZw9-puriCl0mLnpn4WV3pg22teef4XtQAtiZNAux497i4NT-1EpRNraHzHeDpfH_3dIl_mBo7ffDjK9GU5RAUM3jPMpaEYTspb13gQ0yCtE5KFn6ccVLNwgvWqWTvSs5PMsBmHjEgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rsLiTDWMa9MAmLFbqWVA8SBSVCCzOQb50HWeUsQWCyT-ZEiZlNCx4yOhbvJ6k3q9zQX33u19fxvalZ6s2HnAQMSPGuP584n8gNUa934-MN6q0p0bUoQLcz0950FVU6QbvSpGtZU5N46zCD8r2TbOBou1q3GiZr1BBVE-J-8HHa2cgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -115,7 +115,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:27:04 GMT'] + date: ['Wed, 30 May 2018 21:40:51 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -145,10 +145,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:27:04 GMT'] + date: ['Wed, 30 May 2018 21:40:51 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rRjZna9aZLj1LOijSq0XB3s2LgL2KM4JQHK-xY__jVVt-XfeqgmJH9fq852OFRkENh1oIign-IM1bbEthRBVEtV7MK-x1TX1WlsmgcAnAMfO5-Zu50Y-SZccYXBUFiXXHRRpqqJya6U0HoCPXm11DEpaWm0LivO9Hro5TSsYAiLogAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rnJda_Q8nFnmAIMA0tZHXEIDlMqAJs5wVs0QOPj5RfkfF2U4vxYYuO9ZTgV_RMdcdeaOWLRi4zx_zhoflNo98is-uKm3w8pr9FQ_F6--cxtQZJlDlcqZ4C0N4Z2nzWxUVMNGjE8diier9k7R0Jq9pWQec8jDmuRUSQiz6DWqadTkgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -177,17 +177,17 @@ interactions: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:27:07 GMT'] + date: ['Wed, 30 May 2018 21:40:55 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [40e3fd02-9ce2-47e0-b158-7bec347395d4] + request-id: [b9bde5db-18dc-4d69-a067-8bad2582004d] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1183'] + x-ms-ratelimit-remaining-tenant-writes: ['1192'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -213,10 +213,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:27:17 GMT'] + date: ['Wed, 30 May 2018 21:41:05 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r5e9ERWG4hsJR0Kn6gfY4cqZuvty3ZjrucM-BzKPceqYhkSg5_E42Gj8BxjjnSU2cfk2jB6peuqTsncQQmAYcsCiHW8ltQL8U9CgxHpkCVzSoxO8kdaxJlZbcpJQ6Cdo-_O3jCyw50BQy0uJdBzgEP-X5uKMRTategMj0fpiw18YgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rYlb0NuFH1xckcgmqBoMaybDnXZpAs4-VHolf12IaBE_98kbAJ11AJIIFnBEC4pgPSBsiR1AYOFdkhNodUSwzidY90hNDaSkAXyh0GkT9zDxOiqfJtbSkpJGdXZ2Edsk61SqMlZMHfoXNp6hCUajrLXjfru_KRdZRnvWrLpb-Gp4gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -236,21 +236,21 @@ interactions: method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroup","details":{"version":14,"updatedTime":"2018-05-24T09:27:14.8164426Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroup","details":{"version":50,"updatedTime":"2018-05-30T21:41:02.7945078Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} headers: cache-control: [no-cache] content-length: ['589'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:27:20 GMT'] + date: ['Wed, 30 May 2018 21:41:07 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [fe78761d-efa5-495e-90d7-02f8201c7dfd] + request-id: [cb389005-ca3f-49ee-8e86-d4cb8bb70f3c] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -277,10 +277,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:27:21 GMT'] + date: ['Wed, 30 May 2018 21:41:08 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rDiMfml66d36KNiYoR0ycWya2hZf4GZb48Acdsveo6hlX3de7EP_7ArBOT3Ee7Rx-gd4m9zY7xpJXSzXfFQlMKTf8xgvEE-go0V1qdKzvMjIjiHFu6ivhWKQGJoi9xUDtucfXgkjd9rq7WQKOxnaUqldK4PhSVLRXo8GRZOXpHxcgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rX8EmEL2i2mbB21QWF6wtohXEGWKoK8QRuXpxG6boB4s33yPELvOfFO2SoBCYHnx0GrG9HaXFcEMJu8KUvwejbQn6ZsUdRP85abpIBYtU9atlFp4E1EGx45zIqAdcN-b0m4VoM3rR1OLgvynnyMuPYj_plR1OOeBDymQTeoFKt5ggAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -308,14 +308,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:27:24 GMT'] + date: ['Wed, 30 May 2018 21:41:10 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1184'] + x-ms-ratelimit-remaining-subscription-writes: ['1190'] status: {code: 200, message: OK} - request: body: null @@ -340,10 +340,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:27:34 GMT'] + date: ['Wed, 30 May 2018 21:41:20 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rRVRuhtiq2yoS9tWyKNP61_XETgxE_JNxB5J81IvVpFDf3BbvabAFot25tMDz71RUBLI2CFcxslp1BcVDZ1PLgcuhNKhVXzu3LEKwBVYpmtZJRhulcQr7BfVp3SR0X_fJrdwZVkH4kz9DBRJUaWG_-_Gm4cCC7FTN4nu564XPUksgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rvgf7SLj6OkNyyCVOnLvmm3uL-BvgsJdohSIiJsDeSeFhAB8_yulSFtq8mJdeqhkJZgTqfA6TnVP8yu-6S3h-rO3hLuM5nWTND25KtwZFrp17k4GaQH5y5dvm_08_0zfGHlvY569h9ohlA0CP4Uv06AChljAcGe2xX1BJz4n9imggAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -370,7 +370,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:27:35 GMT'] + date: ['Wed, 30 May 2018 21:41:22 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -400,10 +400,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:27:35 GMT'] + date: ['Wed, 30 May 2018 21:41:22 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r_Mmgkox9SVdUJMxJla1cjPt15O4toUrDMK-TNSbojfov_HbGCsMa1m_KwHZbF2NCMoazgnwEL1AIBhBZ2LsahhIOFl0YRgtZntamafpFrKCLZ7_TKy23h7u-Qf9Y_l5t1B4_c5BX93quuXVCXfV8QvAm9myFYWIwjB19v62Ypq4gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rVjbtz3j_99OhxSK3bii-N4IZj5BY2pEorxqZBfEWGrwMHu1_pMUbmzAYdug8Gt_8oT5Ov8M6ovbSc2-xa61XsQXSDcNy6x6y5Gwyisp__LRAQodVHXYmWHtpOlCI3UZDj3NAf5_G4Pyib9hK9p6gXJ1YRrLGN29JrX1ljNJAPREgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -432,17 +432,17 @@ interactions: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:27:39 GMT'] + date: ['Wed, 30 May 2018 21:41:26 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [6e8368fc-6d1d-4c62-808f-2645f948b6a4] + request-id: [542f0a6d-a7b6-4ed3-a126-a573a68569a7] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1182'] + x-ms-ratelimit-remaining-tenant-writes: ['1191'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -468,10 +468,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:27:49 GMT'] + date: ['Wed, 30 May 2018 21:41:36 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rV5V7eNRBeMTKTrkmgyUHSzhUxqfzZjWRLKVTPsx1lNHo30neSFTIfw7OKAM9oqBfLBTQlHP1XJGgQK_2a6FWg1wx3wWjoRD28p0nu2A-K9xGTt7dsZLrpdlaUBsYeCHTAhQ3fdc6MdmhkuHMMtRnInW5dTxT8wkHCeX5sq5GMB4gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7reUBxzTG8aMa25ob6x5JDmOCczvu4f5jRQWB8FPMDmH8bkUKoh81A7MXUstaVYJHJFk2N5pgrmqUhl2WFYfWhMhlp4tg26hAn0s246_o6UT1Iy3C5xWIQf2VnNX_QGX-d_AnXgzH7fTFnyCn7KcMR4wRRecS22nYWiKft6hf_bQggAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -496,16 +496,16 @@ interactions: cache-control: [no-cache] content-length: ['171'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:27:51 GMT'] + date: ['Wed, 30 May 2018 21:41:37 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [fe779a64-218a-4d08-b67c-1a3b6a074261] + request-id: [bb77d80e-16cc-435e-b35d-5bfdab038c46] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_displayname.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_displayname.yaml index fd87ec9902c..d79edde1f32 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_displayname.yaml +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_displayname.yaml @@ -22,10 +22,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:27:51 GMT'] + date: ['Wed, 30 May 2018 21:41:39 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rV8Yq-JCNNJ6QpjMkWXyBVC3q3emYPtY6gwRWf9b-kfKjLOs2_OFH3nJEuQWVmkAwl4677gCXhowtn90AoBgMA9jwexcWHVybYBgS0WMKmZx3hyQP61yjLazaL7hVDgAyMERWe9HIpP_I0jfen2huZ3A2a1n_SYYLlCNG_L7uxa8gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rP3nzB3FFMAcWqJWo84nQmOrJyFfeSaf5jrSECAvfWCalp0ZrJboT-wkoHTiWzFFBLHgESu88CHBNh4zxIX-qDT5fx2PRQnVs6xXGwBUMZq-XPqV4jcPXTa_O1DkQDk9Xz4Fq4KFQgvNjrWgehUjCkxIR_P_ASzly1iO4RQ19ub4gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -53,14 +53,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:27:55 GMT'] + date: ['Wed, 30 May 2018 21:41:41 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1183'] + x-ms-ratelimit-remaining-subscription-writes: ['1189'] status: {code: 200, message: OK} - request: body: null @@ -85,10 +85,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:28:05 GMT'] + date: ['Wed, 30 May 2018 21:41:52 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r8eS1NtN8xqP2d0qUMx14NYTQufYpu6FtTFoDMAIoHf6g6fJLBcWMP82pUuwmJ53bUpGD48567xk-zBMrjIlrv7Bq27TTV25-llFLbpUGrEgRU9g1wNMZN9RG_XUeP4KGhvNv0cmvFFLBV2-OtNU3gYzkvD2thYs1jPNqkDkMkCwgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7raxbfVL9vO16TVGUoCkV_vIJXEDesRQ-8Se_-HKZcOjqJ8Sm-aqgXCiIzzi8xqSffijZJWB0-JzXdA4qhl-TBx7ZKl2r8SDHxHCV-oGu__fA-Wf1jbxkBQjUUbWhTsY8jp2T7viV8-jFJhm0ztTg7Om4wChMyQvL8r5d7f5qI4KIgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -115,7 +115,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:28:05 GMT'] + date: ['Wed, 30 May 2018 21:41:53 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -145,10 +145,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:28:07 GMT'] + date: ['Wed, 30 May 2018 21:41:53 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r44FJ9pNNnzF6vn6wmqbs8wf9CCg_tbXyE_9K23Fv_qAiUScfr9sEZlRufaUm4ZI2vzVTpYOwWfZIdN8Lxj5mdzsxvCYxX6hGjd-MkoyqrMSfe2g8EMWNl_zX5s5N5y3qNaZowjAUFsYJ-OHdeFck7WBzuZEnNIlNJioym_UsWE0gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7riGv0GDVQRhFP5T3Scmr8rwiQukoeB6ZMZFCSVX8cUqknBHZXkdtoMLNO_6-j47WgnR5UyO1_qLqEyE5JjAAsvXXJQ_YjScnZ39Io4FgOD5dMDbFVI9UgI8jKZ53uYp1dsnOhcS2O4SO6FyWGawQeDQmtjEzFeEvBni1F5TXpQ8cgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -178,17 +178,17 @@ interactions: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:28:09 GMT'] + date: ['Wed, 30 May 2018 21:41:55 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [c2a8af85-a80b-4936-96ab-20fbebf76659] + request-id: [748bad6c-06bf-47d5-98dd-a430e1b0706a] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1188'] + x-ms-ratelimit-remaining-tenant-writes: ['1191'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -214,10 +214,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:28:19 GMT'] + date: ['Wed, 30 May 2018 21:42:06 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rRrqCQqoBh9mzN6e8npLinmvXWOd3XsdINEoCkTQsJIOWvKke64j1OtRX3opDEeygneSx9HggPGt4Ij310hYABms8RmQbKd0Qj9G6TxGnDsx8INmfG00owEunxgTMdDrT6aieznK95sC5-D1EWX5B0mWaaeDRtxLe_J267veCBdogAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rMnkPkm6SPU_tr5aWniB7X6E8mrKxsZZLO8PXfMO4LiH-ccOpu9vbY9x4eb6YhpGTiHm6dJyOj_9uaToN8k0QbqFeyyvYWtIbzUR-y2YGs4AyzQIR_Uz6iVtlyCS5iZ9LZVw6G9fyB4MbVVUbzthxnJhLoPJnVYN3A_TOiIAU5x8gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -237,21 +237,21 @@ interactions: method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"TestCliDisplayName","details":{"version":15,"updatedTime":"2018-05-24T09:28:15.1235449Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"TestCliDisplayName","details":{"version":51,"updatedTime":"2018-05-30T21:42:01.6597292Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} headers: cache-control: [no-cache] content-length: ['595'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:28:21 GMT'] + date: ['Wed, 30 May 2018 21:42:08 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [ef8adeca-1b25-4518-b481-5c8e9b79669e] + request-id: [c7221d41-53b3-4a63-9729-a0f6bebb7177] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -278,10 +278,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:28:22 GMT'] + date: ['Wed, 30 May 2018 21:42:09 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rkg-8dOhbF7itd2mIpx2EDq6DUkPXRbllEWhoF1xIx7t3ijYDvmjvwyt9D6MvB_bJMZRmIANRWS7l253AABIuZFSTxX-_kazHj6ks0TPqaCJESo-0eyo6UgkYmGHr_Aiq6VsyiPGYsqgPu5WL9gl9SKTasHF2BlVC8bpXawLNM44gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rJwSOw3K2aEtnMGuwnbOVmtG21PfGi_huEFKNBiUlH4AtZZ914G6aIghYb-2_C9YtqpdxEQE74IEXNwgoxrliSfHREi4E0e5sK2OH2lpGquOwwbHPEZHlvVALJJZZB9sP0-B8YTIH3GUBV9AHvlBNCRsVDJwC5bNr-QctogdyCaAgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -309,14 +309,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:28:26 GMT'] + date: ['Wed, 30 May 2018 21:42:12 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1177'] + x-ms-ratelimit-remaining-subscription-writes: ['1189'] status: {code: 200, message: OK} - request: body: null @@ -341,10 +341,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:28:36 GMT'] + date: ['Wed, 30 May 2018 21:42:23 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rGWeU4ePZW3GYAEBYeSpvPJv2lHyPMXzIY3huY0g_x36NltjQMvFbhx3bZsKGRWCvF_2J2O_SUn8Wh7isrnAqlKgog593c52TdJQDf3fhQV8VzJwC1jeQhHw1JCM5oliA3ZRWOHcnj_T2HpYMN9LfarEOBIQBU_NXzJpjfxcEYhIgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rJSrpWz_5-GADice_PpeBLx1ohzh1y_KpB2BRNmP3MwKr6GPtdCAwSEIxc3CgvjaVdAEY4hv9SKtPOh6J7aPeiDMYQ_6mGdMJbUpjunUo8bE061k8IEE3ibCR3-uoYVHSYHVa_0rrCz8-q4-emulSqk1YStD6PFVke_ajv6LAEbsgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -371,7 +371,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:28:37 GMT'] + date: ['Wed, 30 May 2018 21:42:24 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -401,10 +401,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:28:37 GMT'] + date: ['Wed, 30 May 2018 21:42:24 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rzK5TQMqX_Kik2e7A0eXW53T_r0IJ-Z6ElmVnLM4nTa-DapeETkZm3OOr0iVzzUyJeK_PY79Qo7xxGVWy-WddFb_lhsXrdjZduWo4bveY9qFdGiiIsn34agMRWrtb7xyFyhNKU3xv7VukVbsNf1wAk6KbYU4Yuo16OvsBPe2bgOQgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rNGw7Cnf-HFNxVN91PQ_-3pGnEF13kEHr_L8o72KfO-3HT6mbjLwEkuhDMAtCBjYvUAECDWJfREdRWtT-qgH4JQ-6VOq6OLo-VLU6n1QgLmRk5GhCBJN_krMeivYKaZZj5FlJRbgB7Y53XHm1ljlqsdvNCxEwOaxa10aficocsmkgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -433,17 +433,17 @@ interactions: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:28:39 GMT'] + date: ['Wed, 30 May 2018 21:42:35 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [b0e37c0a-7086-4cda-bbed-f890b765abda] + request-id: [2c15f01a-7d46-42f5-9bbd-e970c1e71058] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1181'] + x-ms-ratelimit-remaining-tenant-writes: ['1195'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -469,10 +469,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:28:50 GMT'] + date: ['Wed, 30 May 2018 21:42:45 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r9pFsGyDufzZYVs2mIx8L-ehvvdvGTHFuANL5S1xLI1BFDLplaVuJhKxJhsVIxZafNBYwonZxpHveDxuHYLVeorNAU4NIq5bE97BeuHNyin_K7TpxqVlilH2IJchvnbgAgIGXBwXQj2NWw8caQwWFJjjQ3NTtu3HV6JMBQajkbOsgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rpPzEZMrvfVUHeYhnGUqYG9UWroQL22dfxv_0wGC4zionNQaoQvUGFJFmoXD1QFx0v3_hZ_aidOx0pTTuOwHfJmXh0kTDMW4Py6pPY7ZJMYoqkUBWBKi6oPSOogiP9ZwGZHkDm4jxh3WDs9LEjnLTQ5N-0BKCw9EnZF_uAJpVN3MgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -497,16 +497,16 @@ interactions: cache-control: [no-cache] content-length: ['171'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:28:52 GMT'] + date: ['Wed, 30 May 2018 21:42:47 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [b7378934-a34e-421a-aad8-20076faff7ef] + request-id: [e4b65b11-ab03-49b8-a664-372ff6330bd3] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_displayname_and_parentid.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_displayname_and_parentid.yaml index e24a7957ec6..e92b642bfa2 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_displayname_and_parentid.yaml +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_displayname_and_parentid.yaml @@ -22,10 +22,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:19:44 GMT'] + date: ['Wed, 30 May 2018 21:36:23 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r54V0ZRDOQDxhSIlvDvE9uBfTiK60fxLapMQzq47whpkH0Psn-Vk9U9qWL-jOZuv16I8_CDFnlaeOutOFKKFFpXNSs-X-DNg75NzEWGHWyBc8mCMyARoNOlOglq5zy-cMGqVSM3uSzNW95kF6YGm6EYSJpU2nONBxofAuxOupsh4gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rq0kkCMRAcbMCyacMxiTIopLYlSEvgsATkYuVWJ7q21rLLxAgXiqdgq5tmX5MFdbTRNHXS_5wDk2uTKpDY1bGDVk9wvWgAGMtqGzcXvnDFFBdaPx3s3LWAWhqzDI0DSv8QRKfHaXaFOWkOZd1USpXCgMqF2jlx8w-sxERGqy-mf8gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -53,14 +53,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:19:47 GMT'] + date: ['Wed, 30 May 2018 21:36:25 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1176'] + x-ms-ratelimit-remaining-subscription-writes: ['1192'] status: {code: 200, message: OK} - request: body: null @@ -85,10 +85,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:19:57 GMT'] + date: ['Wed, 30 May 2018 21:36:36 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rtRs9h_zjab3LCl_djvlY55AkE0-Z699WaNPUUgSoc1lzsf1UwLSG_5hsuByABOPTlP0dBhzsIgnirJ2sTEL03gT9wiE6jGKOD88ZmWST1Fc1tDhQpX6yv0dLqLLgR2gSQ3xSBPe1Yo6sT5Q9uB6gcDR8X6dPsYT1eHEYni5WzeQgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rXT6NlUtYkDkvFscUHBqPdlvG8D67puKKg5BMWdzjaFsRaVpYOtAYLl5BBZrf3genmR_DSBBoAg3apMntYGHiI0C3h_Tpkq_bDjYZlRiacpW8dhvKZMZ-hK0skGcm4QGLOVMOXenrjJdjYShmBzPIEYQTxuhd15iD6YNS_C7bdtUgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -115,7 +115,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:19:58 GMT'] + date: ['Wed, 30 May 2018 21:36:37 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -145,10 +145,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:19:58 GMT'] + date: ['Wed, 30 May 2018 21:36:37 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r5L-odZU51ug8iQmznjNgJ8t3dqZC6DsRzfjrxgIzXKWl0x9P23UjRO-X2JWu7CJGU3u30bbLpMKWLDOhJbPlF2m1s0Iqwq_KIW8r9MQ3qjIwy9Bw-fqQv116Zkm5JZ3dyquaVgB495m7AsvFJIoHzei6ddSqk0BPolN36W-rawEgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rF-642ZQMQM1OLcSN2OsAdCV7pDW4eJz2nNs2vZBstfd7oqgbS5TRZmORiTrVszSEmzmSD60CRjGBjZlUbtK3I6tnyxnwNWVSdWe_EkqydMHi3rKktU0zOrXP_YAnrJ_ss1qpW1agQYOittW8T1BqLNrB4Wb3-T_4rFZQ-Ypi_AQgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -177,17 +177,17 @@ interactions: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:20:01 GMT'] + date: ['Wed, 30 May 2018 21:36:41 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [bb7a22f6-be45-4e4b-bbac-32004340310c] + request-id: [ee67a8de-7833-46c4-9b4d-9df55019dede] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1183'] + x-ms-ratelimit-remaining-tenant-writes: ['1196'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -213,10 +213,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:20:12 GMT'] + date: ['Wed, 30 May 2018 21:36:51 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rNwWcVvuJR9B33Y-SZfadPeeQen5mIxt8JXWaJSF1KLaw2X02a2349awwTWU34tW-cs4qABl9SAyI0dYFbHf5_PhrCcKLDh1sO65InQfN7UzwJ9HkrDabJrTPAOAieXfxq3EWSu_y7SBNL_ETNdbzxzQK9uaB75aDhMg0RhNIYA0gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rjEKT58LXwmNvtvYBWD5heDnnZXFEylDBgm7mkf9KPIdXTNGyJxTqbDGwiVLdIBvFGrHu-QJJd9gnr5yENYDQgcJf5Tgb66Y8MCb7t4gv_mwkTKrdYmVIoXhV20tWyXz_NuKry3Ucj1LNrFw3dwlDv8cMdMKjM6P6_lHarWWQURUgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -236,21 +236,21 @@ interactions: method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroup","details":{"version":13,"updatedTime":"2018-05-24T09:20:06.6783577Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroup","details":{"version":49,"updatedTime":"2018-05-30T21:36:47.1007881Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} headers: cache-control: [no-cache] content-length: ['589'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:20:14 GMT'] + date: ['Wed, 30 May 2018 21:36:54 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [e41417ab-2164-46e4-b8d4-6304d566faee] + request-id: [31e25293-2731-4f40-b484-a7a1f4988937] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -277,10 +277,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:20:15 GMT'] + date: ['Wed, 30 May 2018 21:36:55 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7ruFU_hsq5WZbiDaHqjvErYCbS-w_gX1UAUir9T4OIkYAarbmj9qIx8xgdk-akRCI3sww5qOiAt1PmCIcLFobEU_MdoDaIpFNFI8S8a9A21Frz7o6zR3daXztb6FBdQmVGZpqVBopwFMFoth1bMShouNS-NrQ99Qoh_K0rSgq6lrIgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rKkH4gC43K4967YmA30pt8BRlAgFBJDcIgOPk6uem7_cYJxxtKIMNK6H2LkCyQn_gnY5dPSvJN1QUegI6q7d6poRJ99cfXPBwG9CBINLFR5zLb8paX-y9gm1nEZ15TgNeD8FpALf2uJK3thB7ARBze-IGPetY0jXdu81BllUYLOcgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -308,14 +308,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:20:19 GMT'] + date: ['Wed, 30 May 2018 21:36:59 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1191'] + x-ms-ratelimit-remaining-subscription-writes: ['1192'] status: {code: 200, message: OK} - request: body: null @@ -340,10 +340,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:20:28 GMT'] + date: ['Wed, 30 May 2018 21:37:10 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rWFs86mFoTaJxMM_d9orKxZTBScwhOylkK6pWOwUK9Qri4ZCTt3J8wCDla8GTu8M0PqXMVxYl59iuOwtvai2EiI4B9fIdGHVdNplN1YSUXwkvuKr0uZ9Zor57U63LT7fZ3OqT0df9QaTU2Q4ueOOofEhFHal-9Pmhd1oyJExNUDQgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rVijnFi24oJdKUZjshas1vQqimnBxnV54Qdl0Q4kqF-Pn8tIm91oqwhURABmcjPJtwx6R_X7TMVDpF3m-VI0tZ1zMPrelANAZL4cfnNmX5eSURbkk4NwTxsA6wn7tQTBwc-JkKaCoLr5alsreD-56DZP4DQlovZZbb3oVlLMYzPogAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -370,7 +370,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:20:29 GMT'] + date: ['Wed, 30 May 2018 21:37:10 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -400,10 +400,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:20:30 GMT'] + date: ['Wed, 30 May 2018 21:37:10 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rQmnNWulPpmZ0hA8EIb4rRy4gJLoJ5MQCUajSJ1el_BKPvtmadnVpAlQMlNWACdc25CSVWueKBZckDFhY-rL4Y3FQaGy3JBOXgIIRzft5n8MqjB33BusNlbaLsl5HAMEFYICU1pNRTMg5HdNy-uQ0HmbDGfHBylOoQep550Z138EgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rPfxVU4dNUt1MFScnprS7QsxH75FRSA0D1u3YL0GUs0Fs3h0nviuIDEP7FXM42laHBEorx3-yzHZOpN119GBalPiTM4Eqh4NTAPdYmVDSjashQE7Q0OuTTuQ4Ha3aMtgRWQLc7zwXJmTE_Jc3ZV5ENuIdq2rAIrcXeL5Bt5FPlJkgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -433,17 +433,17 @@ interactions: cache-control: [no-cache] content-length: ['182'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:20:33 GMT'] + date: ['Wed, 30 May 2018 21:37:13 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [4ae40d9e-d7d5-408b-a0fc-57b23221948f] + request-id: [438fa6bd-a4fb-444b-ad63-510ed639b55b] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1191'] + x-ms-ratelimit-remaining-tenant-writes: ['1193'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -469,10 +469,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:20:43 GMT'] + date: ['Wed, 30 May 2018 21:37:23 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r3SvZEsAmEKDqSKRVMViy-p1oQvpjoqjtXjzrsCyspzmuzqIuzaksJ5KDZd0N6881aUfTMEmEZZy6QO79Bo1_ICHGu2zS_KywGIjQA_mjHU9TLE3V6bJPttpAs9fTH6erD34rA2WzeKlaiiY1urpljFQefxppMrbS1s4oZBHIAfkgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rg9xcercZdKTpaAP0a2rAnOspzsbnISw8MHX7PpmyAkC-RBJCVdHYlGo7tjkQrlwI8s3hhhr_RnqAUXbUOe5r9Tt49Gvc_F-3YTR6a5wa1PuDdsR1rDb6OL7F8HVZ4Jsm573_Kr2jkLra8bfhC8CPNAlmxYihXXrfjAn77K7zrPMgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -492,21 +492,21 @@ interactions: method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroupchildDisplayName","details":{"version":5,"updatedTime":"2018-05-24T09:20:39.6696064Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","name":"testcligroup","displayName":"testcligroup"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroupchildDisplayName","details":{"version":20,"updatedTime":"2018-05-30T21:37:22.1729746Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","name":"testcligroup","displayName":"testcligroup"}}}}'} headers: cache-control: [no-cache] - content-length: ['542'] + content-length: ['543'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:20:45 GMT'] + date: ['Wed, 30 May 2018 21:37:26 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [6e7790b3-88ff-47b1-8972-16e5085309fe] + request-id: [a5badc46-f592-4e85-bca0-147cd486118b] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -533,10 +533,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:20:46 GMT'] + date: ['Wed, 30 May 2018 21:37:27 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r87LJVOFVCDgAvyP3ur3bzd2gSYPlVs8yMqVSgs0xSb6aY16zPs-H3SWnhGwoeXpZny6-Rqo8NCvChCdLp-q-J-aqL6izgedKIeuB1ylo7ITeF_W17vUXTBYvLS-PcfdycJ51EkkshAE-O0_lh3_MaMZNIylDBiT4Jj0eoziNwGUgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r5ChM8bgH2SHbtzdnUsRVmyiaaPsYg45vjQ8FJFtjIZTRtAPYvfp13b9c84IMTDUd98wVo3dP-fukfA_XpWtE4QpM52Eo7JzPeQ95fbpeqxomYMod4CKWDlxzXmn_J2wOEj6PmqN7yDDxKovZ3nKLy6b89ujG4PNEul-ooUQ_9Z8gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -564,14 +564,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:20:50 GMT'] + date: ['Wed, 30 May 2018 21:37:30 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1179'] + x-ms-ratelimit-remaining-subscription-writes: ['1191'] status: {code: 200, message: OK} - request: body: null @@ -596,10 +596,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:21:00 GMT'] + date: ['Wed, 30 May 2018 21:37:41 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rQy562xUs1l4enW4FgH-jzPtdKTFIRy9Q12A3PzAPWWYJ2u0Pxf26vBw2Ue8_b7EOdD-R_bGEIJB3k_keeqaMvVM4s4t81baHKSPUKWE0P5aBuJQeQciInIhyYxCn8klYMUJ7b00hokr09rOWWRD8yMaWokyd08rNiTJmqe3FP38gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r0uIqSQvNYlDDP7gTt3elhiYdPWA4aFg79rcXnhTK5yxRcJskJ-EhhE77fh_ueimB9WqxCjykVoux9aCoQi3ngkQiF4Xklu9Azr0GxkTON3rF5LKRlsuVVI141BVw26ypVhsq4UNk0Pa4gqEcOZOV2SLRzS5gdNxRi7v4STB3SlggAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -626,7 +626,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:21:00 GMT'] + date: ['Wed, 30 May 2018 21:37:42 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -656,10 +656,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:21:01 GMT'] + date: ['Wed, 30 May 2018 21:37:42 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rcQqDETXcgN-ZHUwOjKwATvbVI7qE2xngfRlrKxOekpVCYO9BV3ffp6-8M2YUP_wuOZ71PTYaq3dBZWN0BCOH2wWuugb7QLX_i4hOnCq1n8mAOF88uaGPWG2zmDUxfMshLGB3BunqVcPyuDMM42T1yaLYuQtqMWZyNmznDAOaWNcgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rKX3VGS-zWF9_ErXo07Gql0aU5B12zRCv93J4iCYM9xtbOnipUlfsIjOeTMGJuq5k1DJZE8fOQRPOPnrDvOPxcOabUYe_t_cOFZxKKjArWKztaaCbogh7tM3attqCdVHc0--Eup6JFuVVvGxaV9eEeRXYgSy8N12G3vyvsakRKd8gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -688,17 +688,17 @@ interactions: cache-control: [no-cache] content-length: ['182'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:21:05 GMT'] + date: ['Wed, 30 May 2018 21:37:45 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [54f90119-9dc8-4510-8f50-e470174bfa32] + request-id: [a9739e69-f729-4b6b-a46b-ba885b05a080] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1186'] + x-ms-ratelimit-remaining-tenant-writes: ['1197'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -724,10 +724,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:21:15 GMT'] + date: ['Wed, 30 May 2018 21:37:56 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r6pgv4Wz2wr8ESR5sKLP65bSieeo9d99f4BISrdQ8aYqg9gbbir6rSVWoDzG29NMfw_XOUizEUO2wUfo8csCDFbMwn8DMRI6Xpxm9RHAV9aj3ssGnVW-6YAKw3x2Jh9C2O9rVK8S3fqwATELJPAAO5Sl4cSWly8th1BuEtjXmJiogAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rdxNAOXWYkn30qaUAqh18EoLgTtGUvgJBvKp9-jVJq7H2cVnW3OO3GOMfqxCMlPN6twOCCsJWpmWcDvHuAQiA8a6oaBJnyCLl8-kq8oLqz8X-YnRwv8rlzc58smcOFhHFHdFfSbuZe4l8v09PqJBRIW3Wi8IG2F6AOmYiweE1X7sgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -752,16 +752,16 @@ interactions: cache-control: [no-cache] content-length: ['181'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:21:17 GMT'] + date: ['Wed, 30 May 2018 21:37:57 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [74abfefb-ef89-4760-a88c-ab7bcc280b5d] + request-id: [dfa9e033-3c90-46e8-90d8-f9f87ef94eec] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -788,10 +788,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:21:17 GMT'] + date: ['Wed, 30 May 2018 21:37:59 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rBt-tw3jfBH1LDkY_wqG_tJe3keKlBBaUmbnWbY7Y69daqbYLZSyNA4ffTrdL9X-V4SDStvhU2PPzPDp2cV9DMGTYtB3Pc31arn3Mjz8P8NpiGu33p9x9t4FjTRHKewYHpflWb1Bhhs53yn0nKAqBiQJ9VNVHsjlVlaDlb_08si4gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rAG84AyU9pd5ueHAnC_jAOwDaQmJz3XYLE6TpT0lGDld3-5Gu3pzGvU0HHgIlSipRCRxT86avmbzldhCu8n83RIfN_GLBc6-tiSlYvFiaf3C4tlF6u1DYtiPWq3YVXMVslYjhZuLXuIenc6Z0VqSnxXxyYxVp7nhuSTWZcuGUPWQgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -819,14 +819,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:21:21 GMT'] + date: ['Wed, 30 May 2018 21:38:02 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1179'] + x-ms-ratelimit-remaining-subscription-writes: ['1190'] status: {code: 200, message: OK} - request: body: null @@ -851,10 +851,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:21:30 GMT'] + date: ['Wed, 30 May 2018 21:38:12 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7roSnbqT3Ra-1qCijvhrR9JCbQbnma-EtmD33tURGtKcOpyLfFoCqgWQAcwI_8wmZAJ3nNz3iRec2oF4OxnrPC9SoFddIufy83uZtFloCFY1j7eiguTzNQQ7G0JaTMMLVAtahL3zteYDxp-DOTk2qyfgBewkgs-SSsf9cfraGBKRUgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rFhyTY5PabQcYxxd4EAGESDpLpIK5HJ-1McGvalYSUp2C8w1ALazTfK_V83PvFk7npN01_LxrRy-QRj8-kkQvHQhWvlCuXXzUwRmwkeoig1q38fzCgWRTrEvHpL-90zdjCjV58h-3QrdEHfYABWM9tolXAGLWF55QdSPqdK5P478gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -881,7 +881,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:21:31 GMT'] + date: ['Wed, 30 May 2018 21:38:13 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -911,10 +911,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:21:32 GMT'] + date: ['Wed, 30 May 2018 21:38:13 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rN98UgPDeJ6Y-3CM5Vd_z3QvfRM0-_1pioOJ3GsGgJm632ETBTTTqQvSfYzx_fAaIwcspx4JqVmDednOQUjA9Bytq6P94MEY39E1rwYBel7wWkFJgm8ajpO46OvbZp6VTGpzCP1Bv5z1BzqKOmEdZdGizfnHhGLakcuHWN7rrEv4gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rl6gV8n3p4yygDxrgSWCg1sY0XIcZRsJi_4cyNScWh9_5ykqybXtz9WdupHQCraC-nBVrVnzOWgLsse_SM6rwm1LgPrL-orFdynnSmAKD_7lTtCNa4qTjsu1UrcTLhrXdUo2W2jWigiyibdAygGlzLgyvQZd-yrUgBTTiwxvnnZEgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -943,17 +943,17 @@ interactions: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:21:57 GMT'] + date: ['Wed, 30 May 2018 21:38:16 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [4409ea14-41ae-43c7-b560-ecfc661b920f] + request-id: [72776bbd-268b-4c58-acdc-8a3eac1ea9cf] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1190'] + x-ms-ratelimit-remaining-tenant-writes: ['1192'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -979,10 +979,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:22:08 GMT'] + date: ['Wed, 30 May 2018 21:38:27 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rYUzHbE8fMZVO_zvaiDZEh5JZoiqm35ZOB5NHq3o2ow57c2KPUgf1ETk2MejpMTdUFgKbOzuAhkvp17JJoFUucM6-gWKxLE7Rc4jNU4eZSbAiOCbPAOmA_sT3fslBi8TyCkJ06fSmYNGTLsocnKEwIOekjnstEtNy-xs86EBU0VUgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rL0nFNgmRAF0mJLLZVqBP4p_0g81pBOJ_xxEcHZktDbJNSLhz47FjGUO2xEW6ChfW7I3VK4TCLj0kZqyzlYzDIFHf2nwjnZfChxCgaJQk7zvuyrZGNbzUGB6JqtOBoL4zLaJhcNbzwPUWBfhLinefc4I77YPD4RwseF7bAucmNRsgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1007,16 +1007,16 @@ interactions: cache-control: [no-cache] content-length: ['171'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:22:09 GMT'] + date: ['Wed, 30 May 2018 21:38:29 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [a1e6272d-b049-4932-91cb-df128be4cfa4] + request-id: [4bfa3acc-ff39-402f-83a3-9ad0893fa3e2] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_parentid.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_parentid.yaml index a12cf465618..e106f583ff7 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_parentid.yaml +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_parentid.yaml @@ -22,10 +22,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:29:45 GMT'] + date: ['Wed, 30 May 2018 21:43:39 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rIw-G5-RfWCs2ynS_Fwc00lUOty0JY7VeQB1QNruEZ5WnUVajsLwqJ5y0N6lCwOKvn0YWjwadxXvgJy7gE67mnddQMZVFBu1_ijBXSgMJl2cU2lp05gfLN-4DOWjbBLHxVeQoZvwfuVr_C2MrlS9S2xlfNAiUw2AmPjd6ctl_jwIgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rwQoLdQnD8kkBijqhJ34utkFnltmipzXdL1iNlRKsAv3FKSCvVAk3UJhyYNNUKc_ylYGrY0BOZdwNzFwERePV3OqUhtemPF3E3MEmqRnFCTCqD7B0h13IlEGFaXEMZGE300zSYt0rq907aEQjoVdKvx8Ka3tLklv5cIdypNmOnvIgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -53,14 +53,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:29:48 GMT'] + date: ['Wed, 30 May 2018 21:43:42 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1190'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 200, message: OK} - request: body: null @@ -85,10 +85,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:29:59 GMT'] + date: ['Wed, 30 May 2018 21:43:53 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rF-RhRW-WuGvnJ79Qh8IAURtz4AfqCcKdBJN9DfPyCMpvJV5EDcgv-5dqCyWNjwbSjIXyDKgCDX97XqkdfhMnAwPxpwLy_HTnZi0MCKIWEjGR6MbJxlb6ayeMnExceg7akT8uD2YyWgOpV2_YX4jahzaCPipr-8shjJN3ausB-K4gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7redOK2tvHye-xy1_rp-x82ASOYLYzqkx4-dDYtGXPTZW6xwYKdIncXQtuxy7QsJOJ7QVCzNs5_kM9Q7hicyJl_LyjikUI_zf5Sko-7pf0IqZ14hgmodvgWJsjOWueo_tpplQ1JsFsOyT4K96opnp0CRxUtHkb2WTSjS4zrZFgqJkgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -115,7 +115,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:30:00 GMT'] + date: ['Wed, 30 May 2018 21:43:54 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -145,10 +145,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:30:00 GMT'] + date: ['Wed, 30 May 2018 21:43:54 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r1rkcfvWDAW6bmWd_81VbAY5XQI6q2-ZacSouwCBNmEu4oJ3Udf9-yKZPdfmXVK_gZYSLo_gW-NrGuv922O1457gh370KdsatVKHMKRFu6VJr_JPhade1nt5eNLdBECxdKPPvAjldQAIS7TKUds_rc0k-zcJNcpR4PdgMqgRwmCwgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rds5BMOYqi5RlIhm7ZCfD0fZd5QOzoLClAGKweD7q31hrhCa44QJJazTQNUr-w_sdJb47UJ3OucHhWp6H0qF1bMpAWL7sMt8vmKxGGZv8Jnj6MkAX_kGfENAqkabLW7kGfsLbkw14nfxOkN7gVy2TST9fx40bzLiJmbzD6dZ7RPAgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -177,17 +177,17 @@ interactions: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:30:03 GMT'] + date: ['Wed, 30 May 2018 21:43:57 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [aff58c0b-b175-4c55-b332-f1283f1381a3] + request-id: [cf1b2009-f5cf-4b70-98b4-862f948bed44] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1187'] + x-ms-ratelimit-remaining-tenant-writes: ['1190'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -213,10 +213,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:30:14 GMT'] + date: ['Wed, 30 May 2018 21:44:07 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r6_w1yFFJOs9fBL3u7NEuOn-iSvpOJLaaYwSsa3ebQbCQKWGVxuFH7ZtgoALihktYzfvo7Fv4JDN25i5lOzbwTGa4gLNPShrFUqQeAGMv5wzWEhHnqqUOPzHOCb1PvOlWfe3e52ipqn-B5vfyfxmfj1zWSVn87CSKtI1tHSKrHxIgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rKGveZHYrCKvfjxPOOJwEVgvZ9g_sPA7U_mWcwO65327tYL6RALmtqGUmofA7a0wQC3lKbTOEnajxT94bsaSDoi38v1rs_a7BYwWDp9iRsOD1f-Kd0ZKF22dnd6W_gxylQHRyqlcpDHsPsc5PFHOiAu5xoVXY45Lv-LPcyVw0ZhQgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -236,21 +236,21 @@ interactions: method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroup","details":{"version":16,"updatedTime":"2018-05-24T09:30:12.5312454Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroup","details":{"version":52,"updatedTime":"2018-05-30T21:44:04.832855Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} headers: cache-control: [no-cache] - content-length: ['589'] + content-length: ['588'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:30:16 GMT'] + date: ['Wed, 30 May 2018 21:44:10 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [0a8eb204-e63d-4cbd-b94d-75c5622b846e] + request-id: [46fa80a5-c0bd-450f-acf9-1a3091502f55] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -277,10 +277,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:30:17 GMT'] + date: ['Wed, 30 May 2018 21:44:10 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rVIJuMVXly5IU-zP4vujvMGP1Rs8YZrcyXsHrBRBUMCgdM-WqozpilQlDwN2Ly_XWL4SvGjy_Osbjd-CQEMDxhRSRsUbKURzYgYWVvcGiKW_ogstrPbz2011654GuhqsybtseFttG_SNPD5ybvLd1VpXxK5lOgmvKleDSyBuC36ogAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rsFY-gbfEgZTs9NnA9PCLXGRgd1u5m0m-gSSHXxj17N36KHG2Q8BDFc4ZQVpME6_88WCCM5a0ZegaiZp-4HXq7CtM_G9LKR2cz92I4DIqEwbPVmc4GO3Q605WJ0WURMPnwfiXSDKa91v5am7bDFSZTTbn1xWy2_vskZ8LPXoG1WggAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -308,14 +308,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:30:20 GMT'] + date: ['Wed, 30 May 2018 21:44:13 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1184'] + x-ms-ratelimit-remaining-subscription-writes: ['1188'] status: {code: 200, message: OK} - request: body: null @@ -340,10 +340,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:30:30 GMT'] + date: ['Wed, 30 May 2018 21:44:23 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r76mQt5EJw6JNiZ2Mr7nTwoijbh9BQk59UeakwDEJUpwiDR4Y22tlxX4wwzgUT1TPhPXNHpVxRL2bTT__LQGd0L9ppckI_P83-LC_cmhJtw0jovHFwPmgQbYJRdpcZm8IqjLbugFAIKRpF04K-vy7I_W5D879Bm_Ft8E4V8D-deMgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rgvZkcn7ahiUu8X9dzwMkTlOP-jQTQTeFqQKYqUchYYl2vTo8pCkG9hiZNIWs-7AP6F0jwC0enFvPq-3p5Qa0krmeOiQx4J3C_-Foa4j5oWLOh0w8zXD9G7y34X2GbeUaJZCKhdiMSNao8x1zAeeuFi9zqQU41Z4DwoiBZYI8HUEgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -370,7 +370,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:30:31 GMT'] + date: ['Wed, 30 May 2018 21:44:25 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -400,10 +400,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:30:32 GMT'] + date: ['Wed, 30 May 2018 21:44:25 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rW8d5fjp5m6DBzPg8VC_eMANhtAciX-O0MGEp0mrWUHqoNJZJYjbu7Bz9cUyiWrc5h0mCN0v1dHJN3pJjP1xhsiCnUgAwXlCw3swo6acDbx8BfirCryN9erlVvVrS2psPT9JukRO0m47sYPwqfd0cX-SJKtXTWCthB_Rls3c4RpkgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r-Jsu1NwWqmU_crqxHK8p2SCR6mKbWVhuA_5M-u6zmLfTCBHa257ITwYEQjAUQjNFaRdirkc6L-yuGVsk7YDbIhzsSVlqGHuXrjWss8acyAAvn_ODD5sgfDzbyEPfhiJ_9scFx2pvl9960dLNfzx4YFbNmj0vQ7oQRiq5WWn_2FIgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -433,17 +433,17 @@ interactions: cache-control: [no-cache] content-length: ['182'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:30:34 GMT'] + date: ['Wed, 30 May 2018 21:44:27 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [024b9903-3400-4f54-b94f-6162c9381e2f] + request-id: [c93cd080-269f-4fa9-ad6b-a1be9165d7e2] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1190'] + x-ms-ratelimit-remaining-tenant-writes: ['1194'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -469,10 +469,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:30:44 GMT'] + date: ['Wed, 30 May 2018 21:44:38 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rFC3No6hbuSmT8PXZifWXzR-fX8iLPKyHR8xmLAh8NGN2QOJQZDIG5lqHUCA5duVP7p_UG66FT28e1DnVzCHpu9-jKsDXUqa_Gi5ptzbwHSt0k_DnmseNzwG4MWI3oOYJLB6MIJb0h3Nd1dWyPRsNbizxcTnzoIjUTKTcVozzdrEgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rDmGpkAFJQWS81GrPselae5BUrGAWFynjMm7pNEtY6N5KiAomKlzKGzfrp1umHMuIqcz0q-x6fHo50S1qGdmKqTl1oXUeSHVJm9dlFo3Tyua5OgvCYvCK_ELRWJrF2ltGqQtiXvgVwY3PCqX5Z7Uf_bguydgwOKk0TsVkokOYTGUgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -492,21 +492,21 @@ interactions: method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroupchild","details":{"version":6,"updatedTime":"2018-05-24T09:30:44.2154512Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","name":"testcligroup","displayName":"testcligroup"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroupchild","details":{"version":21,"updatedTime":"2018-05-30T21:44:37.5232777Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","name":"testcligroup","displayName":"testcligroup"}}}}'} headers: cache-control: [no-cache] - content-length: ['531'] + content-length: ['532'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:30:47 GMT'] + date: ['Wed, 30 May 2018 21:44:40 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [822d3c43-93df-4640-af86-cdb99bd997f9] + request-id: [16f4a30d-9f83-4391-bae1-753e323d6114] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -533,10 +533,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:30:47 GMT'] + date: ['Wed, 30 May 2018 21:44:42 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r82WWIkpUZDL6MQHWNwT12lWDzlESFvxM2hrSjlxodGfsmZNNie-fUH8rKQHhWIIintc9PfbMyZYKT7TyyVuf3qcS_ihN3gICLmdbKoo-kPL9pXCgwnAMFJ15TUUk352TmiLyW1i4oGUQr69vFzYWnEwf7d6Yvil_Ee0sBDpXW9YgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rk0pgLmJ3IpyWO8ncyrxVHGzJpcE6F4uwnLf9Lil7C1PrMBcMCHczOZ_g3dvJfxpyHfALwg_jFpKNXJ47Pes9UiB7egSHhM5_zuc_bWFbZaMS4-3W7W9EPsebg0zqyhDMXN437uQYx26nClVa6G5foJ7Ae6NiGYuq-Y9yP9XEh4ogAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -564,14 +564,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:30:51 GMT'] + date: ['Wed, 30 May 2018 21:44:45 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1190'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] status: {code: 200, message: OK} - request: body: null @@ -596,10 +596,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:31:01 GMT'] + date: ['Wed, 30 May 2018 21:44:55 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rAeHhmd76rh8DyLc6ahz7AUDZ7cXoe7tcOWlZATNM_oin2qNNBVWHRzYBTUuGZWzqPVKDHCKDG0RAVrcGAMvUvEyix41VpdJ6QKEVHiQxcbzzGD6wSVHIV77LlZvSn1qqJ7sKJBfQbSST1Kq4pSHkw85Gs32CvOzLnMa-a5IfL30gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rSEp2VdZMYDW3SJuz2Sx-BfVwUTc1WnpOhEyMi2SFQyMhIZM05o0AG4FHiGKur9kAjN4vCv1uYNvmg3oWIiEO0qA3PP79rg_A8VMHwkPl2aTudxyIENHCbHZTH3l8qcdRd7FAyPelKOEO_qkwRJ-ASg5cmUmmRtVkk_nNj9HWCAogAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -626,7 +626,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:31:02 GMT'] + date: ['Wed, 30 May 2018 21:44:56 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -656,10 +656,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:31:03 GMT'] + date: ['Wed, 30 May 2018 21:44:56 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rszPbef1YgP4z70t45I30XqwYF4jdc-TbB0P4Rx7rz3U7uBZ6IE7tIrijbMsWnGwt_Bam_qjpYB5BVQTBhVBzyxXIFOI-be9f0ClJdJUQrN-434hrfhY5qiofEe4nnxF6lIsTDaTa0cDbzST3rzMLsG4RMR02OkqQFmVuFxfB5iogAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rNYYYdgFTO0iJIuHy3jXknkqYwend09BG1Uad2E1NShtYk9ydsvoM51lS2lAMs0qIhCMlJ88mMRj0PGiBIe2L7h_77uDUeYz5Ljm8VW3VWHhGjV6upphrQeYBpy2A6TxrNqZRzBawlu3hu56iPv8XU2Xwx1jP2ewxulVh9IWujQsgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -688,17 +688,17 @@ interactions: cache-control: [no-cache] content-length: ['182'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:31:05 GMT'] + date: ['Wed, 30 May 2018 21:45:00 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [8bc58fe6-4bfd-4065-a226-1b55e10cbae2] + request-id: [06624db4-7a04-4c4f-93d9-efefaa1eb83b] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1186'] + x-ms-ratelimit-remaining-tenant-writes: ['1190'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -724,10 +724,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:31:16 GMT'] + date: ['Wed, 30 May 2018 21:45:11 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r5tiRqV8MmlXoeIeAUB2r_z4lrMiWG9iTu_mplNDcV6UI9qH5YWJ0N8hRDysgGcWvVFZYm2z_QQRd2QuUeaGbue_0xwZCYQM40wL8aVBlP1gq5beTe_UHuk0FmT6LOQFS5-HhmUPMwejGaBum2Nim6NRKbyWRcCE5eGeScXMq7WMgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rpUdoET8_ZObWrmUbQwCTDXaKsiGBwOhCsrinwEn6gUZAF8wwPzGT4KXS_T-wFeIP6nZTjVEw-hDbe-hu4Me8SQUX1dMoYrglltRCFvxpljXwhxNLymou9gLpb14DL4f5duy333qwIljyjuLXmHPAKHvIPb1uvW34jec33uDMrGcgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -752,16 +752,16 @@ interactions: cache-control: [no-cache] content-length: ['181'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:31:17 GMT'] + date: ['Wed, 30 May 2018 21:45:12 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [dc58ea47-32a5-4c78-b1a1-65de7a226d31] + request-id: [02c88e01-5375-4467-b417-339a0caa89db] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -788,10 +788,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:31:18 GMT'] + date: ['Wed, 30 May 2018 21:45:14 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rpuf_EPG4rgZZqTPpUWMKEkb6kSTpHMKOAeY9xPRRAnJvkHZarWp3FZ4aYtaNsqHPUt1tWhdDML7Q-XVb3-oygLMpaOBimlk6cNwNggZVwTReEPNcoPw6A4U8O-21tRVBaqVkatpCWvfT_8wY5d0HGqhnH_Mdre9v4_Azf_FPbX8gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rfB_E6XPFQ_TFqc-hFKkhK1T2h9cGKjug6kzrXT3znYoU1sAxiCzZP0xJ9IA__0LbZfn63BYJSeD5b8fQ8Q3qq1Gb7TzPAdcJB5ZjQeStW4_7VVdkKRX1V4L4a04mvEZ7KpxLVrxy-pp7KqdKxG-NnDeTE_ek3wJ6021mQpc_lS8gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -819,14 +819,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:31:21 GMT'] + date: ['Wed, 30 May 2018 21:45:17 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1183'] + x-ms-ratelimit-remaining-subscription-writes: ['1195'] status: {code: 200, message: OK} - request: body: null @@ -851,10 +851,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:31:31 GMT'] + date: ['Wed, 30 May 2018 21:45:26 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rlZnMooMiTOAVeTkeHDMIcvnWfe_lJw9CXE3yV6GSpumsXZ0sSy0R5ufSSfmbh77M6g43FXZ9-jp1wUr8SMN8gs7FGVrjJFoo7-_F_6OTStM7ayW0PUXtZY1HfscOBFism2qzSaOhjlgDsnpm0nGEt1mpp5nLewLCiq3v8Fjs78QgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rH1F0mwihpJ8BQKEmQfyRNZ5Jt-9AecuFRgE-mIfNqm42gjJeFqUtPzi_EIsabs3mjijtG82f2rgbKa6QB5YEgenwX1MbVTqH242j_t1R-HfXZavLWcbKiJZnFBVc5Y7LPmp1e1xyAS8vzmMi8L_qFjH1LjA5KEqux9GaUOPZiuggAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -881,7 +881,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:31:33 GMT'] + date: ['Wed, 30 May 2018 21:45:27 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -911,10 +911,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:31:33 GMT'] + date: ['Wed, 30 May 2018 21:45:28 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7ruB-g8w2XpVoUW7CKJa-y8lBtdGC9-NJEqc1EErgEaoPjp6vI-niNtnErLKmsK0xvOFIF7XzoXvH6ppx5RrjLFQBbPY_axv5AU-BUO7W-FsrtyuguicwEMFIRVmhMESAPf7qcqlHd3JKxPmK_9BGp2Y90aIyulkVbhNS-9qJmk9EgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rjmqAxx4t99vaFVFrS13cvljo0QwqQkxzbSJAxIfA-WSZ2wPyhgXcPanREKQKkLPxPX_vbBEpkKFyqKSWaaWVnFQHq5SEtr20AhEWuE-No7CbgtaD73wMRs20WPmHRL1DFme8hhUqu8uLYGxcdOWJCHWc8AkPbWJFOINhP9nroiogAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -943,17 +943,17 @@ interactions: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:31:37 GMT'] + date: ['Wed, 30 May 2018 21:45:31 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [958b63fb-6120-4a1f-b2a7-7063de00b3b8] + request-id: [51e15454-f5c0-4bed-9ccf-38626592eb07] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1185'] + x-ms-ratelimit-remaining-tenant-writes: ['1193'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -979,10 +979,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:31:47 GMT'] + date: ['Wed, 30 May 2018 21:45:42 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rPzdq-T1WUNL2NACamoKajUnefDF39ypJK1XQ1p4Twyyg8GQmK6sDyu7cT2ZdZkCUpK9KxJ6L7I4lufYaBfeyqNawrjsi_HBEkUC_dUF298uYthOGuTmswj_fYo3mgvv9iJ8-efDcFFFadFmvIijkitj15LEyUYQyaqpkw2VSfK4gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r3ypcZPMECboQ2aWufoPRrGxELiYp5-xJJggAZrNMjrH9lcZk36ZLaKJJ16WBlDu47eXBtHYyTIRQqgRxumKrHgj7zc5vQJGBHMS59s7W5BmTxfGnWsB19kgRCS8mrJjzVF4WykI3gz9kSKTUfUnogoB_D3DL7AN-ekM7DxDD1zcgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1007,16 +1007,16 @@ interactions: cache-control: [no-cache] content-length: ['171'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:31:49 GMT'] + date: ['Wed, 30 May 2018 21:45:43 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [91aa5c5b-abd7-462d-85dd-1851848c76aa] + request-id: [a156dc44-396e-4a28-a4a6-cfaeac2c5c47] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_list_managementgroups.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_list_managementgroups.yaml index f07cc401d54..08bf6f44a05 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_list_managementgroups.yaml +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_list_managementgroups.yaml @@ -22,16 +22,50 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:07:44 GMT'] + date: ['Wed, 30 May 2018 21:11:59 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rtKHhWvvPE9F3RcIV6U66aUoTmkqFCmU63kXpWxPUj_K7E4fYDnMEpjPelS90Sju581PnelMxY69tz_6gTCXtxRsnRKUy7sVnH7liTqzUKaWmMRNj5f8-Eur3BfgZlOvJJJQYxD_AC-O8_OX5zSVqiwBy6gko3yErOJ5kivb6_fggAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7ryEvvTETNAva6bC8OTJaBkx-hi-NTSr8sZpBpQHGy93rd64FI3lnkfGfgxtOSoTWhX_LxZFxlfRXJ0X7RED6T5kc9rK5_dRXllgV1ub1B6I_x_Tcwz2pfPcLK_e9VKqJ6YrMflT7xQFRffQPFTHmeeY-5UF90lzrK87VhN5-XC7ogAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} +- request: + body: grant_type=refresh_token&client_id=04b07795-8ddb-461a-bbee-02f9e1bf7b46&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&refresh_token=AQABAAAAAABCw9Q9oa6nQrnwvHeP1w5Oi6bpc-ncjhqWq9y4T1FDoBSeSMMYMXOvyBRTIT4OdekISzLOT0wMvp39LoCgwTy2n3uFa7LmpQPas6LG5zCHaB5QIVlpOEJ4PX_qswvzTD8JCiuoeCPZUpfY36o0ky1Pzx99Phi3wVUiF_GGG0ZsDhqKKg0juR-aawwvA0f1Rs4mDJV-JqoxhgkyrtRxFEGGESV031dDmAYRgmJRkc6LCafNbZBCncAVjhv3tzmu7ShjojQoGldpXBzaERwtDrua0h51V0LwBZIkSvu0L_s7XY5HFyrMtWFRYC0pBO8gEX8WZzZbcI8dN8VYogSJ1Bvpy7Cwsz95tZRh1BrImraeyL_ugPhDtWOSkExMx2EwQeoRRHeJkC_mkuD_bh0EwN0S0ZZce3A_3qCkxx69Padqgsy3syR8L-5Nj-1EAIyDLP5pcAb8m0MIzb8d07BaMJGAB2yLWmZSErZpF4qlH8sYe8VYVE6sn2yx9aSsjIYSMcz7abGyWmRRpTxYid0o4JQViAqwSMRodrlAy4FZ1sBnb4BVaqbu4pPgsT-DgJoudgwVllM27B8LnNgRTYSArIR6jPxFv-bWDco8QRMnzET7jDlwU8LKKeITeWzU6TYESboLd8T7tCvWzNIT83begfG6o1XDtFkFQryhQ4Rg6gfrhX1Y10OdQP0VBFAJZXUkmxF_WA-436FiJjawpYr8jGG4iFW8VHVMQxPAuPNvptZXOCAA + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['900'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: POST + uri: https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/oauth2/token + response: + body: {string: '{"token_type":"Bearer","scope":"user_impersonation","expires_in":"3599","ext_expires_in":"262800","expires_on":"1527718320","not_before":"1527714420","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImtHYzU0TDMxdUFaYTFveVlvYVJTR0NpWUt0ZyIsImtpZCI6ImtHYzU0TDMxdUFaYTFveVlvYVJTR0NpWUt0ZyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvYjFhZjQ3ZjEtMTM4Yy00ZWQyLThiYmEtMTE5MDQxYjk1NDUwLyIsImlhdCI6MTUyNzcxNDQyMCwibmJmIjoxNTI3NzE0NDIwLCJleHAiOjE1Mjc3MTgzMjAsImFjciI6IjEiLCJhaW8iOiJBU1FBMi84S0FBQUF1OEFMQWd2ejJlaHBWSlc2VFZVN2RMdndJeTNuUGZaeXh0SHN1ZmZTUlh3PSIsImFsdHNlY2lkIjoiMTpsaXZlLmNvbTowMDAzQkZGRDBBQjAxNEY0IiwiYW1yIjpbInB3ZCJdLCJhcHBpZCI6IjA0YjA3Nzk1LThkZGItNDYxYS1iYmVlLTAyZjllMWJmN2I0NiIsImFwcGlkYWNyIjoiMCIsImVfZXhwIjoyNjI4MDAsImVtYWlsIjoiYmlsbHRlc3QxNTcyODFAbGl2ZS5jb20iLCJmYW1pbHlfbmFtZSI6IjdmN2JkZDZjLTYyMzktNDQ2OS04MDRiLTNlNTcxY2YxMDM1YyIsImdpdmVuX25hbWUiOiI3NTE3ZjNlMC0zZWNlLTQ2ZDYtOTcwMC0wZTE1OTM3YzFlZmQiLCJncm91cHMiOlsiMWI0NDRkMzUtMzdlNy00YWFkLThiZjItMDM0ZGMxZDliY2Y3Il0sImlkcCI6ImxpdmUuY29tIiwiaXBhZGRyIjoiMTY3LjIyMC4wLjE2NSIsIm5hbWUiOiI3NTE3ZjNlMC0zZWNlLTQ2ZDYtOTcwMC0wZTE1OTM3YzFlZmQgN2Y3YmRkNmMtNjIzOS00NDY5LTgwNGItM2U1NzFjZjEwMzVjIiwib2lkIjoiODIzOTY5ZTItZjhjMS00YWRkLTg1MjYtNjI1NDRlMmY5NmIyIiwicHVpZCI6IjEwMDMwMDAwQTYxNDY1NTkiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiI2ZG0zcWk3SUl0aWhhVnJRZURFbUh5WVBuUmpuVjhSNVdvajAxRTE3djY0IiwidGlkIjoiYjFhZjQ3ZjEtMTM4Yy00ZWQyLThiYmEtMTE5MDQxYjk1NDUwIiwidW5pcXVlX25hbWUiOiJsaXZlLmNvbSNiaWxsdGVzdDE1NzI4MUBsaXZlLmNvbSIsInV0aSI6IkJvMUlZM3lQbUVlTFJBeHhKbjBDQUEiLCJ2ZXIiOiIxLjAiLCJ3aWRzIjpbIjYyZTkwMzk0LTY5ZjUtNDIzNy05MTkwLTAxMjE3NzE0NWUxMCJdfQ.TI8iteB-CD0Rn5ZKeZuz7EBsAm3VswqQmA_0gkfjezLT-HFS1zLZyGk546MMoSdnOADytF5YMPaaVph-Qe0uBDNSCGic7iRrxMfd1IJIz78JzKRQaguuGjN5kWzFCE8IlAM0iXbFIuCzjfK7vS0oa7Qo6VldSkqGjH_UcHXmHishKNGLBEAGrne-NiNLmvvn-TKxtPw3h4oH_K-tUURvF3wzKKjjRDrvx-hBnDK-tqNh7nbcpE6SJxDQbgo06ZwspuNpq59Q-ErtHJdvlDzIx3homNMBJLznEKruXH1jRAxeEL4VH2Mc1fsEvtIKi4eLpOYO1F3C8SCZpAiNGGE0YA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['2064'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 30 May 2018 21:12:00 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,10524904.2308,'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} - request: body: null headers: @@ -53,14 +87,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:07:46 GMT'] + date: ['Wed, 30 May 2018 21:12:03 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1173'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -85,10 +119,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:07:57 GMT'] + date: ['Wed, 30 May 2018 21:12:14 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rJ4W3rC1UvmLpOhaBao81LSiauXWUUBhkvghK4fwVpb34ctjAMaDzfwd3UknVY_f0flLbHVTYvikMax-5dc98yt5NOpzgn9_Yt9XxsOclUOLCTWdq8veOw9QMzFmzdxehERRgaJZC4eE0_jG_Gy9vp9jJfmbF2JUTGVrAyUVf2DkgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rrgOBbDU_YDjY-04kK81Kp9gCzKZcKXXqdnSyHhHaoyB1Aqql054fCPrpqNi67MtX0CzQEjAhjrxHGEWk6b-B0YBSfVpyVvXwA_k4oKSW5-TDXh2aOVqEQMIWVAXq5qD4b7NbqhiUsaVVma83sHO0KsR_p5UsU6ZttPrxtTSNsMcgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -115,7 +149,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:07:58 GMT'] + date: ['Wed, 30 May 2018 21:12:15 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -145,10 +179,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:07:58 GMT'] + date: ['Wed, 30 May 2018 21:12:15 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7ro906PVn-Zo8275DQhPEjAxSoOB2vLIMfGEeyJapRkdFQ8tiiq7zcU6fZFWWzOJaSHIXiNT38W7_4CijYfgbXhn2CvUWYxzV2nisZxz_VQ_kNUOxPYElOrpdL7FG2nHABobHgyr9JsIAlcAL7qiL0hAKc1khrdoVhJZoETKsBZOkgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7ri2zwkIjVu9N_SmvvdjcfIf2DlDR8HBt2e7oEiLYLeVddu76vZ__QtVuyeUG-HRRzGvzZ0J_b886vEJKCrnZp2AS5JkAx8SdIravMKhhlNGrWg6d_t2zkNa3veXZuV_zRGzGzIF9FtOo8luL4sdeXOl6YJelhe9v9TCS_9LvQ57cgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -176,16 +210,16 @@ interactions: cache-control: [no-cache] content-length: ['1122'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:08:00 GMT'] + date: ['Wed, 30 May 2018 21:12:18 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [1f5d0bda-67e7-47b0-95ea-597f8d1b43af] + request-id: [07094ebe-9246-4d93-8daf-9ce353791a66] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup.yaml index 591634cb040..4e3b7a6ea1d 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup.yaml +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup.yaml @@ -22,10 +22,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:08:49 GMT'] + date: ['Wed, 30 May 2018 21:23:45 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rOktvu6yuyNTq4hGKoyAniBOFI69HM2ke5UTEi1a_fZDUsFgg7gXW-GZFRq6K44EJL2Gk9jZ-DIMv-AUIkpT4LeEECD89dOkAkW1xqyjlZlpiaqtha6BmGh0monXdfd-4TGDb75fr4LGXSAxHI9TKLIn6R44ETRpeDWf24HNZrhYgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rfr7l3SMLKK7_DlMvoQUQ0MtRe_rAYEgYIfgpqDVcsAGZkQctpZappijlcIuU-_ryv62gq6o-BZMM-bF2fta0NxZtPNFyDL0Cm-7BdOscbIXtCWBKfGJq_IzYjKA97VJaEenscqYg-sMB2KXUGgFmKwUPZb1b4eoYP19OTDRG_-QgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -53,14 +53,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:08:51 GMT'] + date: ['Wed, 30 May 2018 21:23:48 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1172'] + x-ms-ratelimit-remaining-subscription-writes: ['1194'] status: {code: 200, message: OK} - request: body: null @@ -85,10 +85,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:09:02 GMT'] + date: ['Wed, 30 May 2018 21:23:58 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rc3Ejbf0WaKwjdmCOjAJ_h2nWoPRLBgo14zaLl4WsX0M7ki8zOWkhOAACOX35YrG_NYFtWo3nUx7QTwZq56fzfpuWehwx0ahj-Yjh1iztlBKg5GHlCQYXGTkG-V47bmSjHT1Nej_zAuxIYhO_7QAbsq_xO7ZD7zxHstPVGTtLYP4gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r_Qn20GC_0tC_0q9mADxMe9KNWUYgnHFqv9in6ZcvgjdSpnVeRZkdKlE9nxNcd7n-549nD2kbEIsbVHX38fyTwp5aH7F7dNyR3ll7043Ttmr9XyGfWg75KacFsXLCBjktCyQw105_gIq981qQ2ZOc4cSJbFjvz9UfWh-5U63TCtsgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -115,7 +115,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:09:03 GMT'] + date: ['Wed, 30 May 2018 21:23:59 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -145,10 +145,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:09:02 GMT'] + date: ['Wed, 30 May 2018 21:23:59 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rHKcQNKgspbodfLFnP1AzUbgI4TaKmbx1TqnC9JkXWBqMmC6ZGg94LjiSbD4wTVEGkAghjuu6XOc__L98ScjzeN9X5lKnWqdO_SAESdHPGlIpBcmJvPprjJdb-Kb4jgWHe8O7CLzILtdbdWv-R2v8K37oc5h_OgMtHRTkYGvmTeYgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rNz884zFkF_JyTH9XZ1uWyovJQH_41JhSGXqKO5Qtp0Y-yileHw18c-ZW48nMPce5hhNS_gGS_d9rLdJCAdPF3xPWCgnAZ-M9LgtZyBuWHCno8y_TSHgL2ZP4YZnodXZJWMwF55ih9I1YZuit2w8cLcIEF_t_fiFBryWh8ybBXwkgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -177,17 +177,17 @@ interactions: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:09:06 GMT'] + date: ['Wed, 30 May 2018 21:24:02 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup1?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [a19313cf-9a77-47d3-b459-b5a4a6a432fa] + request-id: [ab57e386-c0a4-4019-a969-6e1d9ebf5c5f] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1184'] + x-ms-ratelimit-remaining-tenant-writes: ['1195'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -213,10 +213,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:09:16 GMT'] + date: ['Wed, 30 May 2018 21:24:12 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rP8xnTyFo81Hwzc1K9xWAf3O041A-Waoo1OO_ajOTgYafiRG5HOvgiizvucf8EntH6shDWW-oMJ9ETpd18IeXnlcewJtOBPCjOPI4W9U95ec-HWZD-gsf-zQoGHIFtS2DpZSupiwopTp1P-t7g7xYwEwIn1MT_nq3rcEIdSXsexsgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rHAq1zP98qZfDBI0Mp_qGVSnrqD_NLG1b_pMzfnMLjoQQmUcDwwflJFmSOB3Lu7osU3PSgov86vDHpqHeq2r8nTtQ-JI8BSjYKylUjDsw66xb70k9DhTf0bWWQ_TB_PpAtl2a60-s6PHgFkm5qmq2kz4w1q0VmKbjr4GTU09KOeIgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -236,21 +236,84 @@ interactions: method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup1?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup1","details":{"version":5,"updatedTime":"2018-05-24T09:09:12.4054383Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"Running"}'} headers: cache-control: [no-cache] - content-length: ['600'] + content-length: ['177'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:09:19 GMT'] + date: ['Wed, 30 May 2018 21:24:13 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup1?api-version=2018-03-01-preview'] + pragma: [no-cache] + request-id: [f1974c65-51ce-4a84-8bcc-7409bcd84ddb] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-ba-restapi: [1.0.3.804] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.6.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['131'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 30 May 2018 21:24:24 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rqH4GwVL6f_Ql__XRYsBmtnm1bTq5OSTEsuWlNiDAFjlhZNc7Bc_Qsr-bTr6hhlQuv6JNnaAUWcEM-SEHEr3pJmOqKUEmc3LfsIUhQ4qIerulo9KFy1PA-5ckGMXbLWUP-lQdpXAW2FPgPYV63iCJpp2frkuZVwe434f7eDU4eJcgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [account management-group create] + Connection: [keep-alive] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python + AZURECLI/2.0.34] + method: GET + uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup1?api-version=2018-03-01-preview + response: + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup1","details":{"version":13,"updatedTime":"2018-05-30T21:24:13.0407273Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + headers: + cache-control: [no-cache] + content-length: ['601'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 30 May 2018 21:24:25 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [572a2706-2de1-45d4-8623-1d43030013ff] + request-id: [29c0b30a-d8c5-4b38-ad0e-b10af5a156e2] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -277,10 +340,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:09:19 GMT'] + date: ['Wed, 30 May 2018 21:24:26 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rW0Pu_qMwmLw25t7Oeqo_cuiHf8XFY5hqbQp-ktoTAuwpPFmsregEOz07x6KsYHIH3QfOotdem27r7skxp3UkG8JGDfTjQkfkw1dP1CIzxGzPh3IY0AmLGq0T6_XLDULu70WN7yeKyl3X8jffGlrxV7ZzdIVuQQZac5SdGruSCIEgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rQiSwGTt9bvIrvbSq21nTwAJcuiptVujp6bFZ_7ebNZlqLyZhmpQVWiQjGqVsVImQHGXfpdE-1EEQQBRQs-9Xkl3EtQQy31Y3No7zt9eAabaEpXxi-T_vOcl2Hw2nBpgnEqqscC2I3VEKH_b-L_wKuQMeUY7X1fGUFjznjIg7b5wgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -308,14 +371,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:09:23 GMT'] + date: ['Wed, 30 May 2018 21:24:29 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1187'] + x-ms-ratelimit-remaining-subscription-writes: ['1195'] status: {code: 200, message: OK} - request: body: null @@ -340,10 +403,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:09:33 GMT'] + date: ['Wed, 30 May 2018 21:24:40 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rKSt3ComuUFkRTHK6jU_cfqz7eRJgS4rSw6FGQwc3Er9qvny_7_HcaxwYBSgSWMxBwpXXsuvhrZ42PAbKTcPkDdn1wY1X57U8b9R2w1j28tAlmm2hDBhxsEjGmhR9ywN9F6ilCWLL99szJta0Z12_CB-dZYoLitht8vkzC_00eQ4gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rFDLQirc8jONm3jo6A3GLYNak9g-wyXieI_yX7W-9xEZ-Ngmu_vsP78Y0mrPM75seQxsIo-rD2zL4hwCBhs1M_OhewBpVIdZv7i8n0NIoRS8B2pSjZ-BnNtb05SDxZEMU49-3chbsIh3uAAi3WKsRm9Gzxyd6iT3BKelYmMmiBj0gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -370,7 +433,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:09:34 GMT'] + date: ['Wed, 30 May 2018 21:24:43 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -400,10 +463,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:09:35 GMT'] + date: ['Wed, 30 May 2018 21:24:45 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rcm_8W-Ube-0oosnxu-1XGAs9cguA1OnLRVV2_U7Ms2jda8jjFeuBMDMw1b5iagV_BUX4oNA18Vrq8SBC2dk4U4Rk_k1z7zKprF3gD2R4f4NesQZfvR3FvGiElmkxS_TJxVNifngrSLCpE6vVPqw9R-TlAWmY7kCaxCBZEHgWNmAgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r0XG1hurnIH_-RlCoMd5RyG8hhmGBNYZfDokfeit43YpnucO2M474fm1R1yGnLUKHsB81jvNYvqTPutUD2XoMYxtdEWTBJ_djVUlJnvvCW7LIssBgkyIAIdtOr4qZT7Esig2M2ZWDJXNVsWxS6NuwWQ6iydBqNfBvXmcukVUztHUgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -433,17 +496,17 @@ interactions: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:09:37 GMT'] + date: ['Wed, 30 May 2018 21:24:47 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup2?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [9d16337f-9d6a-4b2f-94e1-1b923facf215] + request-id: [45a5ac87-a068-480f-b164-d899da3f1b98] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1178'] + x-ms-ratelimit-remaining-tenant-writes: ['1194'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -469,10 +532,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:09:47 GMT'] + date: ['Wed, 30 May 2018 21:24:58 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rEdj4-9E9ArTO9edkMZeP7jgHzUrdQdkl-wrXnh3VH6jcxFiXhDpuRdM5cAUK19auNK5GSI_ch0wRNJ86H7FMNWDaymTayypSeDaGR9wgRMb4M3p2AiCWSSw6WPv6gK0JT462r3kCc1WKCg_6HSJj6sWGdOVDZkSN_n-p_rn6mE4gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7roB53yBxYUSO9VFJKpwC8uahHD3-JoWuDmvV2Mv95MdEVoPG7SKUkEWWi-GzDuGxoGsM1QuJ0HbF98-zZDMKz0tmBOP0zA2e0yS5ofuGLcaZqFQ-HVALn6e3g7LIQNx-NWQNc4XSHFJceB3c9bd_SXrQ8lQf5OPkDi61HR6IwlnMgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -492,21 +555,21 @@ interactions: method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup2?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup2","details":{"version":5,"updatedTime":"2018-05-24T09:09:40.8793377Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","name":"testcligetgroup1","displayName":"testcligetgroup1"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup2","details":{"version":12,"updatedTime":"2018-05-30T21:24:55.7473471Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","name":"testcligetgroup1","displayName":"testcligetgroup1"}}}}'} headers: cache-control: [no-cache] - content-length: ['540'] + content-length: ['541'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:09:50 GMT'] + date: ['Wed, 30 May 2018 21:24:59 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [008e5086-4723-493c-8eea-27321bb6efc6] + request-id: [177deb9b-79a5-473a-af6a-098b78e77889] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -533,10 +596,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:09:51 GMT'] + date: ['Wed, 30 May 2018 21:25:01 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rUZzdceK6_S13c4UqYXrkhmABHnEbC2HHa7vA7zj9AeQi_Yqgb-EURbs3ozSvHHnsTs-h_9xAsDkKQ8nVouiZwK_YfsIWkCpnwtWoFPnLe2tzX-v12CbxLZPMQDFCaZfAGF-JXq5tPETQMt3YiVI1Qc13IgU5C_FagPI_8EcYPmggAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r3TekYf9Jksgq2jdemT7--YvqxMIbx63xueOnAZjW6kYGx4c87SovpV14xez0mEK4i7MCw_Td_wV0tYQfntYcLIOQp-3ioHYzxUfdrQsaA763QKjtwc84Xy8E8N3OwCIJOA_t7Ah_Xxx-WPGyPAY4tvu0H8HYko2oYx1xduMU14YgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -564,14 +627,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:09:54 GMT'] + date: ['Wed, 30 May 2018 21:25:04 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1188'] + x-ms-ratelimit-remaining-subscription-writes: ['1194'] status: {code: 200, message: OK} - request: body: null @@ -596,10 +659,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:10:05 GMT'] + date: ['Wed, 30 May 2018 21:25:14 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rWWQ8uo2F694XWERfdusBLBLEktfehwA3II9R_BrevHkJ-p5GTzmR_txHV88br0V18TpK4N13dfdEn3rEAyQH8axHUV-mJ_RoDH-iSfWRuc5fQoUiZvltF_vurR97_W9_qclGQsNvOKiZtqNBNTiMNv-ElLBjhwTDqWCaHPhe21IgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r44vx_XNPeH2sMdFuPdG9g0meWPAsKhdQALwigfG1QNZV7QpIdszF6eqGK5FYuRFVxMUmOAPSNiX5DKetP-mhdz_sfw1HODkbQLp2-DkvB9i_NXMrJCskoL9gHMWLxO2e1a_2UAyhrP2fA5imTkt434jmxS4GReS0X1HdynCFmAAgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -626,7 +689,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:10:05 GMT'] + date: ['Wed, 30 May 2018 21:25:14 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -656,10 +719,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:10:06 GMT'] + date: ['Wed, 30 May 2018 21:25:15 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rCBDQ3Lsj5VLwQAq0XTYLf563QZS5Tuk3x67FRgEk-NhvnL-cwx9QhFO8zJ4f5O7LmgaeheQ6SJt5rn66UsNIF7yXKXuXRaK0YmJWv6lnbtYMknhbeckziN-FXo3dYMb9ofAG8j-MrqMdPTnpmomwF2YBTlbd9giy4UXUU1WQeC8gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r_d_YM2K-lnFk5XhEjnVVmhiz8fKnVhTA1WB_XGSMQvIR2JLREE8YBaZjrkTqJhnl_wAjU9cyLUJHEqC2f7WJ_9qqpEdocvEfJeasxrknQPQoqF_yn_kvOxyPLElbEXP-609OF_9Vs4PSsvG2rfpe2Gd3nry3wbgLgppwCejo6OsgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -682,21 +745,21 @@ interactions: method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup2?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup2","details":{"version":5,"updatedTime":"2018-05-24T09:09:40.8793377Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","name":"testcligetgroup1","displayName":"testcligetgroup1"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup2","details":{"version":12,"updatedTime":"2018-05-30T21:24:55.7473471Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","name":"testcligetgroup1","displayName":"testcligetgroup1"}}}}'} headers: cache-control: [no-cache] - content-length: ['519'] + content-length: ['520'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:10:07 GMT'] + date: ['Wed, 30 May 2018 21:25:17 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [507ac6e6-ee9c-4ddb-8135-e59dadc7ed4d] + request-id: [8484a4a5-0027-48ce-b867-ddec06ad8464] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -723,10 +786,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:10:07 GMT'] + date: ['Wed, 30 May 2018 21:25:17 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rXu5jORBFtKYdTRnQT2eb2QzSdE_-QsXrERQPQ33HwUtE2PZp7fN2sLTUKJsUn6QajAZ02CueZjpWFM_cJu9wGbNdYbZjlO8Y2ZXtVFVeBQfUL66CRAFTkOEcWT-uY87RHjtfFFX_itJsnio0ARFNaDVVGeJZ8-aovr4u47kkHwIgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r6ZL9sLo8VBPPhP_l66mFhi83HEyYJ5EeMFGybDWOK0CNFv4MKNYEsYw2wlzznrQYu9bDImq76KezCDuBwFuankrxGsHfpAm_gZQe7XoefyygUZkW3CsfhQY16PX0HXSd8XqgKiiaxUJdp7Em9tINIVNr3Vri_0OdyQ_F6GyYt6MgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -754,14 +817,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:10:11 GMT'] + date: ['Wed, 30 May 2018 21:25:20 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1180'] + x-ms-ratelimit-remaining-subscription-writes: ['1193'] status: {code: 200, message: OK} - request: body: null @@ -786,10 +849,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:10:21 GMT'] + date: ['Wed, 30 May 2018 21:25:31 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rfUv9JO9NeSUJR56P5u6UXRX9lZPuWHf8DmdvMqEudA4h6W9WdYUt8UnY__xcESQ82HmbGNGnqcakBIuz5baEllfFoZ6kQlRxUtrKBtdCIW7NB0EGk_kooltm1UErLQbGt7Met7H6gDjVnW46qcw0M1V2B3WyPjCLEUT6IGYgMgMgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r3pCGvJ1Cq8tsRcUbHLlS34g8PtNxwuAiH0Af-H18uBkPJXL2pAm3p7IRDAt9wjUFMLfQ0UuTOpiRBK2YzoB0e7KYzYwbKr533HmrlT72I7rkn9DpgSgi5tRCaHl1N8-o9ct5sFP2qUdLazJcTKtGGCEv0Kfpiq1JrjfxQfrFXbkgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -816,7 +879,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:10:22 GMT'] + date: ['Wed, 30 May 2018 21:25:32 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -846,10 +909,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:10:22 GMT'] + date: ['Wed, 30 May 2018 21:25:32 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rnch3hTFk8qt02dQehFVU2ztVnHPFhJ2zJgw4-h29e7GczPx6rmAmxTjD0UvtQffTij_cf07xtn-yevoqjueDwj1W_R_0ME6dLeaFrThjG-59fcbJxZfNIfilWyW0AMmz6m7UhcJzvjyBILR9u5CR06jaYY9Iwfqy2rXoUoEsVvUgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rHumYQNy2n5zCImT4NBlcJ9_m6qioUvzvJx2qkiLj7MFi1-kRC-aogHhYYkmzxjgHOiyAhl0Tb8iJIoA-7QsXeNe4dc2rhTuAQ8wkAK9T71KLbkDqtkzCZGaqskVTw0VFnQpDyB9i7-CM-S0NWwoAeYez4AfIuiln370DC8X8a8ggAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -878,17 +941,17 @@ interactions: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:10:26 GMT'] + date: ['Wed, 30 May 2018 21:25:35 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup2?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [b6e734a8-c74f-4e0a-a7a7-4232f0ccb29f] + request-id: [5a484896-3b9c-4947-b19a-631b5334e0a5] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1190'] + x-ms-ratelimit-remaining-tenant-writes: ['1198'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -914,10 +977,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:10:37 GMT'] + date: ['Wed, 30 May 2018 21:25:45 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rvtnK2-uAy5kEsjU350OhTcyYE3mDSjSAruSxBU7LlBD61NR-L0NU8Jk4sEoVOhmndC6DpAmFFtgoYDKjsvElBbixARwzleLVLpJzcBcfQPf5NMIH-QIZpFttt48dZaVv0hrQRjq774dSrKb6qdvQGlP5dvKbMOKpoSoVMpitYW0gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rki7htWJNrupn46iKT6hrO2B-iC5bdUS7VtKyYhZA74UVGKHEXRuHa51jViHN-fCJgV7VQM6DznRTMazcLDouT9trod0Sa0rqYVH5TLfTKiwS1IReUGSBWFxF93QCK6cOb8N6ouyoZgq_xXI65CcDuu9BY0UEo6Y7bms2CByEiLEgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -942,16 +1005,16 @@ interactions: cache-control: [no-cache] content-length: ['179'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:10:38 GMT'] + date: ['Wed, 30 May 2018 21:25:46 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [36ba9f2f-32f0-4932-b17d-d42ee4f0acfc] + request-id: [322732f7-bdb3-4413-b56a-f021119ff00d] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -978,10 +1041,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:10:39 GMT'] + date: ['Wed, 30 May 2018 21:25:47 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7ri21uST_pnM4gEZ7i2FsiBIaNIBEEQONTcTSsvCI0CBT5FXuo4ieSTMuhT4Uwz1JEkxbF-k4sfjaxweHBp1_mZW478RjIruxqAZ4gFbGMTiZUvD8fdNa5s6MwAGutBxDL8MX6qttVNJE38L7kxUhk35YsfEDPfchhto3AIh-a1pwgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r2lDeC8KNuBXmre5JCSr66IDe7MdMtDEO65I5fFDEtmS6XHFZS8D1ewPo-umn6Q-eYKzL2qCaPFPk_KzNEGrfOc7YvRZM1-muesZ5o6XhKDleX-80WTaqFVGyfM9lCql6ibMOWz8fmk2btf4tu5CtckxoqE2CWTj2NLLKwyyutPogAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1009,14 +1072,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:10:42 GMT'] + date: ['Wed, 30 May 2018 21:25:51 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1187'] + x-ms-ratelimit-remaining-subscription-writes: ['1193'] status: {code: 200, message: OK} - request: body: null @@ -1041,10 +1104,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:10:52 GMT'] + date: ['Wed, 30 May 2018 21:26:01 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rme6cPXPqV9Fc06RMOnrLFLfJ49ViO3-wr90FZktwxrn-PYJzunClGdmK8a7_0opl8cNVCkiVP_fZY4bSe0nQBU2pj5R-OLIF7BhXp8YnLjm_-ky7nMtRWkDCoSsCEv2icO1y2j6oLDOpyORO0aBilw3Q1809ferUvstthlGTGbwgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rSa3yEDO4FByEv16McFnfzIIQ7QlnTKx8ibOYwrqB2FuuBF6UMPhAktO-wlU524BGbpwDgkluJ-W1FlBfDBBrIbUSd2iuaHPeo7dctiEhYgzrBGU5q1zjJVIpHJ7hXyfvNVL9bJXsONCTMp0jkv5GXMzX3FVFkAMbsGqpUzbcj7kgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1071,7 +1134,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:10:53 GMT'] + date: ['Wed, 30 May 2018 21:26:02 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1101,10 +1164,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:10:54 GMT'] + date: ['Wed, 30 May 2018 21:26:02 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rAHDLBz_DpiBWmnqqYKDXNfAilNjveHE6kTx7nd12IdxR5Ek-RNf3SfWvOQYGH2-SFxlfVtkvNYLjsxUQx53lp_hC47yS5LIfXCm2VroESkugPq4wbDdGRu7I6PfWf6Pfo8R9a4ckhPuizKYqlqI2HimW6FHzcBIDbbeY0GpuVMYgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7reEMbEDJXBGkmKFhwsk-C8QktRuvFMLmPl5Pb--AqlgAQz3E_-4D2uHr0HFkpJ7hfUC7MtpAmm3aq2FJGre9Hkj4xls4bhMw33nTIxzW6HSKD6L4irpBdLcEb8AoeT9RYSmbvP-d4zaGKjEuqrZe1PcjI_uDIPGMJtkSCXo53jOogAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1133,17 +1196,17 @@ interactions: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:10:56 GMT'] + date: ['Wed, 30 May 2018 21:26:06 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup1?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [6aacff8f-3fd0-4613-9193-417a26808753] + request-id: [7f4a4495-47da-4e7d-80d2-f56096f6611a] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1189'] + x-ms-ratelimit-remaining-tenant-writes: ['1197'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -1169,10 +1232,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:11:07 GMT'] + date: ['Wed, 30 May 2018 21:26:16 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rpQkV7SvrXmV4y3_Y0ITks-olZOlt5NtkUAs1ppusrWTFAz22BRagr_fPQ8qM5axymrgNVAKpAt7NsCXz9dMr2I5BWehNSbsN0darWJnh-hdiIcnci028Of6sBr9QliCqarEBHMc7V8hYcNm0BOe4FYzUUhCQjHNOutIoLXTQo7IgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rBHAJFTsoTsGDhLEwXB04KQ-KCF2Tm9Kb3LBKQL2S4t97UdcC7AxAjZ4qLWf46jg0FFtx6vIFEmtDbZTa0SHcP09uVhB_Eg0LVgKU2Jv-dekpxtNggk85EzKrUzDQ6YqY7-IKrJchwy8B_rbAhdyCr_2yooaq-vehrz-0cuKkg-cgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1197,16 +1260,16 @@ interactions: cache-control: [no-cache] content-length: ['179'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:11:09 GMT'] + date: ['Wed, 30 May 2018 21:26:18 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [1d405d44-4b85-4769-bf72-fceec405f230] + request-id: [a9a83e26-df45-4f83-ab5e-658054b24797] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup_with_expand.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup_with_expand.yaml index b51968b48d1..4ca440444af 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup_with_expand.yaml +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup_with_expand.yaml @@ -22,10 +22,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:11:11 GMT'] + date: ['Wed, 30 May 2018 21:17:45 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7roHEHAnO9qu4Fd-t-DBeYILzPKP0AENtF6K4hKg4ZKwhwpEA9jxyvPAhGBq9Dc9jOYdiMym51tpRgXp_biT-mqk62OgJHJg7DbU3fnH5yf5L6kRknIdmDyzy55At215xP0gaNsbnCArxggLAB8_ubB-tbMPwfg_jCQQMaHzAak1sgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rl-BjqmMV5rBrNcabM2r-V8KaY_DEcAMbEjEKmJ5Qm7V4mzbYpWlOBmc2_ITlUvLs8Xn_GUNUTXLSXv546KqBI_VHyVdjIFD6EcrZQsOdajs79ijsjcORcMkgAAOPMpDV1KGvHbsdgCQpWb1e5KJSA8dxfw8jGcxtqB9ye5Wtbv0gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -53,14 +53,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:11:14 GMT'] + date: ['Wed, 30 May 2018 21:17:47 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1179'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] status: {code: 200, message: OK} - request: body: null @@ -85,10 +85,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:11:25 GMT'] + date: ['Wed, 30 May 2018 21:17:58 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rxirj-pGV5fNS1oE8LNpYZ_v2aVrOSnY_IEV78Ef23rK0Xs2YRe-nMJyRHJ77p4IktcKWVBNSRRY6bYf-IjZStKa1U-loYc4KrYTRFts0HoDRsfXeanB5ub_wXgdEhkhgZrPgRaabtJu6vjq7DiS0DBbJcCQLXK-3JLSgKH420-UgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rL2MFry5jm_ATCMNHRndL8IxeNfRFj6fbQ0D2l-poOwKS6aXAL4VdVfwXpzjEtaRXYEdEIsYVtPKKj-48fhfFPi18YYc6dy0iW4Klu6Vej6vdbOc2ulX9HzujNgYKyECHfGgF_imHtga7E-Np4Q_6AOe-xd337__OaYCBVmKzisYgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -115,7 +115,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:11:26 GMT'] + date: ['Wed, 30 May 2018 21:17:58 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -145,10 +145,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:11:26 GMT'] + date: ['Wed, 30 May 2018 21:17:59 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rpFiIIjlacs8xsCMKoQ8FqIULI0ijlBDoB3OpC0l_ZWdIj64Y3cWDZKWH_0VtmUpjdHcJ1egzBSh1T9tWZyB_OaVA00hYw8uzJMnS080EpCjPUKlyzcGjMDMesb2d-kU4jPQAQhoYZAvF29Dv5Lh_1ajBRY4slJr2wfd_2vLBtEggAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r2-0MtaJdzQJlW6W9XpxsN8mi-f9zYSkGGgqyEUCithkhGH6E62bzwFzjQVP_Hd_QkkGHGsMx9pVWjYKRckADlGl4Krskm7fpE1XgrV6vZGxa_fjJ43JGIWiGek27IFviMzWo-hR9pkCMfqZi6SHHm6K5Hcvmth21ZBI6vjKkSi8gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -177,17 +177,17 @@ interactions: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:11:28 GMT'] + date: ['Wed, 30 May 2018 21:18:02 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup1?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [22e5d5d4-9c56-490c-8612-146147a9075c] + request-id: [06027f90-1098-43b9-9dbc-8b44fe6e0c40] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1180'] + x-ms-ratelimit-remaining-tenant-writes: ['1197'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -213,10 +213,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:11:39 GMT'] + date: ['Wed, 30 May 2018 21:18:11 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r8CCzz5gX3dkIUGgnw4bJMsCA2ia6g23AXM75Jke0SKoBiI1qRJEZaNQDisr1p2cnq0WpxhYq1Uv1-E_tRRF7VGbS-vbBIWFkcKFCK4S5TNEmxv6xWkPQUk1h6JyZ6NVCb6oRmB1_ssjGO1dvpshrXbq8zERWTuYlAQaG2M3EiakgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rZBT7GAyhh92zPqffaW5EDhk8TUcvvvfa1jNdp3j9a7T1yLg4c1Jvg_6AbGoKWw6Od1IBA5qOFlwF2k1NzWEfWDfNMZPvSKLdQFLyEdTcv681C3RR3I5FLjlGj0KlsLp7FzGaJDuK14d5FEi3n0XIy1u__CkpQBSWZ6NPnog1Q7YgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -236,21 +236,21 @@ interactions: method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup1?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup1","details":{"version":6,"updatedTime":"2018-05-24T09:11:38.9928726Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup1","details":{"version":12,"updatedTime":"2018-05-30T21:18:08.2440945Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} headers: cache-control: [no-cache] - content-length: ['600'] + content-length: ['601'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:11:41 GMT'] + date: ['Wed, 30 May 2018 21:18:13 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [f80f42de-d347-43e9-bca4-e0f5e39c0203] + request-id: [caf7655a-dd66-4888-be9d-301944d3104a] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -277,10 +277,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:11:43 GMT'] + date: ['Wed, 30 May 2018 21:18:14 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rPEiNdAO6rPGNsShRTBIy8UX0T2RqSA2jE6M5Li-J8c-ImUiI7Hn6L9jGcULaESSis19DYEOBEg5nIe5zk8hvcugfV8KY4rxI_Z-2F1ITkfp3Fc2tBuOUWVshJlTOg3ESG6_GWz6Kn-THbrDNb8WmTaOSaYpbw4uauSS9LCGZSzcgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r2tVE-SbceWQubxFoB6qBil_4JeN2B3M0fGf_2GOrBDvsGgJp4jikyniy0DAGDMzCWBAZj96oxZMMYezFJljCag608Gv3V_kh9xDnXo_7x63wEt85mj6ieG055LDG4EfqJbmyrY2s8Ud6EC-tc8SwBbujPyz5mQGovLnnZYXEofMgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -308,14 +308,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:11:46 GMT'] + date: ['Wed, 30 May 2018 21:18:17 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1178'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -340,10 +340,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:11:55 GMT'] + date: ['Wed, 30 May 2018 21:18:27 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rWJB0zqotEHIn_9uD8OHBSFXOW4qLJWE_2RKju9tawdi4MJjLk6fXys5oako_pCh2Y8kncosrYnQDotADCmEh13dbjTVUcOZnQag27IJ2_XSjQd8Igt1a8ou_jgO3_AWRA93269Vs53On1mQhFFrkvPd5JaexbmQ0zITOfqxdbBwgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rncRjQiLrj_14WbsPIbYVY8CGrrRVkgBgDVjpUoEU0wH2oOvHcuKnjC_fTdnj-z_oVjB5lnbjsK3wv_MZ8iVZF72OQeUngjF4tBa_xyaOc8XPr39FfgHsC_glJfNgXQAi7RZkaaKdJjU4VkY9aHGh-_tUEyu9eWLkI2_VecrNG9AgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -370,7 +370,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:11:57 GMT'] + date: ['Wed, 30 May 2018 21:18:28 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -400,10 +400,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:11:57 GMT'] + date: ['Wed, 30 May 2018 21:18:29 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rUwBZcaJKxa00QHPmk8NA-AGvN72He7UBXC28T2gXN6JRAt9le2-ydiFHO8UOL_f_Os2EwwPe_HT2RR7kV2DUibzXpnnno4fKRvHnAobvWqnuCUJjM1I_2AZTCbY1eEv4z2HrjzGigPduSrdkgYTxQW64YF9gV0jWzFdtk3vwM4ogAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rwVwRQ2Wn2FqD4vq4BurfdAkk0TvIqGRpy_OvJ-rMeFPAQojnGLpN6m-__7ImVVvpsJAGXuLPX2h4BcwJJOsECLbYxX7lawzOsbbWpQ1NJqRcQkkrILjbpaZLD8nZ1fInvVOWENvRtNm4N89k7hP05PZ5cycECeEpJTNwz_ZLPnUgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -433,17 +433,17 @@ interactions: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:11:59 GMT'] + date: ['Wed, 30 May 2018 21:18:31 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup2?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [dd546128-7b8d-4fcd-87a2-eac87aeb1ffc] + request-id: [be9773df-64e7-4165-8816-c4f809918de3] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1179'] + x-ms-ratelimit-remaining-tenant-writes: ['1194'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -469,10 +469,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:12:09 GMT'] + date: ['Wed, 30 May 2018 21:18:42 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rnKHmSfH9uF2yx6WLFjSSWc2Rs_N89t1akYUwxJcyV_VWyL6SaLhfDfGqWrZoLftJwsXghycsyU-EgKSQm2vNTjvADnitXN3aLIqbbAFkMvGuPHfWaNAtiHgN93VccUQS7zarOjGqly6kZJYqbH_6K95WtdskutMWdF9apg655P8gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r2gZkprqWYNrE7ZspqxMbkmZkyZUgoOfG9oHFFcFK6Yjd4XHRiTSOLpM8oFMNimNpL5wqONi6AWOaNf-6jwDDTMvNNsar4f9p7L1eSRawcjCAphqScBbIjaoih3vyLxVjU_7cd06U488JircxyKHd1Bj0cXgjR-YwqAVg8hiW_tggAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -492,21 +492,21 @@ interactions: method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup2?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup2","details":{"version":6,"updatedTime":"2018-05-24T09:12:09.2749354Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","name":"testcligetgroup1","displayName":"testcligetgroup1"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup2","details":{"version":11,"updatedTime":"2018-05-30T21:18:38.9264603Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","name":"testcligetgroup1","displayName":"testcligetgroup1"}}}}'} headers: cache-control: [no-cache] - content-length: ['540'] + content-length: ['541'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:12:12 GMT'] + date: ['Wed, 30 May 2018 21:18:43 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [62b05aa1-d9e8-443b-bbb9-70f6dd2d8674] + request-id: [29f15cd2-46d9-429b-9ffa-a86a3cccca2d] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -533,10 +533,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:12:12 GMT'] + date: ['Wed, 30 May 2018 21:18:44 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r6gt6yeQsJvzfacD06EKAg5h0ewBqdDrijb8aK0iAGlA70D-ZZ55IlxvukilZQpfU6_qjRNvSZjUsqi_dkJzsqJNRgHTrmR2GqPDILR5hUMMo6Wc2KFOEYTNsng_RQcIK2swT1k1o8HBMWsDhaytpD3ODepPaQOgqdgkRUhphCzQgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rRfP6XGoVa37rpmguRvA9QiQRRo7-W3hU8D8j0QlP4s6lki3kDSKdP2tcbz2NVHA4346uvX6VSE0OpZLum1eU4X4pdpqp3Y8tf_zD9kQr5b3OMLDFtwrHPtRD5vRdUXIxx9wq63vB5Xa8V9FucBZkpB1pDUhCoQ22iuFPM9yWkcEgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -564,14 +564,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:12:16 GMT'] + date: ['Wed, 30 May 2018 21:18:47 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1186'] + x-ms-ratelimit-remaining-subscription-writes: ['1195'] status: {code: 200, message: OK} - request: body: null @@ -596,10 +596,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:12:26 GMT'] + date: ['Wed, 30 May 2018 21:18:58 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rBARi2svZ4OxHuxBuqBfiF2zZ1pl2YK3NZLP2Z38pqBLv9eemyEur-0o1mo3YtQouKoxS27lAMbUr4zEuqSjEwo5M28LxgNV-f5GF0JQ3fZDNiddR-5HlDDNA9iHimUpVx9LrRuTPaN8aU0LLDg6dVR1v7xXh55WNJn3qorlg8qwgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rejPqwpVtqLA-ZTbcp1ogttUtFLyNX74nxdJm-AsvCw9vHxZtZ0Aykrwz2smLPUbtWTCOJISdiQt12U1xixWM16BujRPAIbdg54Q7LMiGVCCEMOWcIcc6SRqavXeCD_fiLzz_lKq_tijBDWxl-CFFo8JcdK5Dbw7uRRleyMaCpXcgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -626,7 +626,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:12:27 GMT'] + date: ['Wed, 30 May 2018 21:18:58 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -656,10 +656,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:12:28 GMT'] + date: ['Wed, 30 May 2018 21:18:59 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rsLUGKlmIbWRdB3GJ3KuEsWTlnd62IFsnMHGfSDuJluovE-2gWCPNC0XtNZeyPb2dSBF_VV6LTFhHzdMET0_nwr60h_ZozKT93DfMqKFdg7ckwlBxwLD2jvFLyjopZPXt_jaWbo0W24EHzSGTMFsL3ZxOGu9LMk-NQouBlD9nMTEgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rA1txBtzvZ54qyE5kBCix_WCZm4vBn6xx8vvONQYLMxYcPnzEQcGKkcew1HgwxgHq_EQ6bRZ_9wuefak8jcqg4OGAnbUHgZFZi1Mwp7jLpfrIYaWL2W00MybERPZ0gDWyft5u_yXmsJtlIwl2LZPNE7Y2lXB7fuPj_bPV1X39tokgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -689,17 +689,17 @@ interactions: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:12:31 GMT'] + date: ['Wed, 30 May 2018 21:19:01 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup3?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [7aab56c2-5049-4ecd-a420-51a9a89ba9b1] + request-id: [94eaaa42-d233-4f0e-a836-e843f2cc8555] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1186'] + x-ms-ratelimit-remaining-tenant-writes: ['1193'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -725,10 +725,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:12:41 GMT'] + date: ['Wed, 30 May 2018 21:19:12 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rEyUMf9cfRl825oYNhMJ9Vy_p-SZFx_RpcbtYR3xoCsk8m7n885KfLL_gFD6QpuwnTP9beGPnauV9sJy4nAjoB2R4LiOAI1UXr50Dqq5hUkJW64euU2ORsKiUKkRjUEwGKW28jOLgw5tI0hN-L-mAfszu3DKreiR0W7pUT34QJf4gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rBQmsgpMwWD0KO1nZb9DdawTC8ZJb_BIPmoe_W7vN4rZYR1uzx971DlxPI8wb0s8dNqqWIMsDT7W2FmsBzgOLh2xl4o8evYirI7fDZHmrfqGs6FVf_u3hjUiRLaLZWtXl-0IvFaObQI40rvK_wHatNauRCs9e6S5UMXJGZX8It-4gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -748,21 +748,21 @@ interactions: method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup3?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup3","details":{"version":4,"updatedTime":"2018-05-24T09:12:37.8138944Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","name":"testcligetgroup2","displayName":"testcligetgroup2"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup3","details":{"version":9,"updatedTime":"2018-05-30T21:19:09.0039498Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","name":"testcligetgroup2","displayName":"testcligetgroup2"}}}}'} headers: cache-control: [no-cache] content-length: ['540'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:12:43 GMT'] + date: ['Wed, 30 May 2018 21:19:13 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [2c174702-94fe-4425-b93e-254aff344608] + request-id: [b41f2211-3270-48fd-962f-e66836cc1da6] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -789,10 +789,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:12:44 GMT'] + date: ['Wed, 30 May 2018 21:19:15 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r9UM-K-o69S2tXkm5iFKG_gJf6a7PrLGL22b7dIZ2XQ9LZrfrONJ32SL1ozkQ8K-5GoLo2gzaUF0AV2B_et4OffMQ3x70bk98N_XlaQ3NU0jnpXDpbnTT9C1iQUImyQiKrBC8j_giX9asQllk81qF7OWhkFoY7RChcGcnOjgpdCsgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rdl6Sg_g4-iT92rsqq92tJnNB_sOiQDJIYmF93fpZ7b5OLTk8jLNd8td986_hhdJcO1gNAJRt_h5A1m9gZWr2Yepzw-bmcHpuNTbxi4YqbCfxS8IdM6baXVTThF2Ib2Ekst0HE6ToYuJwQvsdjZQQngB7B8dMlOWVRUB3u_b5fm8gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -820,14 +820,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:12:48 GMT'] + date: ['Wed, 30 May 2018 21:19:18 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1177'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] status: {code: 200, message: OK} - request: body: null @@ -852,10 +852,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:12:57 GMT'] + date: ['Wed, 30 May 2018 21:19:29 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7ryoSdSQG_i3ME3TjhL_vhPvKM5XHdXjL7835SL9KuiCR6SeBjrJLcJUtwwroLJzYkzRcYdLPORoH7jahWj2x9pzxhmyU_0CtdyDo8kW7MfqsysQEarHEl6rc8r2mPO7qCVUn5JsDevwL6AUV9n24oPQwQ9bCCk_dRkVBya0rW98QgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rErDaa54RKVXv6LnaVF2YSst26vMWavboT1TFfCFmWp0YvHv0Tm40c5aUoJQgMvA7A7IK-TvsCL587-AEZws-KlIzuUgtEfpVFGelnBZknFFocU01G6WxEuiqXCfvX7t-RL08f_i7OSzHjLpgfye6UD0CCh5c3pVgUG_ar7DVZqYgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -882,7 +882,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:12:59 GMT'] + date: ['Wed, 30 May 2018 21:19:30 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -912,10 +912,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:12:59 GMT'] + date: ['Wed, 30 May 2018 21:19:31 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rse8VRma3RMV0xE_yuzg6I-1s4a_KEqG6HePbuQvagcPvX8k_UV6ZO53420R2iinGQIgWhCPwyBDOUkZ8725eSXtoCLL1YsnPnO8RVVpvVpjZE81Nvlt7SkSDJiHbJU_LbHWABodvs8Jxbq6N5RqTV5Er2aQ0yjf-Zdowz_1fz3AgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rnHK1vHeYqQG_H6phFdrCBnzhhTBJTW_TCHky_vAfvQmqOT6LzhuS5N-GNaWzFUixdjWNh76qKuJRNHpP5d6khwvlNjjlEq3QLE8DrAVDQo5_KbaScZwehlem-TEkovBgANN127TaTgoDo1AM0DLfgdEZQo-y_lM3QqdmeecWv5IgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -938,21 +938,21 @@ interactions: method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup2?api-version=2018-03-01-preview&$expand=children&$recurse=false response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup2","details":{"version":6,"updatedTime":"2018-05-24T09:12:09.2749354Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","name":"testcligetgroup1","displayName":"testcligetgroup1"}},"children":[{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","displayName":"testcligetgroup3"}]}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup2","details":{"version":11,"updatedTime":"2018-05-30T21:18:38.9264603Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","name":"testcligetgroup1","displayName":"testcligetgroup1"}},"children":[{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","displayName":"testcligetgroup3"}]}}'} headers: cache-control: [no-cache] - content-length: ['724'] + content-length: ['725'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:13:02 GMT'] + date: ['Wed, 30 May 2018 21:19:32 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [b739d726-62dc-4116-a984-53afe63470cf] + request-id: [e34af52f-8621-4166-a48f-d93d0bb10223] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -979,10 +979,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:13:02 GMT'] + date: ['Wed, 30 May 2018 21:19:32 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rAFr5_P82myOoodNejIY5x6PHDd911yIC4UQc78dcPB65LgfshYO0B4TGE5XFKuLQSLbHB2okP73NyvSeVdxXv3cKeKcpcO01Aa-p2qcVxbhUSjwlBStf3lJQkCbuv5UrN7vqTlfbpZ0nI0QSeYMSsmKZkScCXdyA4xAV-qI59pUgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rMah9y6TPVNQqD8f0459Bmw4IXbnoE-LHWApL7RzmgayuCiTq7IygkiYZ3Y6q2ZW_MrF_sf3ULVDU4y-0qAQ60xYe_zur3pFW7Kv-A3XaIx4WXFL1ayfeRi_NPenLq_WE-SejN2jaY_lBaKNKasYbn6lVX0UOOl4AdW9eKlW0maIgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1010,14 +1010,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:13:04 GMT'] + date: ['Wed, 30 May 2018 21:19:36 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1185'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] status: {code: 200, message: OK} - request: body: null @@ -1042,10 +1042,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:13:15 GMT'] + date: ['Wed, 30 May 2018 21:19:46 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rEXwisuZryfcZg8BP4yN_KQwgo2r481HWKs46-H-HCWB0sm6i5tKX8YcN_iTemku64JW9EpyOM0iePtaVGLmkLVeF5r_8p9knAi97viNfKgPRljP0P4OA2-o0-SJQ6YS-IYRMGv5dF6mp1wM7q2cnTxR0bghJnewz15c1szYgzCQgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rvr4oF2wIFSwdOrSb_2bcP24zo9xlmuKQnCUQTQevm5Fuivzhbs_MjDVJ-DlkiTup2yluL0KPfJI71KOdZp5wKsz5LSKq7wzlCwwSzDf17J2YrwP0zV2ALuqE4uaBSDgTYEjIZqtJnZzakROeN6yT1C2ctiN5IWUjzZM4EDZT8l8gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1072,7 +1072,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:13:15 GMT'] + date: ['Wed, 30 May 2018 21:19:47 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1102,10 +1102,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:13:16 GMT'] + date: ['Wed, 30 May 2018 21:19:48 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rxCy4Y-q5N5m7VBAu_CfYc7zr13Kc5W4UVlMD8QGQqA1XouL6PDrzDOYKijuUkStvopLR96KOHZxoLsHMT_mXCUJ6Pu6EVR6s7G4K9kWI_wJ-rAJBf6rzNI0c5N8dg83YPgZmGsfD3uYIvGzbc0TrDXsFQ9nW2_TtBgFyvHbI4CogAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rt8EPNLJGlmRLoyPTfDzzGtqG1huULdE8OgbE7NBnparHiojFfZApe3pVR419f6TlKPF9vHM7uMva9AyDjo9O5QXSGMhjvb2BxRhXU5-NZSTa944pgb7Vl8iwSzym7045yXSlA-FzViulKHdLnYIamA36lxwQ3KRi5OIUE1kQF4cgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1134,17 +1134,17 @@ interactions: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:13:18 GMT'] + date: ['Wed, 30 May 2018 21:19:52 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup3?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [4c1bfd7a-0c98-4220-a4eb-07913291d2d0] + request-id: [27047639-cb4d-4d70-b204-57d7fc3d74ba] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1178'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -1170,10 +1170,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:13:29 GMT'] + date: ['Wed, 30 May 2018 21:20:02 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rNqf9kMtep6IeolrsxJm7ZpUmp-UVbFVS7O5yuOCUO05_YhqxVTAo51P8I2YP-gc7MlgB81dsoGktKEazOKd_pfsjOHHNdbvTtEsUtag1qlCerbEmqcVJox6VE_xlLkqxrBfotogYYY5UWWx6rwLtZfXxq9LLGVhBgmSdJE5a7RsgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rphaQPId19gYdF5R6AFjZ0Jo75igV47e8EaMhkunpmD4NZkEUkpydKXWRNojAVoz5LtIhog02NU39_ll_-oys9bQOnAhtdb0mE9-O6q4Nsqeq9KIbI9WBvpJQtkRG5VYOPSyvrMjovTt8Y1h0ikw3BoLsV9gCy-OhMi4rWxpcoHYgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1198,16 +1198,16 @@ interactions: cache-control: [no-cache] content-length: ['179'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:13:31 GMT'] + date: ['Wed, 30 May 2018 21:20:04 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [aa742b46-3849-443f-910e-fa190e699610] + request-id: [4f34e8be-d6bd-4b05-987e-b68161f24431] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -1234,10 +1234,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:13:31 GMT'] + date: ['Wed, 30 May 2018 21:20:04 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7ridAvFzVLOO80YACiFmRDZY6Y5igAmm9eYIJLizqRAZCSzIzOM7BcFwYMmwm6GPn48xCaA-NESCjD3wocB2mlcJj9Jd7Ngsv9S1tHSitYowIm2nXNjV0R2rjVC9GzHLzKcsNDJvh3Ems6ZDy7O6L-E22AU-c1GNnZOu8oxz7s-usgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rcZEjeoJ4LnIQjgReWb39Vd-APveQ1M2Su8r9LQWl4ItL6tmvLxWIthoCTKR27I_xj3Rb8QHyFrL16QAF0RGNG3zfsxHZtevWHtUl7-UsImKD3TuuTvvaQF4ymnmEPeuIDuq9-ucbPQeM2cMSQMvoQrA-0qT8b_gKgHnkGcbTGM4gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1265,14 +1265,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:13:34 GMT'] + date: ['Wed, 30 May 2018 21:20:08 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1176'] + x-ms-ratelimit-remaining-subscription-writes: ['1194'] status: {code: 200, message: OK} - request: body: null @@ -1297,10 +1297,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:13:44 GMT'] + date: ['Wed, 30 May 2018 21:20:19 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rhccc0ycDf-jJUMUaP2G1iIvxIJEylke5K056Fxyl9d4tbdVBGi1i734b0Wk07MdSMf6OIX7t4nhMP8l_4wjyikoGUMquVuwlPaiGgj3unN6P2PiFr9HuIBu5uGYaPdp9OKI8UqAmU1YT6fg8_0NJCymPs0VFV-H_aaakuMh2qJwgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rx7ME6I-nyQwPnJXDd5dYGhMO-dHfA2ku3VxliM7W0Ri0bXNgu7JDG2SO1rMx6T3EiN31kSWowlqZLkZavoxwdJdY37o7Uf81R0UQ86q8CfdIfJWpkh7I0beTphhcdaBxgk5fmeVOIqxr8_3tUZx243WgwXnVdbcfd5_i3GZJz3EgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1327,7 +1327,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:13:45 GMT'] + date: ['Wed, 30 May 2018 21:20:20 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1357,10 +1357,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:13:45 GMT'] + date: ['Wed, 30 May 2018 21:20:20 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rql1DIJOcCuenR435F9zS1O3jJZl0P3wa0mb8Yuym5l7ghqx6cugAPtVmDkKPy9l6jOhZmUqJEsZmd1Kzv1Rm3TLMBlihFroWUmctEcNElQE63FbFEuf6dd0FgbZ-xu8sP3b5IZq_QZqKSBEh_ynrnmXOvcIAMZWtYPdEv9yBaUUgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rhkhpKK66-dx0uHNiMyhw5ct0Eq7PCnPxIQ_QPJDbxezQ6gMQ0PG6MmMC1C5BPovV-otcgdF9tFq9tqkAZ45TkGlbdjuiTHkS5jEFvBejrqQ9QqUEHVsg18XzLTvaGFmC3XRI7t9KojGjgqRBWKm4mes8leTOFA8QuOb5zFwB8zogAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1389,17 +1389,17 @@ interactions: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:13:49 GMT'] + date: ['Wed, 30 May 2018 21:20:23 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup2?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [65d7c778-a8da-42ef-b824-364d819d8038] + request-id: [a0aeaac5-80fe-405f-8822-c4fce42c7c96] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1185'] + x-ms-ratelimit-remaining-tenant-writes: ['1198'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -1425,10 +1425,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:14:00 GMT'] + date: ['Wed, 30 May 2018 21:20:33 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r46TJY1IlepgRMo4ny8jbzww0rf-rI0892GlG27pDB_KSEarOHMnMPz-O6HeSx6PUr_cjTj9FONJ1ssnELUeJI5s6DFG1Hugqf0aXZ_k9xl7QLizBOmJfzRpDD9NKFgUACpjNkVw7TdQ2lkw7wpL0GK_qKvqXBzxb9hxwtL2kIhogAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7raawkryYXtRFL7YcgsYJvn3utWxbY99xMoUdQ_JohSARgnpJ65YD2wX3LO_Qq36AtzPb8d-vJS0uZdiDSqIqWcSTEo3toVkPBMwTDh4iigoQ7Wi-4-xNn_7ASGvY2BZF4BrxP6rHy1MqrVhT2S3lK54jaeYqPCeSiEoW0LdwamfAgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1453,16 +1453,16 @@ interactions: cache-control: [no-cache] content-length: ['179'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:14:00 GMT'] + date: ['Wed, 30 May 2018 21:20:35 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [b0b4e733-238b-4caf-8e0e-2e08bf55e686] + request-id: [92b159d9-56ad-4fe6-ad59-e6b21685e4cb] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -1489,10 +1489,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:14:01 GMT'] + date: ['Wed, 30 May 2018 21:20:36 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rMIBdLEy4d3QMcRIiRihV2HXORWQmj6FtREnp2fvqc0G00qFBiTkUWzEKtfqx_1N463mWHzp4PCPQkpfLL6Zdrl7dI1hhR9WcK9oldB97JLj8ACKswjy9A2yNsONO-3FiXyFRxRNx5G1pt1Bzyu1YW8QZckuZAQCMjh1jgFFt9l4gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rP9SQu60HC-ZrIrIRNX5Li5ex08QzHH8YEm17GUJd9qh64fvMh7l3CkSRadLQNNZtKQc2EAChbknvaBBZqvPIbW_6g88lu9VNwJyCaVwDWsGFNYRpuVkQAYKIbWsulPiClyWe2iExwBMukFM9pDbdwJmBTUp1kpia6_3K6oMmy-AgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1520,14 +1520,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:14:05 GMT'] + date: ['Wed, 30 May 2018 21:20:38 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1184'] + x-ms-ratelimit-remaining-subscription-writes: ['1195'] status: {code: 200, message: OK} - request: body: null @@ -1552,10 +1552,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:14:15 GMT'] + date: ['Wed, 30 May 2018 21:20:48 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rSQZd-ITtMnvXHcbLdrP-uM6GsiUzitPI3hw-lY6lH5mtOdQlk5z4o9otptQGsNw23zO4tf09__1LoBTwIiTXPJiUOcd_0WpDPuz3bfAlw-vWcSGIsmqK5lzYOq985LHq6bYdzXxPXPQrfHve9PiOWdyd4Hanr1FjzxJDve_CxgggAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r_jYcjIIrqCvGZW1P7ZEuq9jJyMWE90VwH-9k2chESQWcbGlPSA8cWlKN4-nG_N_FfKnYmNLzu9Bc4mLmulxGAJwJih8LoY1pH8Lt7pTL0RqHvy_BPw8VYnDO5MYKwsOATrjg0Q9z4Dg4YpQHUrnbYM8t8N1IknFc8VXIkbA4-v4gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1582,7 +1582,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:14:16 GMT'] + date: ['Wed, 30 May 2018 21:20:49 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1612,10 +1612,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:14:17 GMT'] + date: ['Wed, 30 May 2018 21:20:50 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rPQNfZU1GA4lIdpNVKVS1VxrXXUfQ36sPUvGifTEJnEJ-R_NnxqTn1JquThBsOjqNb8IdJcXvbmC5jyEcx3NfzpL29D5bgmre2z20k_1kJ76Tnlu2x_7cwegaTooVN3Yix9S73GG4S8s1pwkSShF7E0LZ_pyTDKUMhkG8xCmMcs8gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rrL6gLmLZkeEqfkUrB83rZ0Y5ZcYQSydTqA48H-weJKXmrj6aYYZNSSDcTc7TU-40Gm0FQdmSpQXoLojtNMl8hxd3TF_DL4IqW3oQmtcSQeH6SitsXx60yNDdjMVP5FUmG-vjfS_LsI5_0-tdbP66T2yXUOjpQdz1eWdEvwLy7aQgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1644,17 +1644,17 @@ interactions: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:14:20 GMT'] + date: ['Wed, 30 May 2018 21:20:54 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup1?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [c72227df-1295-4c2a-a226-de65905d2a24] + request-id: [6132a42e-0d1f-4f5e-8cb9-2d037315c717] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1188'] + x-ms-ratelimit-remaining-tenant-writes: ['1196'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -1680,10 +1680,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:14:31 GMT'] + date: ['Wed, 30 May 2018 21:21:04 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rczmI-0ljzyw_Z0TFdMPhMGaJLEyaQ2jQt0dpnVJvGJD5epuoPZvA5GQlAw12gEdcOuM6J9rcosMo_OaOya1dMHEx0CDbnz3SVMchKnfEjx15QnnoDew52ELAHEZGRuF_HE68DAcMdR_lwrxAvOX3y1jVkqVdqbjrLbY1M24Y5CggAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rAXdFA3_nNecDTdWL4uscdvTfChm2y2qyd6tJoIo2xRxHB283NIsn8M1KS3yyFuFZ1BINstmd1l3ta-7w5qVmJzerYgGWPX-cIwzsnFSdF0ogBiwQ_2_djpubC9z79zTTEaepdZZBH1-Ezg5_S1hBEy8AwZ2bqpxNmvvE_ViELhQgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1708,16 +1708,16 @@ interactions: cache-control: [no-cache] content-length: ['179'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:14:33 GMT'] + date: ['Wed, 30 May 2018 21:21:06 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [70a3c5da-36c9-4e1a-bc4e-8748cf5fc1d3] + request-id: [8f088a96-d63a-4f80-a3ba-7736abbb9e08] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup_with_expand_and_recurse.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup_with_expand_and_recurse.yaml index 0e3568dc634..b2bbbb10798 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup_with_expand_and_recurse.yaml +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup_with_expand_and_recurse.yaml @@ -22,10 +22,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:14:34 GMT'] + date: ['Wed, 30 May 2018 21:12:39 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rvNES3wbIqUL5NfeY6aNHZzcLcYHE3k8Z1v7HRBxBvHKSQ23be6vrnRgZHKmUfwxUVogL6ldbO16jplDN2CaHf4WqSITCPyHkcHLsUqj22iIpFRkejztxZpJ489laNtTOSFPSHaJ3HZxwSmmg0TYCgK6Cvcrw8lZ9ibdP68plXtkgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rB1pE9ac5F3Sg9lN_ZUjSoB0IDe0eK3pdDIF7oDG3VZNS6A5ZndQ4e7TZo5YiJW5rBCfziZK3onoV4uxgUrKdFy3a5w6c4087sYn7tZGaYm-5rh2FUJ5jVNQv_NXYVP-fxDQThxG0eCqM9roCZEZiLl0gZ5Kpz43VhooOBScsLrIgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -53,14 +53,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:14:38 GMT'] + date: ['Wed, 30 May 2018 21:12:41 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1175'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -85,10 +85,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:14:49 GMT'] + date: ['Wed, 30 May 2018 21:12:52 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rBTPvANSsAe06iD2cRyQIFiw2HP0SFTEOfybL80MBRecYaT6TfwJsKzaCbW3d9JCXoPjJLujUXXtsmHR_Q5vLOJsb2ctr2tAb8rEiAhSSvHSdLi9pHlXQWbZ1lOarZlPMhVlHqkSdEDNQ5wzWpI-Au7NrpVGcn1iUmgkblwfXNTogAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rx_PmnwEs5Xk5i8Ci2MI3mVTjfJaDTAbge-CBp_BkYeZbHjNlpZEtXy9HbeeOgQVIqUjOWyNpAcrVf4yvCIehR4yvWT2aHgaj3PPxf5Bw9wyiGW1e2eQPFp77vErA87Clw4ovsWm5AKMDin-MpoeZgu_g5sgDQn9ipXz3zYcLYQggAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -115,7 +115,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:14:49 GMT'] + date: ['Wed, 30 May 2018 21:12:52 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -145,10 +145,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:14:50 GMT'] + date: ['Wed, 30 May 2018 21:12:53 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rV-BirY1hZ3YCCSbrHA6JqREjytIIN9ZhEHWWxzfHWEEToluXuBI8AF5eH3boCoqWFJCAwVrBAD9GbRgAd0sFpTKh-x85ct8YGD8X9oY32XoeruG1q9VBGwzITibtN1nR06kYve2oaXWaaVfoPFoY3lZIi4S5adJVJ0DI8QSxHN8gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7ryKCyt-1V5EMlQ-Cx-dcA_godjV56BU495byaY6Ts457t2G9wDAe5LvRbM45Roxhf_jxHhtpoMIAR2j-7HX5ka6AwmkiiuqDcixM84CF-1hF0R2Ak676NMtcT7hDFEATim7CxmLxZ_HYZBBK3gENBgjxuzGSAAST5R8dEsjhuMgQgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -177,17 +177,17 @@ interactions: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:14:52 GMT'] + date: ['Wed, 30 May 2018 21:12:56 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup1?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [4387fad0-9e4b-4ea6-8f63-edd75f1e63b3] + request-id: [ee7cf5e5-5c97-4ec5-8b25-ec440dd79beb] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1190'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -213,10 +213,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:15:02 GMT'] + date: ['Wed, 30 May 2018 21:13:06 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rS5u_u81lt8t5pvh3oS0ge5lkl6CnynQAKyo5ss7wFhVZi5mQ5-c1wj1kca8i7WUFGBu_G-vilZK_b8kwxKLBWNZ-mIn0Wrk2L9DvfKyKc1drthc2KLLkmp5SeNbnjd-JF14qEr_P2gJzpjV9M-KIQTtRuYaTUhywtV914m_U96QgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rlkgWmEFCV3TEAYwQuH8YFeeeyrhW9gxRoWePZVuq4VKcKx4IDvBKHu60-rs-Bw3Z_JA9osiRaNc7MCku5E1YrCgUn0d2q3CpO0y76FHxVW8SNpEmS2KyK5hW3uk7bOfKiRTmv_X4TL49Ib7KsNtE2AhF773Y41MlW5T-7opAVDYgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -236,21 +236,21 @@ interactions: method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup1?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup1","details":{"version":7,"updatedTime":"2018-05-24T09:14:58.9600804Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup1","details":{"version":11,"updatedTime":"2018-05-30T21:13:03.6329477Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} headers: cache-control: [no-cache] - content-length: ['600'] + content-length: ['601'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:15:05 GMT'] + date: ['Wed, 30 May 2018 21:13:09 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [095987dc-09ea-49e2-af2e-38efbed03706] + request-id: [e844f7f8-3855-497b-80fb-2737faab0354] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -277,10 +277,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:15:05 GMT'] + date: ['Wed, 30 May 2018 21:13:10 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rtZcEP8hDua45V_QO1XqsRUiLGO3y-5i6n5xkxJF9gorxKkLiLugA8yraU8TeDd81IkNC8br4UNkGsiS_uAEFHZsQiNxFejIxEYVvJ1gQ8B-v2rb4cDnd-lXHOxO0ngLoZ8EoknMS_r8Exx8Ckp0IVFAXBjfFHY9adGzl1UcEv8EgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rKk-UQNmORwY5kayxG9u57JRcpQvBlZY5_Tk_G0PuoIG94xjuTWWWMcFW_2--6uQ1GKv_PwBrp5kFHrWDSI5KREhsv1h0ugRONroRPY3qQtr4bjfrM3epPRiOpR2MBAn28atVwQiwpWpjCnEwbBWW5R9yPhiQhau0n93_3HU0GP0gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -308,14 +308,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:15:08 GMT'] + date: ['Wed, 30 May 2018 21:13:12 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1184'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 200, message: OK} - request: body: null @@ -340,10 +340,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:15:19 GMT'] + date: ['Wed, 30 May 2018 21:13:23 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rjRp3bXKhNNw-yiv4trcfLakb9PkaolXPHl0fcNx_E5329fVHz-LPrLivp6369ecjqK_GiS-gS7ebFGg_xqWFIowSUve-YetdhhEALNUIbQcJv5pVP5_tjzFiWj4Pmhx2U9UJ7CZvIaaRRqqH4Sw6KgT1c6HP2b8O6SqwdR0_A1ogAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rqzO1p1kmbNpZ-xAHbyS19HO0QiuLaTMC6BRr_JdabHbmqYKRPdU8q1eEz-KxUFlcZj9bZfC5k-ZpKar2r0ePjozHVlojznS0qL-wIEV82lhSI7TxCKh6kcbNOe1StIImo4oKJkUXIvp3Kp774lKGZvbmDijy5CWPIdq57j3oXeMgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -370,7 +370,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:15:20 GMT'] + date: ['Wed, 30 May 2018 21:13:23 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -400,10 +400,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:15:20 GMT'] + date: ['Wed, 30 May 2018 21:13:24 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rl1JvR6DnSdd3W9iijdu7NBh304gL43ltUnGCUYur67tf2oOxJZHBIrUfiRssgNhbsjnD62hysFLhCXcdaZ6h5iRl8A3DbokAiEY9D-3_jl3CrjOpgDpP0m4w7ZmJDDI8W-gY30ULci0fvUMjGr28GavEI3I4vekAdkiT6BnO42ggAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rq0y0j7ugunQYqq18ymuv4I9636z4tWM4TEA_GPmc-Pu4TF66YWd8wTNqjrQOVfAgfOAuOreoseeJv7b050F5h6aiuqmMBB_K9sk_wGYJRt_GKvDDcSYK4ZZ5wTkTISEbUP-hfrmAHTGgn1AM5MGSPI6OI3SwRfW8U2RhiquPO0AgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -433,17 +433,17 @@ interactions: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:15:23 GMT'] + date: ['Wed, 30 May 2018 21:13:27 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup2?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [faee574e-a23d-44ba-b3ac-be1beed02ea3] + request-id: [36e63544-4799-4b87-924c-a80c31e42e44] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1190'] + x-ms-ratelimit-remaining-tenant-writes: ['1198'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -469,10 +469,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:15:33 GMT'] + date: ['Wed, 30 May 2018 21:13:37 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rn7yaWrkIVZDJ5ecwq88l_XTy_W7tsMw2mCnjqwBAtDjidP01jI0V44dCo5GB2_wGF4MnAsbERIUTJXJrISlGVpKBVwSHgeuvGCEmxaMqGdIN6vmnPLBWk3cuPeSGpDZxKIYb2YISEZbxzOGYwB_bbGPVec5KbcrMVmDdd6kh2XggAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rRPea4WZzvkdpoJ_jIWeXOwJKJKoapbCtaqp_iFosRqxORBhtfwvVxlkwCbMtb9tIe8RqfG39di0BO2HoYQmHTl4Av-G3LoplIJ3V6gfDxtrYYxxubB-7TUFU0rf7jimZnYI6HDmuTRHtw_WANkF2VWTCTHc0U7QT0JeD_hU5-9sgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -492,21 +492,21 @@ interactions: method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup2?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup2","details":{"version":7,"updatedTime":"2018-05-24T09:15:28.1821724Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","name":"testcligetgroup1","displayName":"testcligetgroup1"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup2","details":{"version":10,"updatedTime":"2018-05-30T21:13:33.5354756Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","name":"testcligetgroup1","displayName":"testcligetgroup1"}}}}'} headers: cache-control: [no-cache] - content-length: ['540'] + content-length: ['541'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:15:35 GMT'] + date: ['Wed, 30 May 2018 21:13:38 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [0a080503-68da-496e-a4a0-85f305f270f7] + request-id: [2c35a9f5-3985-4806-b43f-bcd9426e8467] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -533,10 +533,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:15:36 GMT'] + date: ['Wed, 30 May 2018 21:13:40 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rBi4sl4ta44zb7rAtGsK1q3g1rBef6oe5T7H6LyLkzHDoHIUGe64kRfffGUGJ_4cHk7IJS8FZG_leNEGeXuoplbcZOuQvnv9KmnfMaCcqgCuuYFGN4FQCguTUy40c6NGH5coYjXIdF2FUgza1n83IM6rUdvgHcADb4WOWEcsbBO0gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rXNJLTkcfDR17xfnbocxbeuJ2AhSVheyDKXMUrjWf1gXPXG6Z7HN3B01aRBme_SMEyrfvxBB45vWO8gQ89FxxZMVwdl0Dmqij10JK0BtGSQHH0Fp5nlF2Hb0FH0rab4Y7tefzh0OOPIFBTfjBZPD1-s4vx66PyHDoMBnjTOogo_QgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -564,14 +564,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:15:40 GMT'] + date: ['Wed, 30 May 2018 21:13:43 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1191'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -596,10 +596,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:15:50 GMT'] + date: ['Wed, 30 May 2018 21:13:54 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r02tjcgsvWfpQ9gnYBUqu6hCm0qcmk5enaeDLnnDkPmCyp2jnHxSBwcgMmN1qGFd64DsoyIWZ4oQhZsWeNiaH4b1RDr6ooQJ5TYrNRF3xDErsrHeEZ6vGaxknzSlXPcvqeY6MvU7-mQObrIH68w1TKkOOMV9f7wjYppZL_FzITv0gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r7FD2t7R_US7yw-YZ4Xz-vP19RC_DKbNvli5RaR4WjblySPgAVUkavcugknP3Iv74pDyHAjkbNO0iClG6AWqsRqN820vIZ6aDVmpRWbfU2BuVOUiWnHjMCcPh2c5GmfdEqMayCcssKSLdRe_hEUdRiRoBqYVwfXPxxX5rlIYvzvggAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -626,7 +626,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:15:51 GMT'] + date: ['Wed, 30 May 2018 21:13:55 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -656,10 +656,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:15:51 GMT'] + date: ['Wed, 30 May 2018 21:13:55 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rRWcOHDUVmENbacHqKreHnP8XT2zfmCOTD6LxpsUhzgZA33UleJ-WYEz8NpR2TFQRRT2lo6f7g7lZzL33RFG8NpHB8l2pD7kYdVrfD-TYPaZDlBqmRURWuY0G5zQ7czPOgj0-oSLj5bwVs2P9s7DtgI6f6qJhYydo8nGcJJ4udmggAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rZ0v2_RjqTwYN9Sy1xOTSO_bAGd1HE3PPOVWkHLWqDzN3mAhKsl0lUAHy0ONqAr_NU8XWNZk8jqo6vSFV6FCJR1k45Z6Z1Eg3V7XX81H-J2WbC5JIAJSufyoR5-EDOhnqUUZrTs5NZDXQEJUKCv8ArGDm2bPXtRmXLVt6QOyuNiYgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -689,17 +689,17 @@ interactions: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:15:54 GMT'] + date: ['Wed, 30 May 2018 21:13:58 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup3?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [2e6cd9aa-be51-4d01-892b-f26d62d0161e] + request-id: [4d1fbc73-98e5-4b4a-89f7-8094c523126d] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1188'] + x-ms-ratelimit-remaining-tenant-writes: ['1197'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -725,10 +725,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:16:04 GMT'] + date: ['Wed, 30 May 2018 21:14:08 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r0LfV1jH_7OGntybx3al2U3aLtEovoRIt8UO-bu7FAgJISJijLKUE7f71tz24y_Zp1qv8JogI3ZwijtpPd1FRFYB3KMdi71i5KjYq5yBYiOU8CvCTBw_O-rVQfc0fpp0XySF8X3avQJEFrocMqepW2gqPhj-GGtoe4s4j9DAM3oogAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rZiCxIucbmZCM4iCIUHOO2cWngNmUZYZDaruLjL-CkCOBOrlqu2Og7Xke-g0gJdVtIwWz_tbfiPh_KmZTojLI91Xc5AdjkZlfwFpv8cWgec4KaVfERcF1YFyk9OiLGIMxY5xffarX4xRtEBFfx_1sno-ZqV4higxkquexlb0Ehv0gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -748,21 +748,21 @@ interactions: method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup3?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup3","details":{"version":5,"updatedTime":"2018-05-24T09:15:59.3140015Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","name":"testcligetgroup2","displayName":"testcligetgroup2"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup3","details":{"version":8,"updatedTime":"2018-05-30T21:14:04.5086164Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","name":"testcligetgroup2","displayName":"testcligetgroup2"}}}}'} headers: cache-control: [no-cache] content-length: ['540'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:16:06 GMT'] + date: ['Wed, 30 May 2018 21:14:10 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [eb727045-5976-47d7-9d5b-4176266a06dd] + request-id: [3dd30cd3-669a-4f17-8283-90ab497737ff] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -789,10 +789,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:16:08 GMT'] + date: ['Wed, 30 May 2018 21:14:11 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rZizX1O3nf0lLAprbfnjBY7ULj_pKHuij9J1qNweGFymSs5Qr5HawmqPCgYcouUIpcTYJw-bXSUj-PyUCAoyO8OhrGDi8-4qciXpIpEvlBiZ57cUXelj8EP1oEiPt6vsrjqGBD2olSl6kLta4h7Br1Uwv0s9DQeiGJjxqo2zpCEYgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rZ5x94t15JIuEO6lcPpsxgu_4mAXn2_3cuVifAxBppq1jHcEBGBOS4iYh81WLSxVLXJws-0KT2EwJA2lDppII-xDMHJKkXicIm96purLtPRp8PiebDG4dlz7iItKtobQLlZYz_KBuoF1an5Oqq3gM7tC2Zw56gZUdrZlUt6bkLCYgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -820,14 +820,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:16:11 GMT'] + date: ['Wed, 30 May 2018 21:14:14 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1179'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -852,10 +852,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:16:22 GMT'] + date: ['Wed, 30 May 2018 21:14:24 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rqXUgTupUVBcCG7VFnYuWPhaE8o5zjHu9hXxYaYI9cvmqF32UemRPN8gI_JGMrr6Mujwb0NlQoskbYPIBSRdcOT99pRjcJHFZOhpN8Fi2ek9RFJWiyiPN4_XMzZ0Im3Cgbfravz9wzHkGb617ioKQm875oRn34WCZrTo9qTgiCOIgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rh1YnyksBBflTyZ3TOxLNqZlemt7dBpBWjcqE8d7ynTTMWxRVTXZPs-26wtqkeSTQed1wa__XWpLmbJqlP0ttFVPgOzL-eZQENc3O-hEPBquJZK0TgZNs77G52gCvlA7-Ss_zVE9-DJofEe2Z1IPsolAiUVdjYWspj6e35-3GA9EgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -882,7 +882,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:16:22 GMT'] + date: ['Wed, 30 May 2018 21:14:25 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -912,10 +912,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:16:23 GMT'] + date: ['Wed, 30 May 2018 21:14:26 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rtUtBmXcnj2BK3RVfTU9F6hUtfUu3malphL0DPicgYoeFGRlk25EpRm_LqvrsL7rnmjlg-8C-HrQuo-DZkeyBW7o30uZqW-VGqkXjmr_1Cwe671mVvJ-Wopehg03RuxJ2Tn2kblTqBtJKLLP8wLyT-EmY8A8yfDrBJhRH87qJgg0gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rXtBE88_u2gpVJWQKA4lGKA-4K1szRtwYDWdPdDv68oizobrmx-bN_N54PaD2rP8YRBhxtJI2oANduNR18GG_YxsjzBipiPee-Wa6dOeEyF95mHOvRmoG7MOHPZ7La8WQNBJzCyoUU60QaOCzIKmGQsdVPg_WYZ62zD3AalsNk6UgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -945,17 +945,17 @@ interactions: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:16:25 GMT'] + date: ['Wed, 30 May 2018 21:14:29 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup4?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [df85b035-aa87-483b-955a-8df6cb7a09b5] + request-id: [dc137ce9-b12a-44f2-9296-8d005d2af947] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1186'] + x-ms-ratelimit-remaining-tenant-writes: ['1196'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -981,10 +981,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:16:36 GMT'] + date: ['Wed, 30 May 2018 21:14:39 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rEq0_432zNpHj60H_DsnQvoKrGtNROtc6-SHs2jjpqDZk4bvX4z6xCc7ReypHqCL6MEX1hsJ9zY4SHyeFShvDABVGLVk0IsuyQuf5PZ7TunOl8qm4AOxAVNg4UZ6H7vMaUNTuCMPlSiQ4B57TrqZSw6P0GrZDvgebxEe6Va6B44AgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rg7_aH0sBubG-GJ7nSf16dwY71iK1v28ok5d7w-auY2C90hBXrChDUR2q8S-NqZtU8juhoXwPFK3331LXvakoU9TJJrK26LxsKGFgF0WQ-d5eWlrdrgG4uQHYQ-TXBs0p_mIunHRnFn5RWG6EM8GTkh1hRmjVJoGb8P3ra_6EDfcgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1004,21 +1004,21 @@ interactions: method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup4?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup4","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup4","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup4","details":{"version":3,"updatedTime":"2018-05-24T09:16:31.0889575Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","name":"testcligetgroup3","displayName":"testcligetgroup3"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup4","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup4","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup4","details":{"version":6,"updatedTime":"2018-05-30T21:14:34.5328858Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","name":"testcligetgroup3","displayName":"testcligetgroup3"}}}}'} headers: cache-control: [no-cache] content-length: ['540'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:16:38 GMT'] + date: ['Wed, 30 May 2018 21:14:41 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [a6538cc4-2892-41f9-a349-2e28b043c6e8] + request-id: [fec38314-6760-41c3-8496-156de4f95dd8] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -1045,10 +1045,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:16:38 GMT'] + date: ['Wed, 30 May 2018 21:14:42 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rRRTl0V5AfbgEjhj_jj_FU_bRwrdKNlyqJabNo3f27EX4jqLtvtnUDBmOb981k60iIVkETVcSi_SIHWY5azZSK_z_T_goHaWAMRNGGo4eVqdGktFJMhoHakQlIXbh8ELZx6OTpckVBUKwEZPYDVi-7Keb09JGzikmMeWVdkc63BUgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rWjY1o_vryJGomForU37Eav7GGWBsK2RuErWDKH9iDsJYqRKBfJOft61P3twihZKFxMvzo74Antv-4yXssTJPpxY7-V18c1aCYJRpFiNtj_sj2HXUuzEPpRYvdhQM1R14SDPhm1Bn81jyvKNbEAqKzAC1RC5WF2EW9Cb5cfRAvVQgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1076,14 +1076,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:16:41 GMT'] + date: ['Wed, 30 May 2018 21:14:46 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1190'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -1108,10 +1108,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:16:51 GMT'] + date: ['Wed, 30 May 2018 21:14:56 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r2AWmAzQhK8wMQqE764MGQKutmR9QV10v225MgvFYvsB1k95V26OtfW_5o3fD4amkKRLSiKQnZicqNiu6xSWhMIkEzlzMBPVzY6tXNv54NM8tvamiCAD3PiEkAN-pkpi0379UvwE4FtobwjvpzZECpR8-Tp7-E7kLoX7GZChOdhMgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rgP-JiXtK2zYSycyG7U8kwFac_eezLNHqCtCrUpIYaP7nKIOSMiDQNhXwAlSK0eaMSARwXmlGyYv9Cz1Gfu9k-B5gp47sqTmBS3AaxtDKhxaO84ayE8AaAIZ3B9v_N6rqHUaKMq-lvijjYOELTqC-R0juFu69bsnR1U5aBd052ycgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1138,7 +1138,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:16:52 GMT'] + date: ['Wed, 30 May 2018 21:14:57 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1168,10 +1168,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:16:53 GMT'] + date: ['Wed, 30 May 2018 21:14:57 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rRS9qAidORWd4X_TCe7HptZNRawd94qhANpS0fqO9-1nzxPeYfO5YijiZpOvQ-XqbpRIrO1WcMRvKVmz47rJsFkimM0ahfC9qGTJL_UmE_neikQEo_NGp8uaX_h-wYlwOf-UtabZGUR_Rf6H1P30cc4qKKdIIJ-pF7OpxGr81uPMgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rbHjjsF9rYTFZkjpoS0_HZZHOYQOPbwlyambjFwul8bS3KvZjvw57vbP1YPHo05N6tEXCxzaGDvc35DZkCNt3CyCtsC9W6_C0PkeuOwep33YR41hkHZus9Pg8zGbJ4Mvr_1hQR3MVE6dkGYgGkoqPD8h7sxGOP0ParhYAzr9-DDAgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1194,21 +1194,21 @@ interactions: method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup2?api-version=2018-03-01-preview&$expand=children&$recurse=true response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup2","details":{"version":7,"updatedTime":"2018-05-24T09:15:28.1821724Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","name":"testcligetgroup1","displayName":"testcligetgroup1"}},"children":[{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","displayName":"testcligetgroup3","children":[{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup4","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup4","displayName":"testcligetgroup4"}]}]}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup2","details":{"version":10,"updatedTime":"2018-05-30T21:13:33.5354756Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","name":"testcligetgroup1","displayName":"testcligetgroup1"}},"children":[{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","displayName":"testcligetgroup3","children":[{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup4","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup4","displayName":"testcligetgroup4"}]}]}}'} headers: cache-control: [no-cache] - content-length: ['929'] + content-length: ['930'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:16:58 GMT'] + date: ['Wed, 30 May 2018 21:15:01 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [de6351df-6acd-45de-9bce-990addb58998] + request-id: [13344870-94b8-473a-a694-e9d57855e993] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -1235,10 +1235,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:16:58 GMT'] + date: ['Wed, 30 May 2018 21:15:02 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rYVe9CLvr58G6REwi2kfRkwYzrsHRhNm1cADhb6IRbrMn0YAQ6PwmwAv5Gvhk7n-gZiZ8xKE9ivbq-UlGVQfgUrls-nUoIpw0xCUmFmxmIuPhr5PitQLd_Nf9G0OvUPMD36gLKVmU6SIztqN4pvUX62QRvJL2kc06uCjjbJMJWZ0gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r1HRXOyZDdJgzlVe-f0geV2lvqWcziiaZHihkDe2f7ZiXlJMF2AKMayBFJp2txptimTnGXQvCIHnks0Ns_YDPq3tc1GT5yJlc69UsG02sZhK2m7FrNCCNaPnf6j4ISO6p0zc5IXlGNslLGuVS8FP224GdpieesHYsyVJJZKyUgaUgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1266,14 +1266,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:17:00 GMT'] + date: ['Wed, 30 May 2018 21:15:07 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1178'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -1298,10 +1298,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:17:11 GMT'] + date: ['Wed, 30 May 2018 21:15:18 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r8wcPX3DSqSc7D_3FaVICVMH_x0nks_acoAMUT3P_21oxIrxxA_U4sKeejeZJuKbNIsxRlAeSw1FBFZhvGGqKuM7vYT3fa6EYGh6VexYubCytZnW9f22rc6YWGI2JbzbO8HscTVLtHbj9x6a9LYiOT59FNxZ9WuaKDd8nU7m6H5AgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rfOIk0NaeNpRGmpMYv7BOcaYJC4gYd6H4rp_DVDlGWGBLGfg53CuCMt4bD-J1QFmFhpm6_Zrt4P1-ixHlxux26qpBAK1pfuyHibRlTjkgUiRfAbBWpNeF9ccRnEa7k9a8bTZfXzpIxC1T9e6-nQFbKyXKW7GCiNZTV5AOTQIRH0ogAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1328,7 +1328,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:17:12 GMT'] + date: ['Wed, 30 May 2018 21:15:19 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1358,10 +1358,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:17:13 GMT'] + date: ['Wed, 30 May 2018 21:15:18 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rY6mxyQJEYhfeBEwlMncj9jwy_CtPdYIfC009dUX2QnLfB8wS2x9PkewGIo48_0kx84iq0Uq-1u7HAeWZg7AjDzQmkRdIJy2EIqZTWutTwzmYdslybUL7RLna3ogVPTvd5Iw3YqipxJv31BG9nzbbppyBTjkLdbG4Ou7JbhYYrCEgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rBj0lgtTVKpNSemF3o0VHijG-gEG7DahQ5CG2yCNkzO_bGccS7SmacGANcaewnPgC-WRAbiqXER701JgIQqGnaUQjiQ1j_2CswA5rr_UAdbj3XulfcvqygGEIDFMzrXC3VA1KiMxpTKq8V0Pvo_Cxjpl57s2XxmOSfc1EWxS2NDggAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1390,17 +1390,17 @@ interactions: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:17:17 GMT'] + date: ['Wed, 30 May 2018 21:15:24 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup4?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [55d522dd-e826-4cc7-aa6d-4ce6ed352fa1] + request-id: [a56363f2-1027-4265-98ea-89609b804c12] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1185'] + x-ms-ratelimit-remaining-tenant-writes: ['1195'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -1426,10 +1426,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:17:27 GMT'] + date: ['Wed, 30 May 2018 21:15:33 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r-G7lXw__-Tgux7oTBO12GeYMFBYEMldGpM6aWyfGpmBWvzOzt3QD2KLobFTsl5jV1_HLcHbUvoegeEDRBjnsRGg58u6K6QdLJSsIv6PgHgg1KiwhVUXuUad6ZIjGczluyuMgX9s1Erbjib6VLTYfP7mPVSeqZKeyPopWnCLHLSkgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rSCkrk6by51ksBnbpgKSg3K-OeqTm9rMFGA_BXpEJYKAcNdnlEEnS86oXfWcav0uNCqir6NIt-6NfKA1I-AenmLexC1IES1F1yAijXiDM3ktxzbDxdN67RX-DIrNuzGks7bBWr8ISIn7bGUoVt2RGTtWxIxcCbIF_B57A-_JCjykgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1454,16 +1454,16 @@ interactions: cache-control: [no-cache] content-length: ['179'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:17:29 GMT'] + date: ['Wed, 30 May 2018 21:15:56 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [14fe850a-0271-4e2c-8c29-ec1211ed9d0d] + request-id: [42844987-e8ca-4314-acc1-a56dc2b06b17] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -1490,10 +1490,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:17:30 GMT'] + date: ['Wed, 30 May 2018 21:15:57 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r_L3izfv1XJGMfYcXO82LYj0hCpcBIvvNHD_9xUJdpNsOqxyiK5K5DQUcvixY9VSinu66mSlCPsVODEgT620BSyKOFt9xaSyeH2gcdvsjsYJZ6B9BC-M9mPZqY4lWW9URgNXgwgZ0jeiD2ri8WKC7qaI3eD7C5B1YHvCQVWdHvy4gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r_dX1xULZcZPHRbXTAeH5Nr-n6tNgpWzyvv6cpKto6Sz1UQfZVqm2yd5Upoc9dPcKHC4XoMFBBSlk13-kOagXAgCyk4BSyxm9whCENqECkWm0Xk6zQPVD9VlqLpKOhNsH37I49E3ZBb4MMSCZJyPu5i7YXwnI5Pa4COAvitWjA0sgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1521,14 +1521,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:17:33 GMT'] + date: ['Wed, 30 May 2018 21:16:01 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1183'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 200, message: OK} - request: body: null @@ -1553,10 +1553,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:17:43 GMT'] + date: ['Wed, 30 May 2018 21:16:11 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rdwWgSdIvcwtShunC1g5z5kefoTF0GVAJtQhaXzCpEfVChfMqGcl8-dMU0CMBgWKaz1umjkK-PSVeM-Z4NVTPvkbSf9L1IdL3QYuV3MMOzd49MQlLBNUU3MsFvdt7WA5N3WbDrGBJ45vvFejG5wf9grYGSiuNZwbCtIHzh8ye6ZMgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rNFe75ZqsoLKE62VunHT-dwG9ZywpvuTr5uLXFlWehcBZDhTiJWYsL0zBeXxXrhVPw2_16YP8U72kt23k8irqmZf-TR-3FKhkVsjQN_QiBvyMgqSHNRy3AQxJhQMP8fnbbda0BOYWHNpjt8xyxEJvdHD4iq00-RDkh_9_EbTlNgMgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1583,7 +1583,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:17:45 GMT'] + date: ['Wed, 30 May 2018 21:16:12 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1613,10 +1613,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:17:45 GMT'] + date: ['Wed, 30 May 2018 21:16:13 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rAB9V8b-RRb9UzXHc4OS3pkvTQXDiWPvUMEBD2tplbTUX3X12fPpTTbrnuMuU4-L2NUKWhZ-E3-ITRCmVXAGe55rcZ9nzHs8e4oB_TSLB6p9RXLiYKVqUn3zZdO4_Xank2NxW4jmIaju3_fTypOIUC8KpHlSh2s0u4phiK3Xn_FUgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r7G6Q0HIiLayuzhO13p0l4_cKUFjUmwSgkw9sILKCPj0HmyqPFIADsZDfY5vwLMkbBwj4QvLFvYY_ZbfsS8Ytv-B8jpKvlR8vaLbRCXz4LClNkNCJlz8ZQIvfTmbx28TH52kAKqABzZPS9ZpsPmKfaFsCFA3LB5jXiw8Zm5jNjUUgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1645,17 +1645,17 @@ interactions: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:17:48 GMT'] + date: ['Wed, 30 May 2018 21:16:17 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup3?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [754642cd-ff1e-49d6-ad06-ad3868927de6] + request-id: [f7d89a3e-282d-48d8-b36f-09c3faaa7d7b] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1184'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -1681,10 +1681,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:17:59 GMT'] + date: ['Wed, 30 May 2018 21:16:27 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rp3D78BJmqfW4JlsTm1DwDjEXhH1dB2Zgn78EDBfIpOdPMRFEqwjtC_elvb7Gg-Nfp3gVY07hBsbFzT8YZYNtbBxe1EFJwcyx4pChGymhaGHdyc2S5J-25wDUKmPnuvTalqgl_ViQywmfxHi0L8-JNFK7o1WFDEGEw5QILeMHGbYgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r_-T57N6iyswaVQve-v748FASFpb7nwSSB15FKvNQtkeOLUrlogYEqUgUf5xqxk-46QUKFY3o-UoZGVrVqmMNQLzYaoWfyEb6RIa81uSCJ_juv0vYTJyhEDXUommIh0LK-3f-S0rbPL2BUGqEhNIRlJu_Xibp9d-cPpGqekMQNkAgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1709,16 +1709,16 @@ interactions: cache-control: [no-cache] content-length: ['179'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:18:00 GMT'] + date: ['Wed, 30 May 2018 21:16:29 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [df268818-a020-43c1-87d7-80a08b1a9db9] + request-id: [f54315e0-f77d-4d3a-94c1-feb057720355] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -1745,10 +1745,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:18:00 GMT'] + date: ['Wed, 30 May 2018 21:16:30 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rEcIB62-h-REjbrGx5MhoxjjdTj1OwZfD8w4xl3BtD-NoYxwm72QWkTFUJhN6M9wsqYuwT1S6u4lFy82Obxo66Ilvo4GLwBCNwwEu7rr0B6QEPgcZ1ytPeEfL1QfgfA7iZaqqN6Zu-kfODNLwWOil1SSfsVG9AJ7R0QF190tAM-ogAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rSvBn11HYrC6XuTZ9dJcPgWMHLt-ubnn8jc193hOtxYD-D61ZMAufzMx8GFR8_lf-reCabAskNAysDQL2J7_aYZmemJf6wdBseMHqzUyELNvvusRZWF3QxYf4j8bDyexrdpZ808QTesa_96FpnAFwiKfBoDMh9_BFB4EJW9NltUIgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1776,14 +1776,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:18:03 GMT'] + date: ['Wed, 30 May 2018 21:16:34 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1177'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -1808,10 +1808,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:18:14 GMT'] + date: ['Wed, 30 May 2018 21:16:44 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rpiYvnDtWYa5kgRosnDZ9ytw1C1jResezngvHmPQdszNPxG-QKyd93y-FAkN-Bx__CstIqXEkmP4oHQWaSLsArXt_HimOAz43xCphuAbkVpHuUpRcFE6z6UJzjcRSy8KZALkt9kS-qn87F0Qo_KAcbV5tcHJJtqVOZaFGGSBTKwcgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rjWr7WaOKWqqlF0PL5LiiHxhRg-F3EzbME9ja7NumToCJQtBAVAcyETQ78XXVyx_lJrPvCYv06AL1Bae3T3Bd5DAK2xqMGWiwLEUHoSA6bPpebAoqT0mbTLSxmjXih2Sweixdr3F4JbEnKtOTdFK2MlMq6pL9-1ryKu11UaZGBq0gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1838,7 +1838,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:18:15 GMT'] + date: ['Wed, 30 May 2018 21:16:45 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1868,10 +1868,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:18:15 GMT'] + date: ['Wed, 30 May 2018 21:16:45 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rY7xECnwDZXK978PCdcN67T5p5E4tkiamMZVuyEW9veiYaoxPlrq914FdcU3wngxaYtjUy6pKQBzPKppHFuN1c_93x2XtxUY1YtlHH_r-VuZKKxsLP4UBwdyVcVVVNuRQhYMUiDWCbgbXtpITM4NFyo4NJgd70wfPqLMEDSOdGhcgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rq29SDkc4JFX8Pa41KJ00lPOqnTJ5ol8Vk55iYgtH95NubhUFNkgPWJoGYYdsjyMfLJJZb1BmmBOOHWkF2LyqzftIIIaShVc_BbYnnn2XDrQWPeFKcEGmzplsHM2lt7EYIpHGwBkRsoZRL0E8VexTwxEDRXzrVTPH9IrRUDhxdUkgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1900,17 +1900,17 @@ interactions: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:18:19 GMT'] + date: ['Wed, 30 May 2018 21:16:49 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup2?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [8db75928-0a3d-49da-aa00-cc7162c17254] + request-id: [7d93662e-dfed-4076-ad16-4c64ebc796cc] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1181'] + x-ms-ratelimit-remaining-tenant-writes: ['1198'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -1936,10 +1936,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:18:29 GMT'] + date: ['Wed, 30 May 2018 21:16:59 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rOaR_CU-ZhmRbLlazLLMb-QYqL55NVvwRzNn79A5-CoRMKAKegH4lww-qgjrTop3tRz6-E5G_90utwGqg2gIy_Xs3xPEFZyAitvhZ4fg11tqAcOPH4I9S6nUQciXyqTdckAjKV0p6Ck2XwND49GZEujAnjXaaV1StxoTZ3XxY0hEgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rSjfil31KC2YASf4v5e7gPYqizOIbtzakEEpUbEDJLwgybvud4MPiIsy9H6AujjS1tQVnj8fv0THjpU0DQlO5CMiwacahZplISCO6J0bv6_FC-wy7FMk8NygldexZqeVX7SXPl7Gz6OTbgVlBKMHV97sJMiQF2CQnHjvwJgl6pqYgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1964,16 +1964,16 @@ interactions: cache-control: [no-cache] content-length: ['179'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:18:31 GMT'] + date: ['Wed, 30 May 2018 21:17:01 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [fbdb3871-e528-45d4-9330-f36f62d8a3e8] + request-id: [2d950698-6846-4a91-8166-9d1b604766c3] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -2000,10 +2000,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:18:32 GMT'] + date: ['Wed, 30 May 2018 21:17:01 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rEA_mKkOb3c2t4qe61nZAlYpqKA5P3U7EyVhJOTvBANbqpLUHTWyVCn75KyV_yXDaT1k11JsQ77hxdyAheo2fmc-7o6NSQvqJVphYQMOWF1qWeBubqa1A2568fofIO8MkDgRXJu1IsYwNnky09YGA5k3j2UVmRYRjiBL_bZV_Q68gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rj4viHgbjJyUtzkBz1WQ34gpfTJYWi06WCzBuMYUQ5g2qAOly8JCMF-j4oUWEj_lEeAZpC0jtCNFs6vY0EBiCZEAdebpqFv3abTmyMH1IRMo3tORPhh8oEUeMJ9sZcSCJ3l1LOjCvg0OIurRz0DvyYITf9yM01f6bwXxZ0rA2Y5EgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -2031,14 +2031,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:18:35 GMT'] + date: ['Wed, 30 May 2018 21:17:04 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1177'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 200, message: OK} - request: body: null @@ -2063,10 +2063,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:18:46 GMT'] + date: ['Wed, 30 May 2018 21:17:15 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rCJpNpyqBj7lw2hemEgEhtjCF7PaUcHPbB-dgsLFasrUMh2oT_kyyFGBUWhFNiln3WcusLSkqxuSWyjUekLUIGXZc3pjeJjGx4FZlrQnoC2Qt84TxaSdZMM66y_sEXQuQ_9yWLe8YxClkQKL8r-jtbZWLWeSLoX3TeSkX3HaheD8gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rO5RTvY0BYPsUdUsFHoZ-baDtYy6GiYKMXbTnQ-HTB07tLwqar3IYkND1_9foeyIjCxpO0EE-lsh7xRSf03CH-LWZGMeB0uB3ve99IukfIa0Jtm7L1LsbqYWaN5fXVDZhLcu9Jx1oRvhJTHPQV1AudeEvOi4QV3SXLTDy2whc4NcgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -2093,7 +2093,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:18:47 GMT'] + date: ['Wed, 30 May 2018 21:17:15 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -2123,10 +2123,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:18:47 GMT'] + date: ['Wed, 30 May 2018 21:17:16 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rtjuRtu2KSC67HaHCoXqphsDIfEVEgLWat-7wvhcKICU3XcADLGGIS1q31XI6JepbTDyM68tfOQLeZWC32xvq_SVZjriNrvUbKObwNAgnTEODEPS58qnT1NxSYxheS2cle_-ZJFgXATYQKxmFReOrksFnddcZvACjAkHSqQlgdY4gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r-B6SnefRReYTO5VHjW9Tn1u0Fd_tnofFAfvrZvw_W4t8kjWWtnv5QMP1a536tZSASkUA5bLtZ9De46ayO2DeW6_hzrAqd_TUgNPsvI5ALKUAB_RN7PvQGG9gSumFZziILrm3HRA2ETwuVWSda45r6U72dAGcxA4p_0ttxyut3bQgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -2155,17 +2155,17 @@ interactions: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:18:50 GMT'] + date: ['Wed, 30 May 2018 21:17:18 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup1?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [5b345275-0eb1-452e-8de4-14c5e5085259] + request-id: [1983fd86-3ebe-4e06-91ee-019165bf9ab7] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1187'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -2191,10 +2191,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:19:00 GMT'] + date: ['Wed, 30 May 2018 21:17:28 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rMB9SE-Yc_Gik0qagmAFb-C1NtDNt7ZnHJnRPzEauRjLEOs0bp9z0X8gZQfVP411K_X_K75PlHxdAgaIoO5h2aCHcSGnHIeAirHn9zg3qJGVo7_9eWgPHdYxwru3keGOZFeJLuy6zPuMWbwmpi6NMyiUpQ47svdutgXM9uHEVN_cgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rmRE9KZ-VGrdqWQYfKP2ISpiOHenZtwIkCEsBM5LNxZCfOqj7ich2Bt99Lg6Hv01sWM6t_mPt8ZZTJ_8_TT7AxsWqfdZ0ZDqwur-HljLSAu4UNIbid5nqW42KaeXDOb3LB76eBckbFeZYw-AkI9V8cPMJEp6G8obN6jQsmGGkNL0gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -2219,16 +2219,16 @@ interactions: cache-control: [no-cache] content-length: ['179'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:19:01 GMT'] + date: ['Wed, 30 May 2018 21:17:30 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [18b47b3d-a1a0-4322-8909-d48a75615c05] + request-id: [c07e4c69-67da-45c1-ba6b-c5b8482ef887] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_displayname.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_displayname.yaml index 390b0a42aa0..92ca384b79c 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_displayname.yaml +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_displayname.yaml @@ -22,50 +22,16 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:51:24 GMT'] + date: ['Wed, 30 May 2018 22:36:22 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rvet7EjErHEd2I4j5c3YKe1AKK1OtyY6IGEgEfaoZT0D-dIhE7H2togbfx6wAzr6nR7MpO6vsJGWv774fdAuoqSNI5nQx2kzh00FqEixfPqjWr_mLFsMHt9hWp39DnLayatqpNjHq_0GVg2HDpnsx6v_K3vSudNsnw2Ml3YFOnyUgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7ro-fdY84aU77kMZF6UYh9yzqPg25TxRo9-aA7t_x3ko4QK9QzCDHKUyvtlmLESizcn6KE-rNrK_cFHMxK_J6biqbbE5lvOeqZ-h6IHh4wTc8eBWTWc4ni8xkoyQ8NOFkR5IxaEGwnkm_smLBNwBiRuHm_O3n8pJog5KD_kHhYii0gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} -- request: - body: grant_type=refresh_token&client_id=04b07795-8ddb-461a-bbee-02f9e1bf7b46&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&refresh_token=AQABAAAAAABCw9Q9oa6nQrnwvHeP1w5Oz9LHpIBkug879jkq7T31G02PdnRMA2-BAuOD0bz6iniSlbR8WC4x7UZxO1BPmemUX8YUeNDolz2Vdxu1BHk9HlbhaKxn3UyhiSEyllhJ6_9AlVXNPpK9aLYZMHXMrwGXz4j5UKkjnxIg_tkXbIULM0QpSiFpQy5WFgybK7n7QoiEAKgz4nfZye1FMY_DW2WCmo209VvEtN1A6-vxGg-c9bhWUgVHhKGIu6qAt0xs-pKhZu4j828WRxJ-TC-CTFIwpcaxDmphR4L3kDUZj7uPcy2EZM0ufV_XbpUKz2R1arZd-oPr-6_-O6_Z6NKL_94H8Sk9SvbIVxqZltXZ9Eh2JsiefK02W78CDH1_UxX-sOCbbYTS51lyql8xeoTnO0_7JLtDyO_9l5TxrdPfm-S1TQRqUq03LG5a5EQcJpg2e1krO2KbZk-0GWcLA9Xb28ncZgCbGiSHSjHsXgFw10HL4VIEZH6GFl6Es2wT5CyML1SbkcW-uhXyx-8pl88EACWY-kVnDomQm4jMrbF3aDVZTVJ34nfx028hCRPvdmhwyQINYbBOfpcyICFBVUVWDEh24jjT9nTkb6m-qiWMOJwp4EzLfom0Yw0-pufLsL4MWGE64vjbYF8rIDXL7oYfC_0ifb9Rvi6EBSgIAy4hAKq7fndRk8PewImv8BMuRTa0POaySLbYnfugr_8wMRIiBwIqg_dWNAgca_BdD50fernbEiAA - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['900'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: POST - uri: https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/oauth2/token - response: - body: {string: '{"token_type":"Bearer","scope":"user_impersonation","expires_in":"3599","ext_expires_in":"262800","expires_on":"1527159085","not_before":"1527155185","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImtHYzU0TDMxdUFaYTFveVlvYVJTR0NpWUt0ZyIsImtpZCI6ImtHYzU0TDMxdUFaYTFveVlvYVJTR0NpWUt0ZyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvYjFhZjQ3ZjEtMTM4Yy00ZWQyLThiYmEtMTE5MDQxYjk1NDUwLyIsImlhdCI6MTUyNzE1NTE4NSwibmJmIjoxNTI3MTU1MTg1LCJleHAiOjE1MjcxNTkwODUsImFjciI6IjEiLCJhaW8iOiJBU1FBMi84S0FBQUE4Y0EwbVdIZWNueS84dVA0YXBnNGFoZmpoM0xIdWpkZWZzK1U3bTdGV1c4PSIsImFsdHNlY2lkIjoiMTpsaXZlLmNvbTowMDAzQkZGRDBBQjAxNEY0IiwiYW1yIjpbInB3ZCJdLCJhcHBpZCI6IjA0YjA3Nzk1LThkZGItNDYxYS1iYmVlLTAyZjllMWJmN2I0NiIsImFwcGlkYWNyIjoiMCIsImVfZXhwIjoyNjI4MDAsImVtYWlsIjoiYmlsbHRlc3QxNTcyODFAbGl2ZS5jb20iLCJmYW1pbHlfbmFtZSI6IjdmN2JkZDZjLTYyMzktNDQ2OS04MDRiLTNlNTcxY2YxMDM1YyIsImdpdmVuX25hbWUiOiI3NTE3ZjNlMC0zZWNlLTQ2ZDYtOTcwMC0wZTE1OTM3YzFlZmQiLCJncm91cHMiOlsiMWI0NDRkMzUtMzdlNy00YWFkLThiZjItMDM0ZGMxZDliY2Y3Il0sImlkcCI6ImxpdmUuY29tIiwiaXBhZGRyIjoiMTY3LjIyMC4wLjE2NSIsIm5hbWUiOiI3NTE3ZjNlMC0zZWNlLTQ2ZDYtOTcwMC0wZTE1OTM3YzFlZmQgN2Y3YmRkNmMtNjIzOS00NDY5LTgwNGItM2U1NzFjZjEwMzVjIiwib2lkIjoiODIzOTY5ZTItZjhjMS00YWRkLTg1MjYtNjI1NDRlMmY5NmIyIiwicHVpZCI6IjEwMDMwMDAwQTYxNDY1NTkiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiI2ZG0zcWk3SUl0aWhhVnJRZURFbUh5WVBuUmpuVjhSNVdvajAxRTE3djY0IiwidGlkIjoiYjFhZjQ3ZjEtMTM4Yy00ZWQyLThiYmEtMTE5MDQxYjk1NDUwIiwidW5pcXVlX25hbWUiOiJsaXZlLmNvbSNiaWxsdGVzdDE1NzI4MUBsaXZlLmNvbSIsInV0aSI6IlF1bmxHV0N6UTBlNUNzZWRjbkVJQUEiLCJ2ZXIiOiIxLjAiLCJ3aWRzIjpbIjYyZTkwMzk0LTY5ZjUtNDIzNy05MTkwLTAxMjE3NzE0NWUxMCJdfQ.STHWOF5gWst_bQ8BtEN-RSFDSY_iN1ejLTCiFh0fxnS89RcHfU6B5HIJA9E387VtAE3uZVcdkufoDLyV0kXKEUNHuwFYd3HkQBhyEjbmPOFC4D42sXEd4uQ2KUmmVrVm-lpoKl6qF4kVnI97-1WaaZbEGMAB5eQcLp2nfXZ2SEoohEjIII-V0cCzGDacjp3iAjyD4H0yTTkRB-EzMhx6HZFj2Q6-VwFypQD1--5EekoJCTLqPKGkKJeTMMBN7TXf30LYeNgCd9ADcvQvfIDJkfoo8CFVDDkOF-UAMWE_1-rHwYlmx0Nm-KvFvKZJ4BRRd69BIlqldpjPVzyTBtYnOA"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['2064'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:51:24 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,3706632.366,'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -87,14 +53,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:51:27 GMT'] + date: ['Wed, 30 May 2018 22:36:25 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1185'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 200, message: OK} - request: body: null @@ -119,10 +85,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:51:39 GMT'] + date: ['Wed, 30 May 2018 22:36:35 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7roXBO3wv_brDni21fe6wtj-_wUwcGcES6qb-6NsQENiWnjhiA-37i1ETwmX1wcZzkXqgQW7Z422tsunc_Kj0d8wE5h9Q2IEknRFCGR8pGj6UIewuNV62-QQItaaehsxOAu5meg91dx8XPWONYT78H4HeeckJV09-tny_LL_5I-yQgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rswYgGOQooITJBfR9vSUnjUd5u6HFJAPo4GICww4RZscP1CQiIa5tbDPMPG8A8U9l08P2ZJBSs7QIgRrOkDymquBjSU15P3xqLiJ3jAzTSXynTX9mPnkLpolu5hwhcwGYepnb9NJqtCSRqrnhEHbmOy1cgJFGL7ICutX_wrrIa4MgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -149,7 +115,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:51:39 GMT'] + date: ['Wed, 30 May 2018 22:36:36 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -179,10 +145,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:51:39 GMT'] + date: ['Wed, 30 May 2018 22:36:36 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7reqFIJrDhQmallVNNnpGSqatk3pEW4XK1jbtJiEYGw9QQtUTeczPVMG5XENP1cfuawF95VL64ROd89ko541ZYe1-rVTeNoPl6xU-emOkv0m8G_7kDZtTkby6CUB7YnVCpWsKOlKmO6YuLClWn4i83PaaUJYRFhCem8cEKRFH76VggAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rWga-Y3lkCHeOnAENz1aGHJJVWnRf3MTtHCeiEOBkQtTeFCV8jziDlkDOYE06Rd4-tMzMehSATYkgDhMPl-MOvPvnu5WMsLPxlWZVFERzEzVSaI7TMTUfnnKUDCcN-CoefvUP1O6IJ9jLtn1CXRNPu_Os2F9W_4jabz_u_vEezJkgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -211,17 +177,17 @@ interactions: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:51:43 GMT'] + date: ['Wed, 30 May 2018 22:36:39 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [d0b6e1a0-c6fc-4800-907c-f20061e3e86f] + request-id: [c99c9f24-663e-4970-b8de-4ffebbdb945f] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1179'] + x-ms-ratelimit-remaining-tenant-writes: ['1198'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -247,10 +213,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:51:53 GMT'] + date: ['Wed, 30 May 2018 22:36:49 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r0uMU9U1RUlUP6m_CrrpJ0s37zg2fGVsco2q8E2iTM0t0pHJlRFa6yguR3lQJuPjjuCv1q4SugqEh-7tRI8HiO6kfnU1YVMsT7sr5xh5bTIwcmoFIGAcFi7u5OsmCd-Rg95HRmGwle-nwQKnWUZfWKcASIAPPIJb9jJkBwaE8EuIgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r5zJ0DLiuxAbTrPIdtDXVbcauX1oqQpmJ_ozBqaCz_KcNpNVugpWXdWzmpPEJmG8tegPViUFm4S05m0FWxlOfbtb8U2xnWHfCq5GJAP5Ne76RGbGGDoX9Bcm8oP-zzXMnji69Y9uy-e2BTeAsupqqJu78dWz9P2hRwrGLXQK4Hj4gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -270,147 +236,24 @@ interactions: method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroup","details":{"version":20,"updatedTime":"2018-05-24T09:51:49.3894752Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroup","details":{"version":55,"updatedTime":"2018-05-30T22:36:48.2205236Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} headers: cache-control: [no-cache] content-length: ['589'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:51:55 GMT'] + date: ['Wed, 30 May 2018 22:36:52 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [691cca86-57ff-4c34-b4e4-44bcff306818] + request-id: [1be04c00-8c57-473f-8a5d-2c3f5466663e] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:51:56 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rq8Sz_mN7UVCczFxZOc_aZWbRzFgMblmPvTm40EisBr6Cy_3WCNa-45aO_KqHwH5FnpCQq3jJ_eG0QEmG6zjzp3rwaM-A4UVTzci2t9Hf3gcOnBAFioxsjOmMdRV604wJCPJllWnuoN5EiFzvvEAMmDFnqJyIQ8TRwGev8L-wPxcgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [account management-group update] - Connection: [keep-alive] - Content-Length: ['0'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.34] - accept-language: [en-US] - method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 - response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} - headers: - cache-control: [no-cache] - content-length: ['1300'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:51:59 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1179'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:52:09 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rlJTUJVav4gZxKb2gxV1_UlJ285wKh_F-gnasXY-_cGSl4aOPL1z6Cw66uMNcZJEpoA70XOJmjRO8EHaNS_nAsOW5Uogz4tknqDFt2-xg9qBd0BLHBdGKjt1TtgZvybFnHlc4KuhcVyJ9en2KsN2UdNL-UuRi9R16khYbomvf8cMgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [account management-group update] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.34] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 - response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} - headers: - cache-control: [no-cache] - content-length: ['1300'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:52:10 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} - request: body: null headers: @@ -434,10 +277,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:52:10 GMT'] + date: ['Wed, 30 May 2018 22:36:53 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rQkp_I4sjoTlTUqNY8x98pYVufOwLYKm4T8ZWuELTcvgoKK55V17_meCHsCGb_sEr3OPAEhktcFewuG_ZPR7-nv-__JqahlDhpEXc1aJYFYQPt6JePGxGvfbwGSDHjdJ1G8txNTZkGvMHpIiSkn4hZtNVBeCjXN7YIdH0PP91rEkgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rnL_kzguHDnoqOkLqDoImiVThnM9jGKrK_ZcSaFVMQV9OLDNYMfK51Hdwv2ax4Xfn8VixNbFnBQkIRxGghhlD3fHeb43SubguMevZcK9HzRgm_yo46ECAgbi8k8KlXMBWppHVraqn7Ik_Vmb-4tWYfpst4fbM_JbumPklKvg7uJQgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -461,23 +304,23 @@ interactions: method: PATCH uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroupDisplayName","details":{"version":21,"updatedTime":"2018-05-24T09:52:13.4890024Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroupDisplayName","details":{"version":56,"updatedTime":"2018-05-30T22:36:55.3432929Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} headers: cache-control: [no-cache] content-length: ['579'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:52:13 GMT'] + date: ['Wed, 30 May 2018 22:36:55 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [8c928653-c4d7-48d9-9d3c-d66b623cebd4] + request-id: [5c982009-66ca-46a4-bd00-0952baa8a19e] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1186'] + x-ms-ratelimit-remaining-tenant-writes: ['1198'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -503,10 +346,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:52:13 GMT'] + date: ['Wed, 30 May 2018 22:36:55 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7ryNaeVjr8jU6rqQS-BDYG0LgE6ikvAQden8XIgyECc-7yfwA17jQIUs_fXBgD6DVI5JdQvbwzK4inrI_KxHolLRfvOPEn8U7G_lRoMJ2nX9YdkvehUZQNlMOMX4P8staBpQ0BeamBpkFiHTH3YsXXVdy0I7hcz69MdiYfxj9PhWsgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r4f-Jh7FxBCCWZlJdca717-Y5sAu2ElZHWqRV8-Zbb5JnJRaCsAKz04aV7m3zguxNdpZ2m3sixcbYtPjs06Z1XWGpwWKmAnkNoUh7GVHRabUGaeNqROWT6-rKtAVPZ_0naBCvX_R9nj3OFV1GyTDb9WDAKku9PB2ieswnjKHDvl0gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -534,14 +377,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:52:17 GMT'] + date: ['Wed, 30 May 2018 22:36:58 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1179'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] status: {code: 200, message: OK} - request: body: null @@ -566,10 +409,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:52:27 GMT'] + date: ['Wed, 30 May 2018 22:37:08 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rHnwCXRE3OJq7pVPxnhsPlUeym9mCY-6CaQb6j3HH0vvMPVpp90W8Lcgdh1NqhRpwZk_sUP4DK2uh3PaIDRG9xRmUBdef-ZELLe5zjitod20Qj2u9v5Um0fjlECoYyKxcF8JRYcRcJ9gU9gpiTUByFL7gcb4VnKaBPW5JbQu4a8ggAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7ruGzQigSBfgZX8GrfvX3O2OOg2t81eZbIFa539RmG853ATmv4GeEtEK8I82IazuG0wFREOrHbgls3ark9YBQJ-N5doHjVu-vTuDJBPnWweXY-6oLONZ6IhJLvzdN9ra317WGNyi1Twz6YLaA0zhBfxq1vLa-4PyD-BowiszHK6YogAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -596,7 +439,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:52:28 GMT'] + date: ['Wed, 30 May 2018 22:37:09 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -626,10 +469,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:52:28 GMT'] + date: ['Wed, 30 May 2018 22:37:09 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rQP9t2JpiIxqV_9D78KN7NI6IxfV7GnvzGovzGzbPr2n2i1_qzdVf4Tblryu8hOujEGMuOZ9zKFDaSNjjd1JNSSrdy3yQl0Pjn6p0N5j_E_mlY662o7jTzH8jAfUFfBtmQNVfnRRMAjP95S6J2SF5zePr1GqXPXQHlPqvY7OTDoIgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rCeob6H0wtqBYC1cspt0pE9LVVoydJg_5TbdsmnW9mji9Be3kubqtUC134dS-zNljMRQTk0KivbR4n6ZC70cXxeEAak4Ti0a04qcwBz0ScfnHek1mKt840FbiP7m3uEh3AQcwtIAWRzwuI1LZ0H0gfhELa3rFMeGM7ZfAfQLg6QggAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -658,17 +501,17 @@ interactions: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:52:32 GMT'] + date: ['Wed, 30 May 2018 22:37:12 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [bf43e3e7-4b48-4e47-8278-2c766c95baff] + request-id: [0e272544-9491-4925-a7d8-528e5c71fd5f] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1185'] + x-ms-ratelimit-remaining-tenant-writes: ['1197'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -694,10 +537,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:52:42 GMT'] + date: ['Wed, 30 May 2018 22:37:23 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rf1ydORKNHER8yp70DksMKWXQFI9CXQerr7IR6T9ISmwFs6biMYk_rB5nSBSLH4kwXHBaR-8anfEwqjKY_gmAVNZBS_yw7OBcIbDhr210ghD2n5Z99c6PHXHnXHBkhUmlrp_6_MWq9Vv-ZCqLYjLL_ysT4xjMyFOmwOhRfp5SgXQgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rdoadviAIHhouyfPjDKZtPzS3D2IewMqjCsw4EAp7vjIUdwy1FxdKF9lfakInfWdJ6XYTteWemq7rD8bBdKh568T1vgBFkqYo7X7brAylEk7gzhvghqBuPsGeynsA03lLBQgCAKNbwEXrvTLNE8vhuYArobiFucmC-3AIDH5IgrogAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -722,16 +565,16 @@ interactions: cache-control: [no-cache] content-length: ['171'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:52:43 GMT'] + date: ['Wed, 30 May 2018 22:37:24 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [28a59ebe-af07-40c9-bffb-69ff4a1a43bf] + request-id: [a21855f5-de8f-44db-a9ee-d16e56fac231] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_displayname_and_parentid.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_displayname_and_parentid.yaml index d4e6af2bf87..98442cd3681 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_displayname_and_parentid.yaml +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_displayname_and_parentid.yaml @@ -22,10 +22,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:38:19 GMT'] + date: ['Wed, 30 May 2018 22:33:57 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7recKVJa3rg0xObYpBqf9wooGDIaz2TrjEriW5E6HrM_a0DM3oW81fzNE5d7RwI3dgEe1oxf2Z1B66rC8HjiyG64schHDfpSfmU7LT03aALB_kviHAXO6jaEVRLRM5cmyVzz_5KDFfGXHiPmzmcIPeTACxSqf8JQjFDTLHjQZSGcEgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rT9VZaye-l35qkvDmn7N9fnYkeoXwjx7UI_d8Wq-27ciQoFndh3hWtDp1OTn1SYqJawn93FrymMT4w54bfZEBzjBA82lrVyMKDvnl16c614U-HHfkPWBuac7INTV985QsQlgwlmlIzkEzwa25FNY2eHiKh_Yw29YHWt1deg6V6w4gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -53,14 +53,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:38:23 GMT'] + date: ['Wed, 30 May 2018 22:33:59 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1181'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -85,10 +85,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:38:33 GMT'] + date: ['Wed, 30 May 2018 22:34:10 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rvn6oTf9PGmSOLezAib6YxIJQZAEG5d-o_Ky1yoN6IfMAId_4kAkTVBdVed53rT4KpJP5XsUKcwn06Qv1OiuOhJfUcdbWNSKlvarUD-KlzZYiB-BqC-C1gzvpaMtlj1pOHLzcrvk0m4_mW2B6YPPj29ASIdpucEuPXaxZkUuh_nMgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rnLGnIHONfDdpQ9RRMzGO0comSjbG9L2DNtvi4cyVVLkwbLxkymv9pUbVUiR6ZPzLzdhybotdeloMlWgHbDPJ_4mgMXym57XeVkDRL2VWmiVPu7cvulTjHMxgw6_fvVLWiPHQKVxq72_AJNN8eVhVSgVe21lylAFVu8x34bfQOiQgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -115,7 +115,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:38:33 GMT'] + date: ['Wed, 30 May 2018 22:34:10 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -145,10 +145,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:38:34 GMT'] + date: ['Wed, 30 May 2018 22:34:11 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rM2WLb4R6JT6wb57jJ-bhoxUsP-6s1yBRfLTFEU5nUdAlBcoO1Azqr7PDfiM3oOn-a9VALly7wGg5TnCcwFV6HzKO6J7EUFqY3ECJ-2AAdpVFfluI81zNE7ln_2bm_vkkijk4Bk5oPOm5k9AGL5AAQHDqoQMnn6XO2TvJKsgkfKYgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rE1XcCPFpvyvQevW1Gz0ll68iy0myQIFuf6AbWiHgKPqQvt2LdRS62JezHrWyr62kskBgxau3KPTp8r2A2ykCK2BovuA-TWKhD3FrtR3TKYk11oX70KC8wb1GOnTofYztBFl3U9b8IxBX1Y1BmmK3wH2BA_2ulsTfUFtC4DDWGJQgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -177,17 +177,17 @@ interactions: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:38:38 GMT'] + date: ['Wed, 30 May 2018 22:34:14 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [fe662542-bfde-4a95-9188-ce43f0629a54] + request-id: [8892cafd-bd0a-4f7f-afeb-4af42e5cb525] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1187'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -213,10 +213,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:38:48 GMT'] + date: ['Wed, 30 May 2018 22:34:24 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rjyPAqByt8mtr5StiK-MDJUdjjzVntrDOYnVIJ1tQFNTyL3_VM6R4UrVZJa06vsvHY0TcKgU6VswTn0-qiJMrstvHmrgndYWknpLbItvik9jrnUIDN8eL3TefK0SPeWRvw0_DBkAM5GYAcwAP9lcXzS4P2HwXbSO3aym3CGGJ80kgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rswMbkd5gaMSoMAfb0EHqDk7A5XDGs_7w6CQbop-7NdLrak38iyV7ulZoad0XsR-OkvU7Oh-SQzwHre76r1fNvuY8vdbO0Qi7GaK5jwjBGhDL6L0g2gICQ06vdA6sSS6N8LNLQeCrpNff4BiTjmeGA-knboUygmKP38KzkkuanoIgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -236,21 +236,21 @@ interactions: method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroup","details":{"version":19,"updatedTime":"2018-05-24T09:38:48.4019797Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroup","details":{"version":54,"updatedTime":"2018-05-30T22:34:21.6218006Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} headers: cache-control: [no-cache] content-length: ['589'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:38:51 GMT'] + date: ['Wed, 30 May 2018 22:34:28 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [e13b9604-f9a7-49fc-ac67-08c6d5b1724c] + request-id: [1d105edf-fe69-4b5e-87f6-31fd51c99e41] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -277,10 +277,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:38:52 GMT'] + date: ['Wed, 30 May 2018 22:34:29 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rnZIQ5sIYIkPG7b5yUsePayyN7WS422ShRYChXYOkK7Ryx9g2O6bhT032OhppRltEgV4CHOioMlcCXExrACYrQe8otUOkOSwK4Tom8j-OU8-v_oGkOAMFJejm9aejB2mN9nkEAfTkA3etCt1vAW4cR16g45cYeKQm4TJqcWH1Z9EgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rXdJ4E1i8A7U-7m4SRjlr-iecuSKL2xUK_dhSq0atl81N9YtTUvUHF-1xiHv_yZSsM5G6JFYXWMLUpS7HRbv6T5MA2WeLEdLPkcm3UMIbNJPuAuqKPWf-bYmSCtDTOvcI74g_xEL1vZTR4w53Enqv9TN1zDr3vA0ayql8LpO-rfAgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -308,14 +308,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:38:55 GMT'] + date: ['Wed, 30 May 2018 22:34:32 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1187'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -340,10 +340,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:39:06 GMT'] + date: ['Wed, 30 May 2018 22:34:43 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rFUEdDzcNZuZsmmIZPn-34ijsuVatU3TYuOUdDo4imvOxVKBofmAK88FlPO5RALM7jnPyJ-WNhIDFq1_X3IsFOnZyj76RsiNRPNRPpYjwziUiiqMRcw94dLhD7UJutVT6oCEpbNiXy0fBPpBnqMOjQmUANDo1izc6B3RNRHKkWGUgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rTEyU8EkS0nAxYYz2IgUWR_Sa3xZXxiUZNN2nN8JgZtnTuR-rz-eA1cHSEUZBva04KRUtSWN6DPmg-9AkMDtSYH3le2dIo2SkEBEstTsioeCeV_CH6ho7NtUK75O6PxYPqruPoFDnRbrNM5aXLMwnYHiUJhJ590d-ekHbS1uU-gYgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -370,7 +370,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:39:06 GMT'] + date: ['Wed, 30 May 2018 22:34:44 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -400,10 +400,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:39:07 GMT'] + date: ['Wed, 30 May 2018 22:34:44 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rbhrIOTglknIkoGyyrP8irJF54OjNOfvS-1qUlFAaP8Nhui0yy9HdojVw58xy_U1f1zwmHmmeG64oHEQX367wdUImPLTHQpjzVpFt0Ug1bufxlDPmPX7SOM4LMm2uPaxoLTUDe_iCKwczV0BTiEiXdx9uYwnHBkrcuDK9S-YDq50gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rJgZcasSrG2JV9jtyu7PHSOl78SfJ1KVRLDkfX_s1jyOh-uOQWusZIjk8Wxn4mtVVl2WKjw9eKYGW8dN_QUz5rmodMQ6kb2WgKgTXs2u4fI_GBGM3XucNVhhh4gk2Dl2c6DS-rBkU-C8TtgVOaWvAq_3JUs6ec73n4mZ4ETn08csgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -432,17 +432,17 @@ interactions: cache-control: [no-cache] content-length: ['182'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:39:10 GMT'] + date: ['Wed, 30 May 2018 22:34:47 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [16dd1231-434c-4991-9eab-46e99d745cfd] + request-id: [9cc8a93a-d603-4a86-89d1-a0e083e9e165] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1182'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -468,10 +468,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:39:20 GMT'] + date: ['Wed, 30 May 2018 22:34:57 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r8ANBXvU0PeCpAnYXlHLLdDFLE7PkcWLKy2Y5KhFrCyQkOa9GjQ5-xUMI34VbjsuT3z81yZxltb1ddEiEcDxkhyqkfSKe_vw88VkwPPyAnk2EQ-18CbxTDGO7nhV07rCkQ0--UByEcqiXy2CvrCN2DYe2Q0ElrpJ1YPfhZwmplE4gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rtK-FvLpth2cv74cKasgEPOzMfVCm8o39-IdwTjdnJ3ZgxckNVSTCcPnS_4mpLFdTI9w9YUfM81hJSFqa0EONN4aAik3Er2WlVxrcG1c3w_PJhgi4vMM3pr0fU0PCvOSr_MRrV0jHOkQgX04qPRJzZzH7Waqb_Ad4Kr037mAhskYgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -491,21 +491,21 @@ interactions: method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroupchild","details":{"version":7,"updatedTime":"2018-05-24T09:39:16.1053713Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroupchild","details":{"version":23,"updatedTime":"2018-05-30T22:34:53.7164901Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} headers: cache-control: [no-cache] - content-length: ['603'] + content-length: ['604'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:39:23 GMT'] + date: ['Wed, 30 May 2018 22:34:59 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [f1004546-34e9-4cda-b6cf-204acd214be0] + request-id: [303dea32-5e0e-4152-bc3d-aee96fdc7785] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -532,133 +532,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:39:23 GMT'] + date: ['Wed, 30 May 2018 22:35:00 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rZvV4rw8FCfduFEEQByPU2AupDXrKm-8Tnfd15Og7jkIuPQjlucbW6_FE5YmdnE28P1spRmcUIFOaP4u8Bm9JbtwK6kUXJ_KpoC45KvSBy7wWckrkQjDQWZBxraDNMw1P0Hu56gcYTAOk3gwVn6uIjMOHO3WkiFeVY6M_XshaZWggAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [account management-group update] - Connection: [keep-alive] - Content-Length: ['0'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.34] - accept-language: [en-US] - method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 - response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} - headers: - cache-control: [no-cache] - content-length: ['1300'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:39:26 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1186'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:39:36 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rGIj9c3Esr94m6Ca_qxrePO-0h9RvANAlsK8xcGjQW_hTzb3P7-tsRelpklxfUyL3QyrSwU4ZjDMWa0EelUTFlrN1IWBMgYF1w2ArYI2iSMA_JXcWWr88MZA8jnnqwY2szYnDeeqJYjsYaT0WRD-7WVBQBzjvao4XhVVlBEm1FnAgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [account management-group update] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.34] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 - response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} - headers: - cache-control: [no-cache] - content-length: ['1300'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:39:36 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:39:37 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r3tmV2_LmjyChvG8_aJbpyvA9J_a-9RHGSj45e2nw4v1vklx9sZ89gjjYg03Q5UKVDl1P0JHKsZXg0laRIrG2JFGDdeA4kSYFfnlRvpSg365XNvFW6ZsKQc9F86OlTZ6AxSI-V_imM9G_9TRjUVYKln-_FiI_DjIiWhpHCf5Ri3AgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rY7NeqzuEFezqWPq9SCCijKcuXD_8BGXzxSAUvHr957zzk4gJ3bwAyI2DHMqvLWFl6nYzr0fLR4VVIt6PWxp0pKkaREpRe_h7BW7n-8R4lVmiyzDyWyFRiBi2ss3JjRWBSyz2k1Lm_Brwe_uccNkKAEwwFsesS5rXwAUxPFwoHu4gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -682,23 +559,23 @@ interactions: method: PATCH uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroupchild","details":{"version":8,"updatedTime":"2018-05-24T09:39:40.7224245Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","name":"testcligroup","displayName":"testcligroup"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroupchild","details":{"version":24,"updatedTime":"2018-05-30T22:35:03.4796128Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","name":"testcligroup","displayName":"testcligroup"}}}}'} headers: cache-control: [no-cache] - content-length: ['510'] + content-length: ['511'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:39:41 GMT'] + date: ['Wed, 30 May 2018 22:35:05 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [726b5515-4a92-48e1-8569-15a7b05cb470] + request-id: [774ebb69-1ae9-4051-bc92-f4afc6add844] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1181'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -724,10 +601,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:39:42 GMT'] + date: ['Wed, 30 May 2018 22:35:06 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rLHGphkQRuv3e1ndl9EXisE_-J1eT2g20rv4Ryox0eDS_r0rP-L0BiRlLfrFFVU2ZIdVJ_JYP5zCzgSqc0Sk18aIrTYVnaBFrlAszzkk_zseTdHqFfxv4xWd4VcFPhBUmPyIke0TY_cBwgPEpeksVDskb__6jOpG6xOKzguY1TOggAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rmb3gGKQXBRABQ2caRyT4PANGBQYpkUKwoWYDngQZsGh4pkau07Tf1tUdGSJJg_f6Qq9C7_dKsc2FtW3Yli7kQYNrBzgwtVGh9KiOC8yxPjEWev2psUDCEtDM6fOihYi5lyNjH_z4VRkIEcSP9BZ7S9-v_2l5gnLtcdqjdEy6E5YgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -755,14 +632,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:39:46 GMT'] + date: ['Wed, 30 May 2018 22:35:09 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1180'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -787,10 +664,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:39:55 GMT'] + date: ['Wed, 30 May 2018 22:35:19 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r5JJM9XjUSf-DcEjbxkMvd_jmpTA7kHXMzdgs2MxPSqxQLcQ8RY6kppVWUju39OsnKfnPq40J50K_TEAFyA4iPPMd49v_vefuEYOZG6T8k0QAapNjY1jn8NjngHLypv0WzxeOqf1WrqlXK99Yk5Od_luaIp03LUX4-dFwlgPCD8IgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rkg7bnQ58WE8aKDtwPryKDr52j4eXOiksSnot3MxgVK0ZVgVLGnyyMzB4CVvEFwAJ3M2TOmp9f3MVkukF_pXHVzU703_QyJ5jWNsA7pn7d3RlYDH9jEHXX2IqMpXlS1vLXgphJP6x8TMcS4ndthVqADOX1Z0OyXcmCHW18PG9xlogAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -817,7 +694,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:39:57 GMT'] + date: ['Wed, 30 May 2018 22:35:20 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -847,10 +724,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:39:57 GMT'] + date: ['Wed, 30 May 2018 22:35:21 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rtLKQ6m6uuPfz40NgMmTMpvSYxp5P0H83u-nQm7YPMYNaMwpgbIjS3STgfSlu73mRlspKmQLjrNvQy6t2D-AYoo-ANRL_M-1I9fODf75LpQZ57mTHdq5k_sUsi-6pnNxfpWXQn7cjYf6qZJ9HHdBMCX-uLX7B6PJqf8YpEDKoBiggAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rfHNH81fc86n00-XpLxT_ZHWKsBBill5Dtvo6Ifi7mlfWlj9cRzUbn5x8FaHVj4wPtIrPxxua02uAXR2d4nwbyE5kUJXQhs4zTlMZfHvXXcifJWKAveARezTb4XNjssvfhuPbSY98NUwaqHvoImUevqL0hHr59yrLQvyeViVQoa8gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -879,17 +756,17 @@ interactions: cache-control: [no-cache] content-length: ['182'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:40:01 GMT'] + date: ['Wed, 30 May 2018 22:35:24 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [27dc2737-34ed-4539-bdba-1fa05c61b9a8] + request-id: [7634550d-fe4a-4762-9292-ae99701aacc8] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1180'] + x-ms-ratelimit-remaining-tenant-writes: ['1198'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -915,10 +792,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:40:11 GMT'] + date: ['Wed, 30 May 2018 22:35:35 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rsRpyNq_Hp_O6Of6Cb78swgY-YM8sPy-UbS04uTeV4kspKe8K23_s6puFkSoQvVR6knR1q3uLuTbL_rhMwJUkkAp8NfdVbLsldrUgdWt9Sozr3jgdF-y37zRSnRzu2My2rJh316TTCldHibxsfRO9NKqyiws0FpL-HogblwJrM-QgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r5Oy5CgtboWViFqx0EGR3F9dz08XbaraQrpbfcTHtT5EfAm2GZ69IKjv_pBJu1D-LcbNA0PycBi4IUpapMwPFX1tCMAdmSafUPcmXt0X3D_KVEfvZ4pM0x68zZ0C8uYmlhFyD09SQIulkVtOWv2NfJ9-_nB6RBF_5RnAQKcTJKlQgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -943,16 +820,16 @@ interactions: cache-control: [no-cache] content-length: ['181'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:40:12 GMT'] + date: ['Wed, 30 May 2018 22:35:36 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [312af45a-5e7a-4260-8470-c10b3c0a0405] + request-id: [8453d0d8-8637-40b2-965f-baa7a7884ff2] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -979,10 +856,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:40:13 GMT'] + date: ['Wed, 30 May 2018 22:35:37 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r6uqiP_ylzyX5_yBdZADT6NTMnzG4dY16JE7XL1cI-q9_kiLwCBzue355K9v3dyvj8qpoMjUp4djACUyD04aHPq13jNQcgGKd0DGYZWV64gn3pM5mpgNmzhrkvMyWVlHYtPvTuiR4Yh9LvLt3tO649S6056eLaxYQziUOF_PwyFIgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rrPUwJt-UUox5CTmZfZ_kwRb_ftd095wpIdoI_8GmA1tWERyJTTitI_HRMk7GQwGFWzm72jwHWqmupNDCAuXrwFb4UnCQyLUA7qJLq-ywBiRTUNcsmOuwieQOr5CwFrhkawYx5c2mnPVSkQJjkDz0A_MhOAZfYKDi9voPXxmuDWAgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1010,14 +887,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:40:15 GMT'] + date: ['Wed, 30 May 2018 22:35:40 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1177'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -1042,10 +919,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:40:26 GMT'] + date: ['Wed, 30 May 2018 22:35:50 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rCYemXvc9nbVuiYWuldW05BUhEcf6_xPfJmvtjaVAaijaTC3hZGF8mO3j6iNdO_eQtd5Hwx0YzKay9StbWyiPfkdbjN8nwvtlPQYKK2wgIdi2NtQHylpwoK7F8hW-CsvdVJ_W7OZo_flPWoFmXe0YMbLh6t7SHHzRWPm6NEU6gaIgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rEeER-2NoaQF93jcrzDly94c7ldH-2USIzKI812I8jd3mxyJY79PVJwZhVDH3cM4rlInIhuILNofS9BgK4tI7eT8b35-TeVFScEH4LPc-8jcBSznRZHpA4KCXB9LB0c_nG3iyVBYOhHyW3QYKa1xnK7gBGai95hDUf0uKfheNTYogAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1072,7 +949,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:40:26 GMT'] + date: ['Wed, 30 May 2018 22:35:51 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1102,10 +979,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:40:27 GMT'] + date: ['Wed, 30 May 2018 22:35:52 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rxj1wOLNEO87ocWejz1pdMiDRXP1re4zUpXULlt2v09Gzarna5utG6FJX786dFxXHoZDdVbzVbMQxC0codlzdJFI4J52SlFCIYm-NWwPZENj1p6hqc9uSOAROYg9eKyvhKGVLJ0b1i63Mgjjty6X12wtKJaQOrQVSKlkej4f5aYogAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rtfzwXHAAirt0XIW6FP5P731qY6vukYNNaX4QZwWyKYbuah_KOHdaKXpAOBOJLy9uyd_j3FStHYEWX-7-98bLiBbpJPvaTdrhW80zVgC0Cs5VNgGgRQ8ItVk-i73xZ6xHIySDP889hKfqyaTPjosOWkXf34LYxCQTBkJsmX-ZMvkgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1134,17 +1011,17 @@ interactions: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:40:30 GMT'] + date: ['Wed, 30 May 2018 22:35:56 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [7095f2fe-a69d-4662-b611-0f9f305e884d] + request-id: [e3fdc84b-8ef9-44b2-9671-c3306d1ac26c] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1189'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -1170,10 +1047,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:40:41 GMT'] + date: ['Wed, 30 May 2018 22:36:07 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rIGsb0xS1jRjAH6Uk2HghabxIqsus1J_YMZj_abn9KPZ36utdWHYS446bOXyUazrBXYwkzWm-Zztm0zX3aKCo8iz1bmH4skLm3MD4YTosizFtuiYCnVSGn3myczVLZ4N_OAHXPVJc7Yn0w8FbsSvaNIZ0Z0WnOZs2R1YsQcMQwdggAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rdB8mJpYBgHAfjpIZt04PVNfolTfK97KOobkpeMp7mE6RhdozeMEl_HNUZcPR2_tpU09-ez6eUhIIDScUw5lX_zL1fPmUuF-MZMtZBnhuDcAhV2VZnxF9IFjbBaOAFTLzTLbORFK2ZFuS8PkWEuKDBzTOZhkDqTQy88WPvxDXFoQgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1198,16 +1075,16 @@ interactions: cache-control: [no-cache] content-length: ['171'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:40:43 GMT'] + date: ['Wed, 30 May 2018 22:36:08 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [f13dc1e4-6701-4cc2-a544-c974436d3b55] + request-id: [eeefaef5-4471-4128-a7fd-b819c7bcf050] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_parentid.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_parentid.yaml index 8edab673138..4406027643e 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_parentid.yaml +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_parentid.yaml @@ -22,10 +22,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:54:35 GMT'] + date: ['Wed, 30 May 2018 22:38:18 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r84z7Qi1BgY2Pd-AVifH9Hkztg7QoMKRjw6o04fLh3iWLs1joD2txH-7O1yhJB8JrDfeKQEwlXuXKoFrjEbXRxzqzj7GNtUXyneqTFtniZLEiGt2_-k7MZXabmbtP2RJdHw6jHu7YjPyDVICDNiPKY5AGrtJhvKviI69dlp7zTc8gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rQqKDK4bRh-4X_4u-_1HMpCbQ7BQljihQXaAjS4ORFogh5-wP0pboi7ise6-FrGP1tlYFFEw2ayWBkoLt_LsBldSVxSolHZ947i7Lx02fyoWyYkHWyWd_2B6nW714I-ES6KKqv7-ZSwOEAHkUahCmyW-ULRKuV2yfBED05RsYU3IgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -53,14 +53,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:54:38 GMT'] + date: ['Wed, 30 May 2018 22:38:22 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1184'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -85,10 +85,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:54:50 GMT'] + date: ['Wed, 30 May 2018 22:38:32 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rHX5U8eJLrfyorguW8-tD2p36ZdvCoB3-3IaogXQ1gsf7o1xeIFWtQhVJmPkJ7WxewIsxDzUcRvYBt476QxJXA6e1zzFkWPG6CWicKehn93g49FPlsRQBvDyecQ9XNC-_pbn2scOzNc4mAVaISXyXeHN7yqVI6WNoBDK68iYMfAggAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rySLxZazul2vGom12aUlSgA2eRp6gr_6GlLQ0UXiSWeh6L00ODGN1ihw4OSzDPciAJtw6XO8mr2DsWDDuZ5N7_Bo9Q8wWTiGsaUj1V86n0qDqNtQidmdp3ObKviL8sfyXG3WNM7LvCOdn_qiEycIcpSwaQwjZRJK28UL0INe5wiIgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -115,7 +115,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:54:51 GMT'] + date: ['Wed, 30 May 2018 22:38:33 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -145,10 +145,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:54:50 GMT'] + date: ['Wed, 30 May 2018 22:38:33 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rSOKYCt4iyp8qFA03KXQ1nYKV-JLEU0Uh6y2CLHDqZnNCLHUD6vtbhmJWxycuSzrqQHtrxPlPK1C4m_qKGL0_0bBOuEqTL5lOM1kosWl32jDbS8U8rtKT_DhnxH1YkEXksCzUzO5s68cclETlg9c4c05QRfg62togogYPKFuH4FAgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rriiT_mBeYDyq5b0Up6sECYt7BncPGG_05vRkri6R8ZIz5PGdD3xkNrp2X7PAiCsDxHirDy50banWP2DT6F_bRg5FJfHChB4Oh7Y_WQ4JhWMiHhl00HWA3rDgR1y8DVGUZZTzXCdh2PwSZxkBkyDrffXPCPDReYqCrJ8n97QBm-0gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -177,17 +177,17 @@ interactions: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:54:53 GMT'] + date: ['Wed, 30 May 2018 22:38:37 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [9e55308d-91e4-45c6-93da-f870efbb4924] + request-id: [9cc27a7d-5f6e-436e-8695-14161835acdf] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1178'] + x-ms-ratelimit-remaining-tenant-writes: ['1197'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -213,10 +213,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:55:04 GMT'] + date: ['Wed, 30 May 2018 22:38:48 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rVuPt4d_QIE6Na_4yPPREIgObwJQK5VHzj0YMOmn_HWlgNoA_ewfXcAEFxuTf-XWvUNqtKyZe1pCd4kLc6D2w65xNrfdKDzBzqaP_SwPM1m8riIVl4AiGQCJClHMaL47VTBAdLyJn5OhqLSCp0Ft3QvqsKC0Pd6WeebL1f762ggUgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rTVWhzEP_VfSPf-YMAB4deciwrzfR21WZQeovJYSiQDV2U5El6p7RQ8lsSr-vq5jz1Ld9_txBbfbywAsKrpGJDHXp64rHm1CkhEo0NjyUDHcUjwg-T40HQJUU6mK8dvev0klEFLsJ3B08X0WdWgf_3oBApZt9lU8O06xI6S5Exj8gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -236,21 +236,21 @@ interactions: method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroup","details":{"version":22,"updatedTime":"2018-05-24T09:55:00.6697414Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroup","details":{"version":57,"updatedTime":"2018-05-30T22:38:43.7544043Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} headers: cache-control: [no-cache] content-length: ['589'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:55:06 GMT'] + date: ['Wed, 30 May 2018 22:38:49 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [14861cbc-ed25-44f3-96fb-122b7fb17c3a] + request-id: [37006d7a-b3d0-4aa1-bd24-f3cafd76def4] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -277,10 +277,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:55:07 GMT'] + date: ['Wed, 30 May 2018 22:38:50 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rPqyJA9_NUKZ3JZrqiJyFRU_SduXrXHvFvtzVBlZhi7JM1oY7S_1yqHHhr5VaZF76KFG1d0m9tQhkFgsv_fyz4tIDhXc8ptBm5t7gZjJsnsdYJSvFkVBABdVqrmwr96paopAqPHwcB4rM26B6gUXNLOrKbF3sbYVuqJkJKS9RAC8gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rSQWqKezWKPgFUUgcZc-CCp8y7Zumy8t0zjVG-EOSnpk5LLK8Ns_JLsig7xZLnGQH0UM3DnJEORwJsGbNxC7qK0H7wNMiLazNOXZ1SOiI7vQrtpLCGb50b6L8kiVLLILoXT8JxIb9jjCuHv7YqFfZkFSuV_DYiDUELyaAJ5YuBtIgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -308,14 +308,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:55:10 GMT'] + date: ['Wed, 30 May 2018 22:38:53 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1182'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -340,10 +340,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:55:21 GMT'] + date: ['Wed, 30 May 2018 22:39:04 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r1ceWon-zhPHUmFQ0sPXUBkDdyK7b3IJefumz_Pn_HxSNS_dzgSxw4n_vmcJK101TlOdxLRGKNlnLS6diJujkyivp79xDTSae_S0XrMIGIDFW4TquGA7hMcvGp0Q5phb1fQjVEQfAMeLemOAmwWs4sf-lsEEKfQtP200h5R3nbhIgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r-_MlrQAtucGRyUooIGM1XIDLSRVj8ZXFB1qcPE8OgF-SiWX76DSAaC4de2V2wAQ7zKrEzlIm2K6rSHLtJyDZFX4fhQg-OVA1fXr6lhE-FA4nrlnFgtszVfHbTIlmqTOdPbhQL_xxOqbEE907fkbhfAbAXckzZChCXgqkNoB7Ih4gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -370,7 +370,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:55:21 GMT'] + date: ['Wed, 30 May 2018 22:39:05 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -400,10 +400,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:55:22 GMT'] + date: ['Wed, 30 May 2018 22:39:05 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rCLyIlz6P1LyR53JWXOGX1GCK-iUT_BIAS6MZzVR7nTWWtC3MVz0aLKKEn61IYbgaWxaZVwLRKlGZIOaPb1hmjV-u6_1_nU7PiV-W3tRiBbA7Rb_5D0WTYxts6TymaR-yynJI4Mul7dKFLFc0KKKN226O92fJhkI1ax1SKopcC0cgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rtW4_WC83rUiDdIbnYPBQb6XaPYMMKUw06g4-xl6CCbRJrYbWw_QMExibsqOUlfOFMHQd7BavQLjIl_3zqkQfSzj82hSCwYWgxXhnxlwUcItTrTuZBpXJQwtABjr1NnkExGmSqCkXLBZLp09cFiMkxBYadThx3lo_OvSl6ijd8U8gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -432,17 +432,17 @@ interactions: cache-control: [no-cache] content-length: ['182'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:55:25 GMT'] + date: ['Wed, 30 May 2018 22:39:08 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [7187eb29-d717-48c3-baaa-9c3706293a8e] + request-id: [ed6e1072-e73b-4099-bdf1-ad8101b8d22b] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1186'] + x-ms-ratelimit-remaining-tenant-writes: ['1198'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -468,10 +468,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:55:35 GMT'] + date: ['Wed, 30 May 2018 22:39:18 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rDCA6JZhN5TkFn1e7l4bv5DoDkw6Oz_q_qO32Oeqc6RAE-7ObmJwEFqQDxL2VJhCL8gdwrdp6fMgo0u1TCYdrp2ygywMf9FIbCRCC6iIIsfmZzdYs1jrI5vfMUyYMgqXF2OxS48LD8CTx34oypsekZzipmj4oRmkBFgb4_twJXwEgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r2HusA0RkWHU2NPcKsIbYcAhUQn91BoCmCfMPr9wJWb2MtxMGplCDvTutLQWtulUSI6eXDwL9SEcojrasBFc2Dlh4uPAGlrpSbTZj04Y3mtSgXc1CyNz-quzLlpMtCpNZuXaRS0IaQ9Fc2rXg6W204I7EBM7j9UgY-cMybJ5zaqogAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -491,21 +491,21 @@ interactions: method: GET uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroupchild","details":{"version":9,"updatedTime":"2018-05-24T09:55:31.1163032Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroupchild","details":{"version":25,"updatedTime":"2018-05-30T22:39:14.653202Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} headers: cache-control: [no-cache] content-length: ['603'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:55:37 GMT'] + date: ['Wed, 30 May 2018 22:39:19 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [22438862-4211-49f7-b76d-9908f94089c8] + request-id: [09f4eb62-56c9-4ee5-8646-99a4b6f9c82a] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -532,133 +532,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:55:38 GMT'] + date: ['Wed, 30 May 2018 22:39:21 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rTXwSZzzNBfPYDwlyQ8x4D3HLmCb9InobAw2js0qzpHx0aO0HU2FhMSY63rDDY03ziJ2AXrj2_iQEEDkMnCEtO3MGwmAHiHijdhhq0kpEDnLoDxG_lIJBZ6VRyB0wukmOXnoybvwtvkGmBD7cSP1WMv4RWSBVe0qhBAwH_slVHHEgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [account management-group update] - Connection: [keep-alive] - Content-Length: ['0'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.34] - accept-language: [en-US] - method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 - response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} - headers: - cache-control: [no-cache] - content-length: ['1300'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:55:42 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1180'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:55:52 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rpEJujRBXsYmtWVkoQtOCEugs8zPdJTezAbyuis3kfJl_ORzInHnsD-NMCP_LnJeazWn33ODy6eB0aUIvvhNCW9yiJmJwoDqd3CU95o6zzTPKh7CiK0QonWSe3N6RfdmAfnbOuFXiIOz2UeSj_PM2PKjE1RKxyfhA1GQxSzSRcGMgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [account management-group update] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.31 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.34] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 - response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} - headers: - cache-control: [no-cache] - content-length: ['1300'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:55:53 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:55:53 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7ro3Hlepsu44QVRW-mzMugozfdbDtUWd3A6qI-TcsIe9VdQ3fQFuLUrq2fAGTgTVB0bR0w59PgP7sW4lIC21nMwT_L2iVYPT0imQO8NOJre5U5ntmXf83tqOjdyCwgAgdsfit8UcuAStB25vvB2JbUVdbKTw78S2ies-e20Bl0q8wgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r04IY-gIzF8Ekp8E-LJobWnLsVL75bLygpasI6Zolh8TJXTlC1rVTt-bML8Pq3xPCACsXTmXMGGlcEbY3Fvegg4KzB4xsyA2aKlJOEmPwZXAl1sHK-sZixQdXokfj7mepHrdZEpy2LDY5urgXxhjmn0Xi6ysxw2HHkJXKWROM8dMgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -682,23 +559,23 @@ interactions: method: PATCH uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroupchild","details":{"version":10,"updatedTime":"2018-05-24T09:55:56.2192726Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","name":"testcligroup","displayName":"testcligroup"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroupchild","details":{"version":26,"updatedTime":"2018-05-30T22:39:23.9937403Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","name":"testcligroup","displayName":"testcligroup"}}}}'} headers: cache-control: [no-cache] content-length: ['511'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:55:57 GMT'] + date: ['Wed, 30 May 2018 22:39:25 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [986b3bf2-56c5-40ca-8bd2-6392d9667f68] + request-id: [bd693883-fff8-4e92-851d-e91ef491892c] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1179'] + x-ms-ratelimit-remaining-tenant-writes: ['1196'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -724,10 +601,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:55:58 GMT'] + date: ['Wed, 30 May 2018 22:39:26 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r472muVs6RNgNImN1NO7Qk-KhPFf-5wi1OktUZrOEx7zdijLeVcaj0psy5OQPgaDquV5E9TuqyTtugsiNnOwwmzL6-LCVBUSADfZVu25E2atE_waeX7QcBrV4dr56FSeaS8CmRZmqxj16ctf4msMckOyrUBKTql3NYCiGYx702icgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r8bxLfhjt-TlZ47pIloJlKmI8DZbhnC_NMipG3QZU4mfPY2bBiMyrubMHS76aX3f3xXl_DKGQmV7Ny3X8Sc6plorVX0iZJ9JEjp-MXmIDpVg4iqtWWw5gzti30qjM0tiK30Qw3tu2ik8oZVx1OKqitQF9FsewnFK7KkZS01GIF0AgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -755,14 +632,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:55:59 GMT'] + date: ['Wed, 30 May 2018 22:39:29 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1179'] + x-ms-ratelimit-remaining-subscription-writes: ['1195'] status: {code: 200, message: OK} - request: body: null @@ -787,10 +664,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:56:11 GMT'] + date: ['Wed, 30 May 2018 22:39:39 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rSC61uZEYcu0Lf2v71z1EY029YfNvtz2RUtAso-VO_-WUjMW1fB5_xY9V6-f-xbxEMmEEaWgzkhQD1_Q6EsDWpvYyGk_tEmfYyyp74T4AWXLW37AZVPFEspwTywFm41gwY5ql-hrpIFyOdY1k5O-CkTA6LEqPJOVfhFKomlpsdSEgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r5KfZSh_fdZWhkiB-4mFyWSA219rPanhv_YQCDlPE8Ynzu35ZVHoGoCuteUYc8ekUb7eW-S3fMmEfMU4gPWtzF6EsAwNY28QVWvitbHIYFaJTirxavZKtIS-cuKFH5Dkso7Qx78-EEQlEeu5wnTnEoG2Nilt8u7s5kRDfVoyvzLYgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -817,7 +694,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:56:10 GMT'] + date: ['Wed, 30 May 2018 22:39:40 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -847,10 +724,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:56:11 GMT'] + date: ['Wed, 30 May 2018 22:39:41 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rXD7-uRbfzwuAqSnRKG9E5_xaE-6gunCG0v6OjutHbKFmdrC1xaM-VkdWqtv4ajGrS5w2NfKU9qwgLAs6c8AVFI5K0hfhs_QbB3sX9JnW75lSDwNj9NUOl9EttYYuSmdms8IrgqQc9VubbJRcGZhKvBQh5Q1Jxm1zDmUpCsKo_logAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7riZFy-joQAkLptKltRafzQv5RIoR8C0t7xGxYBilTCUYWzwcfW5txfMyFeK33dlMC235qXSY1T-17uQQxr5W-61K-ErUUa2A-_-qahJOG8X-JjeC_JRm8l4YlQoIx2FZACNmkPa7srMxguMrSlhrx5vTsJmDYunXy9DUnVOl7AdAgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -879,17 +756,17 @@ interactions: cache-control: [no-cache] content-length: ['182'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:56:14 GMT'] + date: ['Wed, 30 May 2018 22:39:43 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [1cd5151f-c2a4-4141-9698-27ef8f679aef] + request-id: [ab1f13d0-7794-4a44-882b-a5eb3d50a917] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1190'] + x-ms-ratelimit-remaining-tenant-writes: ['1195'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -915,10 +792,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:56:24 GMT'] + date: ['Wed, 30 May 2018 22:39:54 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rWX1rCWw1K6KmRuX93A1nCMfDT_U00yUwKr26qtKw-4px9kRFasyoeIdFvmNz3aZIfvwwp5RGzLm9uxNUnigjVRWe6Y0nzQ4ONiimq39CfPSiC0P5o9ZsDfnE8KLRhZy43pXkcuV7BCWMR1Pwq6Tdt6ifjJRasz6mVpvOg-6m4DUgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rllKEoi2fr752W1uIEvormlHypDTvXD0egOXmNQdOtcexRwDVONTmiSznVQ4-WC00uJ_tkuXrQowvSbBgTVHMU6no5bT4hH9xE0wI1th7pf5nkCf728oWiLNMExK3CWXWQQa83DhWkJlnMms_HG9pN00Y4K1VK_yRVjAa9edpyoIgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -943,16 +820,16 @@ interactions: cache-control: [no-cache] content-length: ['181'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:56:26 GMT'] + date: ['Wed, 30 May 2018 22:39:56 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [e0d5d44d-9141-4643-aba3-a3e516b42fbf] + request-id: [ba03d3ac-b2ce-4ca5-a096-f3f9a2eed6eb] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -979,10 +856,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:56:28 GMT'] + date: ['Wed, 30 May 2018 22:39:57 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rr6d1BC37291ZW39yA1tVtS6J0DKjwm8rh3Gei0yRMnfxADx2mGp2YUSj0iJ1Ik8orKQ-3sedwi6Y1kBSbdQxXeTya-SCCMr4_zsdn-WKaIHRZG5cPWw-vNblRghs5ynVkjD89YqLGMcnG755nm3hLlatreFvBnEY4fa7HY8hMPwgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rA0etWqi_ncmGvtGS-SZJRPan07QPExOB1tNJKWCAl-L275512KNyRmAxJThvDIz-P2FGJE6o057GfwuKfw7ePsSwQbP6JD8ONSLf8AY1-mL5PIqARTX8OIEFJ0G_RpMRPFmmTrwTKGlB0k7Tu0ZS2HvifsD7sQcSYX25xywNdn0gAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1010,14 +887,14 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:56:30 GMT'] + date: ['Wed, 30 May 2018 22:39:59 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1185'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 200, message: OK} - request: body: null @@ -1042,10 +919,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:56:40 GMT'] + date: ['Wed, 30 May 2018 22:40:10 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rm5Q6ZVW2Lkw2CdoXRiCJmICqyn04_GU2vej-EeW_agzBZlNZgVrCk6oCbKU31HYatesIbhXilynJG4bXjFaygfaHa2ESpFB1FgjzFOFF_j54y3O1hedxMUo55GIKGH1pxR-V7x41uDKK1CVkrfkj9_tNa7dEI-jmgl-WoOz-g_4gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rFnjwH4YDwl9errLaFavL4-nxxDM75J2b365elP5ZmokHatFGqcyz-QzhP3nlW5n_VCHq9etiN-vjLiwf99ZS4Lteor-072CX4QS5VnnuygrXJU-1_odNN-tMq-k0c_Ojcv0ZldNuQLAhGMHLk93vSZ9mb1-Pc1rr66FyZJ1KUnMgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1072,7 +949,7 @@ interactions: cache-control: [no-cache] content-length: ['1300'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:56:42 GMT'] + date: ['Wed, 30 May 2018 22:40:10 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1102,10 +979,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:56:42 GMT'] + date: ['Wed, 30 May 2018 22:40:11 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rdjgYUAkXiw5HbQLtVvgLHDbHFnexR0nEm1SiXdDpNgUUHH6PR-AYNvj2ZJH_Wdeoi8FbLSZ6nihKl4NYRqvGLhq7xsjQi8LHdKAG3yHxv9LiZ7TBj0yqAyj-lR8_I0WEpI9IBQgqZ0zzAutjATR1k3hVyXxm1hY-JgbtGo59TA4gAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rGPZIBGgKgePy-eCVAW3SLEx_IVNA9P8HlM5XHpWdT-MWeaGP5JUGRNtm68IFBX41ng5av1lrBtEOw2HPGjdad3yZXb_UPPc76hfQ2Wu0HfBOh_km9Bh7gZ6Kw0rXQAcNDVLp3_ZRxAz9Jw30dqe78E1xHDGQnc6ROvSRSdbWcKAgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1134,17 +1011,17 @@ interactions: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:56:44 GMT'] + date: ['Wed, 30 May 2018 22:40:14 GMT'] expires: ['-1'] location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [d2b5ecc1-18cf-4301-af19-88ac786d31f5] + request-id: [41127462-7043-43e3-998c-086fa9e9a865] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1178'] + x-ms-ratelimit-remaining-tenant-writes: ['1196'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -1170,10 +1047,10 @@ interactions: cache-control: [private] content-length: ['131'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:56:55 GMT'] + date: ['Wed, 30 May 2018 22:40:25 GMT'] p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rmarOikXi_m4Q4BiClQdZl-alzEWj3wf6KV4YDFGhUYnAYU6JUrKpQDbtCdsUimzx5N4IOAKAfZBkb21j2oR884RDrQTZY9cz5k9fAjAjZwiQmbAEEJo6CvTFmu82hmiTZr-Xbo0xcgJZ3TuJcTtmz2NmH_JG3_rlObHFkSrKXrAgAA; + set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r9HkBir-9mZjV7w99ioKC-b6K17OSASj9SSLRfomyGVhNaSWg5Q0CaBgYZrOjCEfnekQ-K7cef9XhVwIXQ7EVi11AiHHBPPgV2V_XGDZF5XWD0iDmSYG9kVfhcRMrAGOqbB02_t9xA50JGh-lybC5r5BM1k7hulZETcm0470IIxIgAA; domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1198,16 +1075,16 @@ interactions: cache-control: [no-cache] content-length: ['171'] content-type: [application/json; charset=utf-8] - date: ['Thu, 24 May 2018 09:56:56 GMT'] + date: ['Wed, 30 May 2018 22:40:26 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [ab7a4edf-a80e-49e3-ad75-2aa13627e851] + request-id: [f6a89774-beb6-4100-a0fa-f5739a5ec2bf] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.790] + x-ba-restapi: [1.0.3.804] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} From 6d06867f2aec23e1bd716cbbbe72b62f68e359ba Mon Sep 17 00:00:00 2001 From: Raj Shah Date: Wed, 30 May 2018 16:09:50 -0700 Subject: [PATCH 07/12] Style check --- .../azure/cli/command_modules/resource/_client_factory.py | 3 ++- .../azure/cli/command_modules/resource/custom.py | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_client_factory.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_client_factory.py index 96f577f7ea5..7c55a817ab5 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_client_factory.py +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_client_factory.py @@ -109,4 +109,5 @@ def cf_management_groups(cli_ctx, _): def cf_management_group_subscriptions(cli_ctx, _): - return _resource_managementgroups_client_factory(cli_ctx).management_group_subscriptions \ No newline at end of file + return _resource_managementgroups_client_factory(cli_ctx).management_group_subscriptions + \ No newline at end of file diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py index c43d99ffcc6..d3e1e0f94fa 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py @@ -1107,7 +1107,8 @@ def _get_subscription_id_from_subscription(cli_ctx, subscription): # pylint: di def _get_parent_id_from_parent(parent): if parent is None or parent.startswith("/providers/Microsoft.Management/managementGroups/"): return parent - return "/providers/Microsoft.Management/managementGroups/"+parent + return "/providers/Microsoft.Management/managementGroups/" + parent + def cli_managementgroups_group_list(cmd, client): _register_rp(cmd.cli_ctx) From 25e61374a139141a912e98251f46a67e88c595bd Mon Sep 17 00:00:00 2001 From: Raj Shah Date: Wed, 30 May 2018 16:28:17 -0700 Subject: [PATCH 08/12] Some build fixes --- .../azure/cli/command_modules/resource/_client_factory.py | 1 - .../azure/cli/command_modules/resource/custom.py | 4 +--- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_client_factory.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_client_factory.py index 7c55a817ab5..8f350202402 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_client_factory.py +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_client_factory.py @@ -110,4 +110,3 @@ def cf_management_groups(cli_ctx, _): def cf_management_group_subscriptions(cli_ctx, _): return _resource_managementgroups_client_factory(cli_ctx).management_group_subscriptions - \ No newline at end of file diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py index d3e1e0f94fa..82831a98aff 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py @@ -1079,8 +1079,6 @@ def update_policy_setdefinition(cmd, policy_set_definition_name, definitions=Non def _register_rp(cli_ctx, subscription_id=None): rp = "Microsoft.Management" - from azure.cli.core.commands.client_factory import get_mgmt_service_client - from azure.cli.core.profiles import ResourceType import time rcf = get_mgmt_service_client( cli_ctx, @@ -1101,9 +1099,9 @@ def _get_subscription_id_from_subscription(cli_ctx, subscription): # pylint: di for sub in subscriptions_list: if sub['id'] == subscription or sub['name'] == subscription: return sub['id'] - from azure.cli.core.util import CLIError raise CLIError("Subscription not found in the current context.") + def _get_parent_id_from_parent(parent): if parent is None or parent.startswith("/providers/Microsoft.Management/managementGroups/"): return parent From 9a9566ccff007f95a81e84f854526e4c100d7beb Mon Sep 17 00:00:00 2001 From: Raj Shah Date: Wed, 30 May 2018 17:20:25 -0700 Subject: [PATCH 09/12] Minor fix --- .../azure/cli/command_modules/resource/custom.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py index 82831a98aff..b9bc4ada120 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py @@ -1133,10 +1133,14 @@ def cli_managementgroups_group_create( parent=None): _register_rp(cmd.cli_ctx) parent_id = _get_parent_id_from_parent(parent) - from azure.mgmt.managementgroups.models import (CreateManagementGroupRequest, CreateManagementGroupDetails, CreateParentGroupInfo) + from azure.mgmt.managementgroups.models import ( + CreateManagementGroupRequest, CreateManagementGroupDetails, CreateParentGroupInfo) create_parent_grp_info = CreateParentGroupInfo(id=parent_id) create_mgmt_grp_details = CreateManagementGroupDetails(parent=create_parent_grp_info) - create_mgmt_grp_request = CreateManagementGroupRequest(name=group_name, display_name=display_name, details=create_mgmt_grp_details) + create_mgmt_grp_request = CreateManagementGroupRequest( + name=group_name, + display_name=display_name, + details=create_mgmt_grp_details) return client.create_or_update(group_name, create_mgmt_grp_request) From 21ddb6b582ed4b52736284b2f5d6cebd5c6c34cc Mon Sep 17 00:00:00 2001 From: Raj Shah Date: Thu, 31 May 2018 12:39:05 -0700 Subject: [PATCH 10/12] Fix build errors, rerun tests in prod, update help --- .../command_modules/resource/_completers.py | 12 + .../cli/command_modules/resource/_help.py | 40 +- .../cli/command_modules/resource/_params.py | 5 +- ...t_create_delete_group_managementgroup.yaml | 345 +--- .../test_create_managementgroup.yaml | 345 +--- ...eate_managementgroup_with_displayname.yaml | 345 +--- ...ntgroup_with_displayname_and_parentid.yaml | 689 +------- ..._create_managementgroup_with_parentid.yaml | 689 +------- .../test_list_managementgroups.yaml | 164 +- .../recordings/test_show_managementgroup.yaml | 881 ++-------- ...test_show_managementgroup_with_expand.yaml | 1158 ++----------- ...nagementgroup_with_expand_and_recurse.yaml | 1494 ++--------------- ...date_managementgroup_with_displayname.yaml | 393 +---- ...ntgroup_with_displayname_and_parentid.yaml | 725 +------- ..._update_managementgroup_with_parentid.yaml | 735 +------- .../tests/latest/test_managmentgroups.py | 6 +- 16 files changed, 957 insertions(+), 7069 deletions(-) diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_completers.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_completers.py index 85f731cd44a..1e280a84662 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_completers.py +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_completers.py @@ -8,6 +8,8 @@ from azure.cli.command_modules.resource._client_factory import ( _resource_policy_client_factory, _resource_client_factory) +from azure.cli.command_modules.profile.custom import _load_subscriptions + @Completer def get_policy_completion_list(cmd, prefix, namespace, **kwargs): # pylint: disable=unused-argument @@ -46,3 +48,13 @@ def get_resource_types_completion_list(cmd, prefix, namespace, **kwargs): # pyl for r in p.resource_types: types.append(p.namespace + '/' + r.resource_type) return types + + +@Completer +def get_subscription_id_list(cmd, prefix, namespace, **kwargs): # pylint: disable=unused-argument + subscriptions = _load_subscriptions(cmd.cli_ctx) + result = [] + for subscription in subscriptions: + result.append(subscription['id']) + result.append(subscription['name']) + return result diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_help.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_help.py index b3480dd3abe..d5ab110953d 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_help.py +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_help.py @@ -169,7 +169,7 @@ examples: - name: List all management groups text: > - az managementgroups group list + az account management-group list """ helps['account management-group show'] = """ @@ -189,13 +189,13 @@ examples: - name: Get a management group. text: > - az managementgroups group show --name GroupName + az account management-group show --name GroupName - name: Get a management group with children in the first level of hierarchy. text: > - az managementgroups group show --name GroupName -e + az account management-group show --name GroupName -e - name: Get a management group with children in all levels of hierarchy. text: > - az managementgroups group show --name GroupName -e -r + az account management-group show --name GroupName -e -r """ helps['account management-group create'] = """ @@ -215,16 +215,16 @@ examples: - name: Create a new management group. text: > - az managementgroups group create --name GroupName + az account management-group create --name GroupName - name: Create a new management group with a specific display name. text: > - az managementgroups group create --name GroupName --display-name DisplayName - - name: Create a new management group with a specific parent id. + az account management-group create --name GroupName --display-name DisplayName + - name: Create a new management group with a specific parent. text: > - az managementgroups group create --name GroupName --parent ParentId/ParentName - - name: Create a new management group with a specific display name and parent id. + az account management-group create --name GroupName --parent ParentId/ParentName + - name: Create a new management group with a specific display name and parent. text: > - az managementgroups group create --name GroupName --display-name DisplayName --parent ParentId/ParentName + az account management-group create --name GroupName --display-name DisplayName --parent ParentId/ParentName """ helps['account management-group update'] = """ @@ -244,13 +244,13 @@ examples: - name: Update an existing management group with a specific display name. text: > - az managementgroups group update --name GroupName --display-name DisplayName - - name: Update an existing management group with a specific parent id. + az account management-group update --name GroupName --display-name DisplayName + - name: Update an existing management group with a specific parent. text: > - az managementgroups group update --name GroupName --parent ParentId/ParentName - - name: Update an existing management group with a specific display name and parent id. + az account management-group update --name GroupName --parent ParentId/ParentName + - name: Update an existing management group with a specific display name and parent. text: > - az managementgroups group update --name GroupName --display-name DisplayName --parent ParentId/ParentName + az account management-group update --name GroupName --display-name DisplayName --parent ParentId/ParentName """ helps['account management-group delete'] = """ @@ -264,7 +264,7 @@ examples: - name: Delete an existing management group text: > - az managementgroups group delete --name GroupName + az account management-group delete --name GroupName """ helps['account management-group subscription add'] = """ @@ -275,13 +275,13 @@ - name: --name -n type: string short-summary: Name of the management group. - - name: --subscription + - name: --subscription -s type: string short-summary: Subscription Id or Name examples: - name: Add a subscription to a management group. text: > - az managementgroups group new --name GroupName --subscription Subscription + az account management-group subscription add --name GroupName --subscription Subscription """ helps['account management-group subscription remove'] = """ @@ -292,13 +292,13 @@ - name: --name -n type: string short-summary: Name of the management group. - - name: --subscription + - name: --subscription -s type: string short-summary: Subscription Id or Name examples: - name: Remove an existing subscription from a management group. text: > - az managementgroups group remove --name GroupName --subscription Subscription + az account management-group subscription remove --name GroupName --subscription Subscription """ helps['policy'] = """ diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_params.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_params.py index 5ddd7f05005..e3c86c52cd3 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_params.py +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_params.py @@ -21,7 +21,7 @@ def load_arguments(self, _): from azure.cli.command_modules.resource._completers import ( get_policy_completion_list, get_policy_set_completion_list, get_policy_assignment_completion_list, - get_resource_types_completion_list, get_providers_completion_list) + get_resource_types_completion_list, get_providers_completion_list, get_subscription_id_list) from azure.cli.command_modules.resource._validators import ( validate_lock_parameters, validate_resource_lock, validate_group_lock, validate_subscription_lock, validate_metadata) @@ -210,6 +210,9 @@ def load_arguments(self, _): c.argument('createUiDefinition', options_list=('--create-ui-definition', '-c'), help='JSON formatted string or a path to a file with such content', type=file_type) c.argument('mainTemplate', options_list=('--main-template', '-t'), help='JSON formatted string or a path to a file with such content', type=file_type) + with self.argument_context('account') as c: + c.argument('subscription', options_list=['--subscription', '-s'], help='Name or ID of subscription.', completer=get_subscription_id_list) + with self.argument_context('account management-group') as c: c.argument('group_name', options_list=['--name', '-n']) diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_delete_group_managementgroup.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_delete_group_managementgroup.yaml index 88096aff3a5..02cc6e79df2 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_delete_group_managementgroup.yaml +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_delete_group_managementgroup.yaml @@ -1,37 +1,4 @@ interactions: -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:40:42 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rBu2p-uYei1TpxDcI1iyV2T-RlLgaQM3HaeZHr2QpSU5_QNmqz0hzY8RyC2QMuYctYk4a_66AptcQyI0mmZ0ECal_0tlRw17mSNdlTA6Zb05oq31Wx3BIaz_9pHRWhpMz7OOFS9VXCJl1lzSjT_ASi0gByIZVYxF9Z4K7lbM4iK0gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -46,54 +13,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:40:45 GMT'] + date: ['Thu, 31 May 2018 18:31:34 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:40:55 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rExYOmy9VN82poFGKzhbXO5AEo0vXacinwRh3BJzBeB6kwdnpjLyIhUv_eYg8tBYk52G0fjTbZC7I9PrURN9PPXoqGUqXA1ie8i-yEll1TpkS8QKwmv3vAMPSHbBTywYcoq0R85u1or5_nECFJ-lWEYb4Ysge6uK7HfXvpwTdv2sgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -108,53 +42,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:40:55 GMT'] + date: ['Thu, 31 May 2018 18:31:44 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:40:56 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rTYVDhfduSPzERzNcW66MgoXpQwkmhi1QEQmE6E80uL0ilcsnK2W-tQhX9op3cszIfdU53vmjtxsZlIJinSp3KiS485Ht-t7T9j20HWcs2je3bjOefW-8fxdnUd6AHEAp1wcnDt-C8j-z2FI8itgfZMrWREBdUkaBxUKOKK88qAEgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: '{"name": "testcligroup", "properties": {"details": {"parent": {}}}}' headers: @@ -170,59 +71,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:40:58 GMT'] + date: ['Thu, 31 May 2018 18:31:45 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [ae726a0e-347f-4d77-8742-66606b6aae36] + request-id: [6e1a1676-981c-43a1-ac44-2e4136039fc3] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1197'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:41:08 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rghsyQNrzi3rSvAECd-FY2UflEMPeuGhRI0kOZTEqDwbgnVkZ-aeAtFmWp6s5gZZJIMo5OEUr0T6UZwrCyzaVOYteAFUV4ivDTzUQaX71JN2-I58Ge17dgSOMKbFeShvGcATqbu3VWM2bPKKaBLplFCpBHckvgnjMSUcjNkqKOqIgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -234,56 +102,24 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroup","details":{"version":58,"updatedTime":"2018-05-30T22:41:05.0813456Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"testcligroup","details":{"version":1,"updatedTime":"2018-05-31T18:31:48.0538084Z","updatedBy":"a320fc00-4c5f-4d70-9648-593b5877c7da","parent":{"id":"/providers/Microsoft.Management/managementGroups/a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","name":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"Tenant + Root Group"}}}}'} headers: cache-control: [no-cache] - content-length: ['589'] + content-length: ['569'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:41:10 GMT'] + date: ['Thu, 31 May 2018 18:31:56 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [9164a9f5-eb0c-4d75-84ea-ec52598bd853] + request-id: [6ce1c184-c97e-4626-9d7f-51e984912788] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:41:10 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rJ8IUrp-r-kJfxQb74aoLC_q7ird9GN_qBmiAYlMitsDS-Cm5xLPKjwzzWyLhbQAYqo4Y7pCFnd41d7B1_Gpdg0I3EEqOKxgcjxCiXyTeJaf0ne_SJuPzBqAp4Fbt_NQl3G8MhyjhswwrIQbJlMxew1DnxyV-f6SH5ROzu8duhjYgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -301,54 +137,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:41:14 GMT'] + date: ['Thu, 31 May 2018 18:31:59 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1194'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:41:24 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r4FLTCJqWFd4T0tH57Hcu_nNGZDj8CRF-JqW2hRCDeJJfhW1-O7efyYOuQZqcwbugu_F1yt0oX8OFh6yqHRc-mw90FG_iSB1J65JknLDV1lBQcjsoShfO0bWUza5eK4R2pxmwW64hdUmaqHdYxR7QzY4eHQcqYm-2APNJpXwWiWIgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -363,53 +166,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:41:25 GMT'] + date: ['Thu, 31 May 2018 18:32:09 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:41:26 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rqPrNQ6HFTuR85D9gDN5ca4etZLt-N4ohDzbucPz7UcnGHhgbvyIDJNcG3mZZsk4AzqoHkZtlBG7F52zA7TuBkVl2OCymZ2mC7AZ55i4EDqoe-dFKZVszwCroPgh9rrwGUfz3lZJ4A1CoPGM-kOb6NzIFjivGWZs37VOoXSbXhccgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -425,59 +195,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:41:30 GMT'] + date: ['Thu, 31 May 2018 18:32:10 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [935d2ddb-9e3c-44fa-a81b-c14001d2ade0] + request-id: [cbcd7ed0-0b59-46dc-bf3c-426667d7709b] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1195'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:41:40 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rKixTXic_a5pa7XuEySsNgYCyKjewcsh-ikfGmDQNlIUKnn6j5DRuLcAHUiK3_qeo5Q5FI-IdevsnflPIxf-RxQ1RAztGwBw60yGoJ0Rsdu1JcqQC4OCikozIwnbENrLIZ3eBPIqBecjTu0rwo-BpucbMD-dN7Z1Irfa0HAiUS1YgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -489,23 +226,23 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['171'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:41:41 GMT'] + date: ['Thu, 31 May 2018 18:32:21 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [9528c035-2b04-44ed-a695-a9d17fdeb4bf] + request-id: [1042e3b9-0c8d-4838-afa7-00f021952d27] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup.yaml index e07d5dcacb4..765bcecd8b7 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup.yaml +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup.yaml @@ -1,37 +1,4 @@ interactions: -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:40:36 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rhNDNC0sAlUD_T4npslfrXYylRWNbo5TZhqKpeZGnwLwON5bXzblwbhnXtam8ABEPMablXUgWLG1OvQB0gRVo5529koIkarzt-Ax2ppUsmg9YTJ_RvB2gjKRBevsj-WVSnLoH8_T5q4qPhJxy1zWbLFpmZUVTX33Uhzm-ReT1-9MgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -46,54 +13,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:40:39 GMT'] + date: ['Thu, 31 May 2018 18:32:23 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1191'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:40:50 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rsLiTDWMa9MAmLFbqWVA8SBSVCCzOQb50HWeUsQWCyT-ZEiZlNCx4yOhbvJ6k3q9zQX33u19fxvalZ6s2HnAQMSPGuP584n8gNUa934-MN6q0p0bUoQLcz0950FVU6QbvSpGtZU5N46zCD8r2TbOBou1q3GiZr1BBVE-J-8HHa2cgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -108,53 +42,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:40:51 GMT'] + date: ['Thu, 31 May 2018 18:32:33 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:40:51 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rnJda_Q8nFnmAIMA0tZHXEIDlMqAJs5wVs0QOPj5RfkfF2U4vxYYuO9ZTgV_RMdcdeaOWLRi4zx_zhoflNo98is-uKm3w8pr9FQ_F6--cxtQZJlDlcqZ4C0N4Z2nzWxUVMNGjE8diier9k7R0Jq9pWQec8jDmuRUSQiz6DWqadTkgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: '{"name": "testcligroup", "properties": {"details": {"parent": {}}}}' headers: @@ -170,59 +71,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:40:55 GMT'] + date: ['Thu, 31 May 2018 18:32:34 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [b9bde5db-18dc-4d69-a067-8bad2582004d] + request-id: [c9debc08-83f0-44a4-995d-af8864004fcf] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1192'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:41:05 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rYlb0NuFH1xckcgmqBoMaybDnXZpAs4-VHolf12IaBE_98kbAJ11AJIIFnBEC4pgPSBsiR1AYOFdkhNodUSwzidY90hNDaSkAXyh0GkT9zDxOiqfJtbSkpJGdXZ2Edsk61SqMlZMHfoXNp6hCUajrLXjfru_KRdZRnvWrLpb-Gp4gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -234,56 +102,24 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroup","details":{"version":50,"updatedTime":"2018-05-30T21:41:02.7945078Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"testcligroup","details":{"version":2,"updatedTime":"2018-05-31T18:32:36.8812126Z","updatedBy":"a320fc00-4c5f-4d70-9648-593b5877c7da","parent":{"id":"/providers/Microsoft.Management/managementGroups/a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","name":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"Tenant + Root Group"}}}}'} headers: cache-control: [no-cache] - content-length: ['589'] + content-length: ['569'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:41:07 GMT'] + date: ['Thu, 31 May 2018 18:32:44 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [cb389005-ca3f-49ee-8e86-d4cb8bb70f3c] + request-id: [fd2d015a-a5a8-4129-8d3e-32377d44db3d] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:41:08 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rX8EmEL2i2mbB21QWF6wtohXEGWKoK8QRuXpxG6boB4s33yPELvOfFO2SoBCYHnx0GrG9HaXFcEMJu8KUvwejbQn6ZsUdRP85abpIBYtU9atlFp4E1EGx45zIqAdcN-b0m4VoM3rR1OLgvynnyMuPYj_plR1OOeBDymQTeoFKt5ggAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -301,54 +137,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:41:10 GMT'] + date: ['Thu, 31 May 2018 18:32:47 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1190'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:41:20 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rvgf7SLj6OkNyyCVOnLvmm3uL-BvgsJdohSIiJsDeSeFhAB8_yulSFtq8mJdeqhkJZgTqfA6TnVP8yu-6S3h-rO3hLuM5nWTND25KtwZFrp17k4GaQH5y5dvm_08_0zfGHlvY569h9ohlA0CP4Uv06AChljAcGe2xX1BJz4n9imggAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -363,53 +166,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:41:22 GMT'] + date: ['Thu, 31 May 2018 18:32:57 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:41:22 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rVjbtz3j_99OhxSK3bii-N4IZj5BY2pEorxqZBfEWGrwMHu1_pMUbmzAYdug8Gt_8oT5Ov8M6ovbSc2-xa61XsQXSDcNy6x6y5Gwyisp__LRAQodVHXYmWHtpOlCI3UZDj3NAf5_G4Pyib9hK9p6gXJ1YRrLGN29JrX1ljNJAPREgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -425,59 +195,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:41:26 GMT'] + date: ['Thu, 31 May 2018 18:32:59 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [542f0a6d-a7b6-4ed3-a126-a573a68569a7] + request-id: [10ad5316-ff22-414e-a72a-de46ae4156b2] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1191'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:41:36 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7reUBxzTG8aMa25ob6x5JDmOCczvu4f5jRQWB8FPMDmH8bkUKoh81A7MXUstaVYJHJFk2N5pgrmqUhl2WFYfWhMhlp4tg26hAn0s246_o6UT1Iy3C5xWIQf2VnNX_QGX-d_AnXgzH7fTFnyCn7KcMR4wRRecS22nYWiKft6hf_bQggAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -489,23 +226,23 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['171'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:41:37 GMT'] + date: ['Thu, 31 May 2018 18:33:09 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [bb77d80e-16cc-435e-b35d-5bfdab038c46] + request-id: [65b22604-2aa4-48c9-869e-7d5b42caffbd] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_displayname.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_displayname.yaml index d79edde1f32..1e9f6843866 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_displayname.yaml +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_displayname.yaml @@ -1,37 +1,4 @@ interactions: -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:41:39 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rP3nzB3FFMAcWqJWo84nQmOrJyFfeSaf5jrSECAvfWCalp0ZrJboT-wkoHTiWzFFBLHgESu88CHBNh4zxIX-qDT5fx2PRQnVs6xXGwBUMZq-XPqV4jcPXTa_O1DkQDk9Xz4Fq4KFQgvNjrWgehUjCkxIR_P_ASzly1iO4RQ19ub4gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -46,54 +13,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:41:41 GMT'] + date: ['Thu, 31 May 2018 18:33:12 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1189'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:41:52 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7raxbfVL9vO16TVGUoCkV_vIJXEDesRQ-8Se_-HKZcOjqJ8Sm-aqgXCiIzzi8xqSffijZJWB0-JzXdA4qhl-TBx7ZKl2r8SDHxHCV-oGu__fA-Wf1jbxkBQjUUbWhTsY8jp2T7viV8-jFJhm0ztTg7Om4wChMyQvL8r5d7f5qI4KIgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -108,53 +42,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:41:53 GMT'] + date: ['Thu, 31 May 2018 18:33:23 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:41:53 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7riGv0GDVQRhFP5T3Scmr8rwiQukoeB6ZMZFCSVX8cUqknBHZXkdtoMLNO_6-j47WgnR5UyO1_qLqEyE5JjAAsvXXJQ_YjScnZ39Io4FgOD5dMDbFVI9UgI8jKZ53uYp1dsnOhcS2O4SO6FyWGawQeDQmtjEzFeEvBni1F5TXpQ8cgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: '{"name": "testcligroup", "properties": {"displayName": "TestCliDisplayName", "details": {"parent": {}}}}' @@ -171,59 +72,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:41:55 GMT'] + date: ['Thu, 31 May 2018 18:33:23 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [748bad6c-06bf-47d5-98dd-a430e1b0706a] + request-id: [79e2b1c0-3216-4d8e-a1d8-6e699a9852ee] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1191'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:42:06 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rMnkPkm6SPU_tr5aWniB7X6E8mrKxsZZLO8PXfMO4LiH-ccOpu9vbY9x4eb6YhpGTiHm6dJyOj_9uaToN8k0QbqFeyyvYWtIbzUR-y2YGs4AyzQIR_Uz6iVtlyCS5iZ9LZVw6G9fyB4MbVVUbzthxnJhLoPJnVYN3A_TOiIAU5x8gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -235,56 +103,24 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"TestCliDisplayName","details":{"version":51,"updatedTime":"2018-05-30T21:42:01.6597292Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"TestCliDisplayName","details":{"version":3,"updatedTime":"2018-05-31T18:33:26.0821431Z","updatedBy":"a320fc00-4c5f-4d70-9648-593b5877c7da","parent":{"id":"/providers/Microsoft.Management/managementGroups/a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","name":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"Tenant + Root Group"}}}}'} headers: cache-control: [no-cache] - content-length: ['595'] + content-length: ['575'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:42:08 GMT'] + date: ['Thu, 31 May 2018 18:33:35 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [c7221d41-53b3-4a63-9729-a0f6bebb7177] + request-id: [2c445694-3425-48fe-93c5-6b1f7a7141d1] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:42:09 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rJwSOw3K2aEtnMGuwnbOVmtG21PfGi_huEFKNBiUlH4AtZZ914G6aIghYb-2_C9YtqpdxEQE74IEXNwgoxrliSfHREi4E0e5sK2OH2lpGquOwwbHPEZHlvVALJJZZB9sP0-B8YTIH3GUBV9AHvlBNCRsVDJwC5bNr-QctogdyCaAgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -302,54 +138,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:42:12 GMT'] + date: ['Thu, 31 May 2018 18:33:37 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1189'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:42:23 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rJSrpWz_5-GADice_PpeBLx1ohzh1y_KpB2BRNmP3MwKr6GPtdCAwSEIxc3CgvjaVdAEY4hv9SKtPOh6J7aPeiDMYQ_6mGdMJbUpjunUo8bE061k8IEE3ibCR3-uoYVHSYHVa_0rrCz8-q4-emulSqk1YStD6PFVke_ajv6LAEbsgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -364,53 +167,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:42:24 GMT'] + date: ['Thu, 31 May 2018 18:33:47 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:42:24 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rNGw7Cnf-HFNxVN91PQ_-3pGnEF13kEHr_L8o72KfO-3HT6mbjLwEkuhDMAtCBjYvUAECDWJfREdRWtT-qgH4JQ-6VOq6OLo-VLU6n1QgLmRk5GhCBJN_krMeivYKaZZj5FlJRbgB7Y53XHm1ljlqsdvNCxEwOaxa10aficocsmkgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -426,59 +196,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:42:35 GMT'] + date: ['Thu, 31 May 2018 18:33:51 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [2c15f01a-7d46-42f5-9bbd-e970c1e71058] + request-id: [b3b3293c-87ea-4ed4-8636-930eef2e6327] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1195'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:42:45 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rpPzEZMrvfVUHeYhnGUqYG9UWroQL22dfxv_0wGC4zionNQaoQvUGFJFmoXD1QFx0v3_hZ_aidOx0pTTuOwHfJmXh0kTDMW4Py6pPY7ZJMYoqkUBWBKi6oPSOogiP9ZwGZHkDm4jxh3WDs9LEjnLTQ5N-0BKCw9EnZF_uAJpVN3MgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -490,23 +227,23 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['171'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:42:47 GMT'] + date: ['Thu, 31 May 2018 18:34:01 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [e4b65b11-ab03-49b8-a664-372ff6330bd3] + request-id: [2b4ecb00-df88-4902-bc0b-09cf9c7b83bf] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_displayname_and_parentid.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_displayname_and_parentid.yaml index e92b642bfa2..79c74d0b1a5 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_displayname_and_parentid.yaml +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_displayname_and_parentid.yaml @@ -1,37 +1,4 @@ interactions: -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:36:23 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rq0kkCMRAcbMCyacMxiTIopLYlSEvgsATkYuVWJ7q21rLLxAgXiqdgq5tmX5MFdbTRNHXS_5wDk2uTKpDY1bGDVk9wvWgAGMtqGzcXvnDFFBdaPx3s3LWAWhqzDI0DSv8QRKfHaXaFOWkOZd1USpXCgMqF2jlx8w-sxERGqy-mf8gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -46,54 +13,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:36:25 GMT'] + date: ['Thu, 31 May 2018 18:34:04 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1192'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:36:36 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rXT6NlUtYkDkvFscUHBqPdlvG8D67puKKg5BMWdzjaFsRaVpYOtAYLl5BBZrf3genmR_DSBBoAg3apMntYGHiI0C3h_Tpkq_bDjYZlRiacpW8dhvKZMZ-hK0skGcm4QGLOVMOXenrjJdjYShmBzPIEYQTxuhd15iD6YNS_C7bdtUgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -108,53 +42,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:36:37 GMT'] + date: ['Thu, 31 May 2018 18:34:14 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:36:37 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rF-642ZQMQM1OLcSN2OsAdCV7pDW4eJz2nNs2vZBstfd7oqgbS5TRZmORiTrVszSEmzmSD60CRjGBjZlUbtK3I6tnyxnwNWVSdWe_EkqydMHi3rKktU0zOrXP_YAnrJ_ss1qpW1agQYOittW8T1BqLNrB4Wb3-T_4rFZQ-Ypi_AQgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: '{"name": "testcligroup", "properties": {"details": {"parent": {}}}}' headers: @@ -170,59 +71,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:36:41 GMT'] + date: ['Thu, 31 May 2018 18:34:16 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [ee67a8de-7833-46c4-9b4d-9df55019dede] + request-id: [1f4231db-9c87-4299-978a-ac4b0f8183a4] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1196'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:36:51 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rjEKT58LXwmNvtvYBWD5heDnnZXFEylDBgm7mkf9KPIdXTNGyJxTqbDGwiVLdIBvFGrHu-QJJd9gnr5yENYDQgcJf5Tgb66Y8MCb7t4gv_mwkTKrdYmVIoXhV20tWyXz_NuKry3Ucj1LNrFw3dwlDv8cMdMKjM6P6_lHarWWQURUgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -234,56 +102,24 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroup","details":{"version":49,"updatedTime":"2018-05-30T21:36:47.1007881Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"testcligroup","details":{"version":4,"updatedTime":"2018-05-31T18:34:18.3770105Z","updatedBy":"a320fc00-4c5f-4d70-9648-593b5877c7da","parent":{"id":"/providers/Microsoft.Management/managementGroups/a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","name":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"Tenant + Root Group"}}}}'} headers: cache-control: [no-cache] - content-length: ['589'] + content-length: ['569'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:36:54 GMT'] + date: ['Thu, 31 May 2018 18:34:26 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [31e25293-2731-4f40-b484-a7a1f4988937] + request-id: [d5289dd9-7145-46e9-89d3-9811da8f08d8] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:36:55 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rKkH4gC43K4967YmA30pt8BRlAgFBJDcIgOPk6uem7_cYJxxtKIMNK6H2LkCyQn_gnY5dPSvJN1QUegI6q7d6poRJ99cfXPBwG9CBINLFR5zLb8paX-y9gm1nEZ15TgNeD8FpALf2uJK3thB7ARBze-IGPetY0jXdu81BllUYLOcgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -301,54 +137,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:36:59 GMT'] + date: ['Thu, 31 May 2018 18:34:28 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1192'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:37:10 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rVijnFi24oJdKUZjshas1vQqimnBxnV54Qdl0Q4kqF-Pn8tIm91oqwhURABmcjPJtwx6R_X7TMVDpF3m-VI0tZ1zMPrelANAZL4cfnNmX5eSURbkk4NwTxsA6wn7tQTBwc-JkKaCoLr5alsreD-56DZP4DQlovZZbb3oVlLMYzPogAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -363,53 +166,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:37:10 GMT'] + date: ['Thu, 31 May 2018 18:34:39 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:37:10 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rPfxVU4dNUt1MFScnprS7QsxH75FRSA0D1u3YL0GUs0Fs3h0nviuIDEP7FXM42laHBEorx3-yzHZOpN119GBalPiTM4Eqh4NTAPdYmVDSjashQE7Q0OuTTuQ4Ha3aMtgRWQLc7zwXJmTE_Jc3ZV5ENuIdq2rAIrcXeL5Bt5FPlJkgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: '{"name": "testcligroupchild", "properties": {"displayName": "testcligroupchildDisplayName", "details": {"parent": {"id": "/providers/Microsoft.Management/managementGroups/testcligroup"}}}}' @@ -426,59 +196,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['182'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:37:13 GMT'] + date: ['Thu, 31 May 2018 18:34:39 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [438fa6bd-a4fb-444b-ad63-510ed639b55b] + request-id: [8b8d180d-ba3b-482b-8213-0da33b6908a4] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1193'] + x-ms-ratelimit-remaining-tenant-writes: ['1198'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:37:23 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rg9xcercZdKTpaAP0a2rAnOspzsbnISw8MHX7PpmyAkC-RBJCVdHYlGo7tjkQrlwI8s3hhhr_RnqAUXbUOe5r9Tt49Gvc_F-3YTR6a5wa1PuDdsR1rDb6OL7F8HVZ4Jsm573_Kr2jkLra8bfhC8CPNAlmxYihXXrfjAn77K7zrPMgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -490,56 +227,23 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroupchildDisplayName","details":{"version":20,"updatedTime":"2018-05-30T21:37:22.1729746Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","name":"testcligroup","displayName":"testcligroup"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"Succeeded","properties":{"tenantId":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"testcligroupchildDisplayName","details":{"version":1,"updatedTime":"2018-05-31T18:34:43.301862Z","updatedBy":"a320fc00-4c5f-4d70-9648-593b5877c7da","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","name":"testcligroup","displayName":"testcligroup"}}}}'} headers: cache-control: [no-cache] - content-length: ['543'] + content-length: ['541'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:37:26 GMT'] + date: ['Thu, 31 May 2018 18:34:50 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [a5badc46-f592-4e85-bca0-147cd486118b] + request-id: [fa925c8f-8be8-4afa-aee2-0539cb9ca03b] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:37:27 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r5ChM8bgH2SHbtzdnUsRVmyiaaPsYg45vjQ8FJFtjIZTRtAPYvfp13b9c84IMTDUd98wVo3dP-fukfA_XpWtE4QpM52Eo7JzPeQ95fbpeqxomYMod4CKWDlxzXmn_J2wOEj6PmqN7yDDxKovZ3nKLy6b89ujG4PNEul-ooUQ_9Z8gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -557,54 +261,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:37:30 GMT'] + date: ['Thu, 31 May 2018 18:34:51 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1191'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:37:41 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r0uIqSQvNYlDDP7gTt3elhiYdPWA4aFg79rcXnhTK5yxRcJskJ-EhhE77fh_ueimB9WqxCjykVoux9aCoQi3ngkQiF4Xklu9Azr0GxkTON3rF5LKRlsuVVI141BVw26ypVhsq4UNk0Pa4gqEcOZOV2SLRzS5gdNxRi7v4STB3SlggAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -619,53 +290,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:37:42 GMT'] + date: ['Thu, 31 May 2018 18:35:03 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:37:42 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rKX3VGS-zWF9_ErXo07Gql0aU5B12zRCv93J4iCYM9xtbOnipUlfsIjOeTMGJuq5k1DJZE8fOQRPOPnrDvOPxcOabUYe_t_cOFZxKKjArWKztaaCbogh7tM3attqCdVHc0--Eup6JFuVVvGxaV9eEeRXYgSy8N12G3vyvsakRKd8gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -681,59 +319,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['182'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:37:45 GMT'] + date: ['Thu, 31 May 2018 18:35:03 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [a9739e69-f729-4b6b-a46b-ba885b05a080] + request-id: [ee8cf3e4-17be-480f-a3f8-fa7ad11826d6] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1197'] + x-ms-ratelimit-remaining-tenant-writes: ['1198'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:37:56 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rdxNAOXWYkn30qaUAqh18EoLgTtGUvgJBvKp9-jVJq7H2cVnW3OO3GOMfqxCMlPN6twOCCsJWpmWcDvHuAQiA8a6oaBJnyCLl8-kq8oLqz8X-YnRwv8rlzc58smcOFhHFHdFfSbuZe4l8v09PqJBRIW3Wi8IG2F6AOmYiweE1X7sgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -745,56 +350,23 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroupchild?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroupchild?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['181'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:37:57 GMT'] + date: ['Thu, 31 May 2018 18:35:14 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [dfa9e033-3c90-46e8-90d8-f9f87ef94eec] + request-id: [96c3afb1-ae4b-4333-8206-3b668268ed7c] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:37:59 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rAG84AyU9pd5ueHAnC_jAOwDaQmJz3XYLE6TpT0lGDld3-5Gu3pzGvU0HHgIlSipRCRxT86avmbzldhCu8n83RIfN_GLBc6-tiSlYvFiaf3C4tlF6u1DYtiPWq3YVXMVslYjhZuLXuIenc6Z0VqSnxXxyYxVp7nhuSTWZcuGUPWQgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -812,54 +384,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:38:02 GMT'] + date: ['Thu, 31 May 2018 18:35:17 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1190'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:38:12 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rFhyTY5PabQcYxxd4EAGESDpLpIK5HJ-1McGvalYSUp2C8w1ALazTfK_V83PvFk7npN01_LxrRy-QRj8-kkQvHQhWvlCuXXzUwRmwkeoig1q38fzCgWRTrEvHpL-90zdjCjV58h-3QrdEHfYABWM9tolXAGLWF55QdSPqdK5P478gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -874,53 +413,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:38:13 GMT'] + date: ['Thu, 31 May 2018 18:35:27 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:38:13 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rl6gV8n3p4yygDxrgSWCg1sY0XIcZRsJi_4cyNScWh9_5ykqybXtz9WdupHQCraC-nBVrVnzOWgLsse_SM6rwm1LgPrL-orFdynnSmAKD_7lTtCNa4qTjsu1UrcTLhrXdUo2W2jWigiyibdAygGlzLgyvQZd-yrUgBTTiwxvnnZEgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -936,59 +442,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:38:16 GMT'] + date: ['Thu, 31 May 2018 18:35:28 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [72776bbd-268b-4c58-acdc-8a3eac1ea9cf] + request-id: [92102cd3-3216-40f1-b11e-1fcef32b5b68] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1192'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:38:27 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rL0nFNgmRAF0mJLLZVqBP4p_0g81pBOJ_xxEcHZktDbJNSLhz47FjGUO2xEW6ChfW7I3VK4TCLj0kZqyzlYzDIFHf2nwjnZfChxCgaJQk7zvuyrZGNbzUGB6JqtOBoL4zLaJhcNbzwPUWBfhLinefc4I77YPD4RwseF7bAucmNRsgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -1000,23 +473,23 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['171'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:38:29 GMT'] + date: ['Thu, 31 May 2018 18:35:38 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [4bfa3acc-ff39-402f-83a3-9ad0893fa3e2] + request-id: [e41eeebd-7dcd-4e7c-81d7-b1457e0a6fb5] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_parentid.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_parentid.yaml index e106f583ff7..3a4c52fad56 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_parentid.yaml +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_create_managementgroup_with_parentid.yaml @@ -1,37 +1,4 @@ interactions: -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:43:39 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rwQoLdQnD8kkBijqhJ34utkFnltmipzXdL1iNlRKsAv3FKSCvVAk3UJhyYNNUKc_ylYGrY0BOZdwNzFwERePV3OqUhtemPF3E3MEmqRnFCTCqD7B0h13IlEGFaXEMZGE300zSYt0rq907aEQjoVdKvx8Ka3tLklv5cIdypNmOnvIgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -46,54 +13,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:43:42 GMT'] + date: ['Thu, 31 May 2018 18:35:40 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:43:53 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7redOK2tvHye-xy1_rp-x82ASOYLYzqkx4-dDYtGXPTZW6xwYKdIncXQtuxy7QsJOJ7QVCzNs5_kM9Q7hicyJl_LyjikUI_zf5Sko-7pf0IqZ14hgmodvgWJsjOWueo_tpplQ1JsFsOyT4K96opnp0CRxUtHkb2WTSjS4zrZFgqJkgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -108,53 +42,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:43:54 GMT'] + date: ['Thu, 31 May 2018 18:35:51 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:43:54 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rds5BMOYqi5RlIhm7ZCfD0fZd5QOzoLClAGKweD7q31hrhCa44QJJazTQNUr-w_sdJb47UJ3OucHhWp6H0qF1bMpAWL7sMt8vmKxGGZv8Jnj6MkAX_kGfENAqkabLW7kGfsLbkw14nfxOkN7gVy2TST9fx40bzLiJmbzD6dZ7RPAgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: '{"name": "testcligroup", "properties": {"details": {"parent": {}}}}' headers: @@ -170,59 +71,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:43:57 GMT'] + date: ['Thu, 31 May 2018 18:35:52 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [cf1b2009-f5cf-4b70-98b4-862f948bed44] + request-id: [e1fd8814-8dc7-4658-aa38-9425d1d467f9] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1190'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:44:07 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rKGveZHYrCKvfjxPOOJwEVgvZ9g_sPA7U_mWcwO65327tYL6RALmtqGUmofA7a0wQC3lKbTOEnajxT94bsaSDoi38v1rs_a7BYwWDp9iRsOD1f-Kd0ZKF22dnd6W_gxylQHRyqlcpDHsPsc5PFHOiAu5xoVXY45Lv-LPcyVw0ZhQgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -234,56 +102,24 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroup","details":{"version":52,"updatedTime":"2018-05-30T21:44:04.832855Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"testcligroup","details":{"version":5,"updatedTime":"2018-05-31T18:35:54.4095546Z","updatedBy":"a320fc00-4c5f-4d70-9648-593b5877c7da","parent":{"id":"/providers/Microsoft.Management/managementGroups/a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","name":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"Tenant + Root Group"}}}}'} headers: cache-control: [no-cache] - content-length: ['588'] + content-length: ['569'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:44:10 GMT'] + date: ['Thu, 31 May 2018 18:36:03 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [46fa80a5-c0bd-450f-acf9-1a3091502f55] + request-id: [6b20aa26-38da-47a6-ae05-a6e4160b4130] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:44:10 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rsFY-gbfEgZTs9NnA9PCLXGRgd1u5m0m-gSSHXxj17N36KHG2Q8BDFc4ZQVpME6_88WCCM5a0ZegaiZp-4HXq7CtM_G9LKR2cz92I4DIqEwbPVmc4GO3Q605WJ0WURMPnwfiXSDKa91v5am7bDFSZTTbn1xWy2_vskZ8LPXoG1WggAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -301,54 +137,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:44:13 GMT'] + date: ['Thu, 31 May 2018 18:36:04 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1188'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:44:23 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rgvZkcn7ahiUu8X9dzwMkTlOP-jQTQTeFqQKYqUchYYl2vTo8pCkG9hiZNIWs-7AP6F0jwC0enFvPq-3p5Qa0krmeOiQx4J3C_-Foa4j5oWLOh0w8zXD9G7y34X2GbeUaJZCKhdiMSNao8x1zAeeuFi9zqQU41Z4DwoiBZYI8HUEgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -363,53 +166,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:44:25 GMT'] + date: ['Thu, 31 May 2018 18:36:15 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:44:25 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r-Jsu1NwWqmU_crqxHK8p2SCR6mKbWVhuA_5M-u6zmLfTCBHa257ITwYEQjAUQjNFaRdirkc6L-yuGVsk7YDbIhzsSVlqGHuXrjWss8acyAAvn_ODD5sgfDzbyEPfhiJ_9scFx2pvl9960dLNfzx4YFbNmj0vQ7oQRiq5WWn_2FIgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: '{"name": "testcligroupchild", "properties": {"details": {"parent": {"id": "/providers/Microsoft.Management/managementGroups/testcligroup"}}}}' @@ -426,59 +196,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['182'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:44:27 GMT'] + date: ['Thu, 31 May 2018 18:36:16 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [c93cd080-269f-4fa9-ad6b-a1be9165d7e2] + request-id: [1af416bb-ee97-429e-bfe7-4737af1ae6a1] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1194'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:44:38 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rDmGpkAFJQWS81GrPselae5BUrGAWFynjMm7pNEtY6N5KiAomKlzKGzfrp1umHMuIqcz0q-x6fHo50S1qGdmKqTl1oXUeSHVJm9dlFo3Tyua5OgvCYvCK_ELRWJrF2ltGqQtiXvgVwY3PCqX5Z7Uf_bguydgwOKk0TsVkokOYTGUgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -490,56 +227,23 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroupchild","details":{"version":21,"updatedTime":"2018-05-30T21:44:37.5232777Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","name":"testcligroup","displayName":"testcligroup"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"Succeeded","properties":{"tenantId":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"testcligroupchild","details":{"version":2,"updatedTime":"2018-05-31T18:36:17.8345801Z","updatedBy":"a320fc00-4c5f-4d70-9648-593b5877c7da","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","name":"testcligroup","displayName":"testcligroup"}}}}'} headers: cache-control: [no-cache] - content-length: ['532'] + content-length: ['531'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:44:40 GMT'] + date: ['Thu, 31 May 2018 18:36:27 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [16f4a30d-9f83-4391-bae1-753e323d6114] + request-id: [de1042ff-b4c1-4d39-8d05-381d62cacd2b] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:44:42 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rk0pgLmJ3IpyWO8ncyrxVHGzJpcE6F4uwnLf9Lil7C1PrMBcMCHczOZ_g3dvJfxpyHfALwg_jFpKNXJ47Pes9UiB7egSHhM5_zuc_bWFbZaMS4-3W7W9EPsebg0zqyhDMXN437uQYx26nClVa6G5foJ7Ae6NiGYuq-Y9yP9XEh4ogAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -557,54 +261,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:44:45 GMT'] + date: ['Thu, 31 May 2018 18:36:28 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:44:55 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rSEp2VdZMYDW3SJuz2Sx-BfVwUTc1WnpOhEyMi2SFQyMhIZM05o0AG4FHiGKur9kAjN4vCv1uYNvmg3oWIiEO0qA3PP79rg_A8VMHwkPl2aTudxyIENHCbHZTH3l8qcdRd7FAyPelKOEO_qkwRJ-ASg5cmUmmRtVkk_nNj9HWCAogAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -619,53 +290,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:44:56 GMT'] + date: ['Thu, 31 May 2018 18:36:39 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:44:56 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rNYYYdgFTO0iJIuHy3jXknkqYwend09BG1Uad2E1NShtYk9ydsvoM51lS2lAMs0qIhCMlJ88mMRj0PGiBIe2L7h_77uDUeYz5Ljm8VW3VWHhGjV6upphrQeYBpy2A6TxrNqZRzBawlu3hu56iPv8XU2Xwx1jP2ewxulVh9IWujQsgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -681,59 +319,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['182'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:45:00 GMT'] + date: ['Thu, 31 May 2018 18:36:39 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [06624db4-7a04-4c4f-93d9-efefaa1eb83b] + request-id: [c994f2e7-9ce1-4721-b0b2-08b55574745d] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1190'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:45:11 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rpUdoET8_ZObWrmUbQwCTDXaKsiGBwOhCsrinwEn6gUZAF8wwPzGT4KXS_T-wFeIP6nZTjVEw-hDbe-hu4Me8SQUX1dMoYrglltRCFvxpljXwhxNLymou9gLpb14DL4f5duy333qwIljyjuLXmHPAKHvIPb1uvW34jec33uDMrGcgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -745,56 +350,23 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroupchild?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroupchild?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['181'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:45:12 GMT'] + date: ['Thu, 31 May 2018 18:36:50 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [02c88e01-5375-4467-b417-339a0caa89db] + request-id: [3be5ea1e-499b-4c93-a7b1-8285260c5ff1] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:45:14 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rfB_E6XPFQ_TFqc-hFKkhK1T2h9cGKjug6kzrXT3znYoU1sAxiCzZP0xJ9IA__0LbZfn63BYJSeD5b8fQ8Q3qq1Gb7TzPAdcJB5ZjQeStW4_7VVdkKRX1V4L4a04mvEZ7KpxLVrxy-pp7KqdKxG-NnDeTE_ek3wJ6021mQpc_lS8gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -812,54 +384,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:45:17 GMT'] + date: ['Thu, 31 May 2018 18:36:52 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1195'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:45:26 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rH1F0mwihpJ8BQKEmQfyRNZ5Jt-9AecuFRgE-mIfNqm42gjJeFqUtPzi_EIsabs3mjijtG82f2rgbKa6QB5YEgenwX1MbVTqH242j_t1R-HfXZavLWcbKiJZnFBVc5Y7LPmp1e1xyAS8vzmMi8L_qFjH1LjA5KEqux9GaUOPZiuggAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -874,53 +413,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:45:27 GMT'] + date: ['Thu, 31 May 2018 18:37:02 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:45:28 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rjmqAxx4t99vaFVFrS13cvljo0QwqQkxzbSJAxIfA-WSZ2wPyhgXcPanREKQKkLPxPX_vbBEpkKFyqKSWaaWVnFQHq5SEtr20AhEWuE-No7CbgtaD73wMRs20WPmHRL1DFme8hhUqu8uLYGxcdOWJCHWc8AkPbWJFOINhP9nroiogAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -936,59 +442,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:45:31 GMT'] + date: ['Thu, 31 May 2018 18:37:03 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [51e15454-f5c0-4bed-9ccf-38626592eb07] + request-id: [65ac22b8-f2a1-46b5-99ec-284aaa2514fe] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1193'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:45:42 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r3ypcZPMECboQ2aWufoPRrGxELiYp5-xJJggAZrNMjrH9lcZk36ZLaKJJ16WBlDu47eXBtHYyTIRQqgRxumKrHgj7zc5vQJGBHMS59s7W5BmTxfGnWsB19kgRCS8mrJjzVF4WykI3gz9kSKTUfUnogoB_D3DL7AN-ekM7DxDD1zcgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -1000,23 +473,23 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['171'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:45:43 GMT'] + date: ['Thu, 31 May 2018 18:37:14 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [a156dc44-396e-4a28-a4a6-cfaeac2c5c47] + request-id: [19f038cc-d72d-42ea-9f22-1f31feae8c52] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_list_managementgroups.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_list_managementgroups.yaml index 08bf6f44a05..644e726d89b 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_list_managementgroups.yaml +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_list_managementgroups.yaml @@ -1,71 +1,4 @@ interactions: -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:11:59 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7ryEvvTETNAva6bC8OTJaBkx-hi-NTSr8sZpBpQHGy93rd64FI3lnkfGfgxtOSoTWhX_LxZFxlfRXJ0X7RED6T5kc9rK5_dRXllgV1ub1B6I_x_Tcwz2pfPcLK_e9VKqJ6YrMflT7xQFRffQPFTHmeeY-5UF90lzrK87VhN5-XC7ogAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=refresh_token&client_id=04b07795-8ddb-461a-bbee-02f9e1bf7b46&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&refresh_token=AQABAAAAAABCw9Q9oa6nQrnwvHeP1w5Oi6bpc-ncjhqWq9y4T1FDoBSeSMMYMXOvyBRTIT4OdekISzLOT0wMvp39LoCgwTy2n3uFa7LmpQPas6LG5zCHaB5QIVlpOEJ4PX_qswvzTD8JCiuoeCPZUpfY36o0ky1Pzx99Phi3wVUiF_GGG0ZsDhqKKg0juR-aawwvA0f1Rs4mDJV-JqoxhgkyrtRxFEGGESV031dDmAYRgmJRkc6LCafNbZBCncAVjhv3tzmu7ShjojQoGldpXBzaERwtDrua0h51V0LwBZIkSvu0L_s7XY5HFyrMtWFRYC0pBO8gEX8WZzZbcI8dN8VYogSJ1Bvpy7Cwsz95tZRh1BrImraeyL_ugPhDtWOSkExMx2EwQeoRRHeJkC_mkuD_bh0EwN0S0ZZce3A_3qCkxx69Padqgsy3syR8L-5Nj-1EAIyDLP5pcAb8m0MIzb8d07BaMJGAB2yLWmZSErZpF4qlH8sYe8VYVE6sn2yx9aSsjIYSMcz7abGyWmRRpTxYid0o4JQViAqwSMRodrlAy4FZ1sBnb4BVaqbu4pPgsT-DgJoudgwVllM27B8LnNgRTYSArIR6jPxFv-bWDco8QRMnzET7jDlwU8LKKeITeWzU6TYESboLd8T7tCvWzNIT83begfG6o1XDtFkFQryhQ4Rg6gfrhX1Y10OdQP0VBFAJZXUkmxF_WA-436FiJjawpYr8jGG4iFW8VHVMQxPAuPNvptZXOCAA - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['900'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: POST - uri: https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/oauth2/token - response: - body: {string: '{"token_type":"Bearer","scope":"user_impersonation","expires_in":"3599","ext_expires_in":"262800","expires_on":"1527718320","not_before":"1527714420","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImtHYzU0TDMxdUFaYTFveVlvYVJTR0NpWUt0ZyIsImtpZCI6ImtHYzU0TDMxdUFaYTFveVlvYVJTR0NpWUt0ZyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvYjFhZjQ3ZjEtMTM4Yy00ZWQyLThiYmEtMTE5MDQxYjk1NDUwLyIsImlhdCI6MTUyNzcxNDQyMCwibmJmIjoxNTI3NzE0NDIwLCJleHAiOjE1Mjc3MTgzMjAsImFjciI6IjEiLCJhaW8iOiJBU1FBMi84S0FBQUF1OEFMQWd2ejJlaHBWSlc2VFZVN2RMdndJeTNuUGZaeXh0SHN1ZmZTUlh3PSIsImFsdHNlY2lkIjoiMTpsaXZlLmNvbTowMDAzQkZGRDBBQjAxNEY0IiwiYW1yIjpbInB3ZCJdLCJhcHBpZCI6IjA0YjA3Nzk1LThkZGItNDYxYS1iYmVlLTAyZjllMWJmN2I0NiIsImFwcGlkYWNyIjoiMCIsImVfZXhwIjoyNjI4MDAsImVtYWlsIjoiYmlsbHRlc3QxNTcyODFAbGl2ZS5jb20iLCJmYW1pbHlfbmFtZSI6IjdmN2JkZDZjLTYyMzktNDQ2OS04MDRiLTNlNTcxY2YxMDM1YyIsImdpdmVuX25hbWUiOiI3NTE3ZjNlMC0zZWNlLTQ2ZDYtOTcwMC0wZTE1OTM3YzFlZmQiLCJncm91cHMiOlsiMWI0NDRkMzUtMzdlNy00YWFkLThiZjItMDM0ZGMxZDliY2Y3Il0sImlkcCI6ImxpdmUuY29tIiwiaXBhZGRyIjoiMTY3LjIyMC4wLjE2NSIsIm5hbWUiOiI3NTE3ZjNlMC0zZWNlLTQ2ZDYtOTcwMC0wZTE1OTM3YzFlZmQgN2Y3YmRkNmMtNjIzOS00NDY5LTgwNGItM2U1NzFjZjEwMzVjIiwib2lkIjoiODIzOTY5ZTItZjhjMS00YWRkLTg1MjYtNjI1NDRlMmY5NmIyIiwicHVpZCI6IjEwMDMwMDAwQTYxNDY1NTkiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiI2ZG0zcWk3SUl0aWhhVnJRZURFbUh5WVBuUmpuVjhSNVdvajAxRTE3djY0IiwidGlkIjoiYjFhZjQ3ZjEtMTM4Yy00ZWQyLThiYmEtMTE5MDQxYjk1NDUwIiwidW5pcXVlX25hbWUiOiJsaXZlLmNvbSNiaWxsdGVzdDE1NzI4MUBsaXZlLmNvbSIsInV0aSI6IkJvMUlZM3lQbUVlTFJBeHhKbjBDQUEiLCJ2ZXIiOiIxLjAiLCJ3aWRzIjpbIjYyZTkwMzk0LTY5ZjUtNDIzNy05MTkwLTAxMjE3NzE0NWUxMCJdfQ.TI8iteB-CD0Rn5ZKeZuz7EBsAm3VswqQmA_0gkfjezLT-HFS1zLZyGk546MMoSdnOADytF5YMPaaVph-Qe0uBDNSCGic7iRrxMfd1IJIz78JzKRQaguuGjN5kWzFCE8IlAM0iXbFIuCzjfK7vS0oa7Qo6VldSkqGjH_UcHXmHishKNGLBEAGrne-NiNLmvvn-TKxtPw3h4oH_K-tUURvF3wzKKjjRDrvx-hBnDK-tqNh7nbcpE6SJxDQbgo06ZwspuNpq59Q-ErtHJdvlDzIx3homNMBJLznEKruXH1jRAxeEL4VH2Mc1fsEvtIKi4eLpOYO1F3C8SCZpAiNGGE0YA"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['2064'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:12:00 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,10524904.2308,'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -80,14 +13,14 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:12:03 GMT'] + date: ['Thu, 31 May 2018 18:37:17 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -96,39 +29,6 @@ interactions: x-content-type-options: [nosniff] x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:12:14 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rrgOBbDU_YDjY-04kK81Kp9gCzKZcKXXqdnSyHhHaoyB1Aqql054fCPrpqNi67MtX0CzQEjAhjrxHGEWk6b-B0YBSfVpyVvXwA_k4oKSW5-TDXh2aOVqEQMIWVAXq5qD4b7NbqhiUsaVVma83sHO0KsR_p5UsU6ZttPrxtTSNsMcgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -142,53 +42,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:12:15 GMT'] + date: ['Thu, 31 May 2018 18:37:27 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:12:15 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7ri2zwkIjVu9N_SmvvdjcfIf2DlDR8HBt2e7oEiLYLeVddu76vZ__QtVuyeUG-HRRzGvzZ0J_b886vEJKCrnZp2AS5JkAx8SdIravMKhhlNGrWg6d_t2zkNa3veXZuV_zRGzGzIF9FtOo8luL4sdeXOl6YJelhe9v9TCS_9LvQ57cgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -203,24 +70,19 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups?api-version=2018-03-01-preview response: - body: {string: '{"value":[{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","type":"/providers/Microsoft.Management/managementGroups","name":"b1af47f1-138c-4ed2-8bba-119041b95450","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}},{"id":"/providers/Microsoft.Management/managementGroups/TestGroup1","type":"/providers/Microsoft.Management/managementGroups","name":"TestGroup1","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"TestGroup1"}},{"id":"/providers/Microsoft.Management/managementGroups/TestGroup1Child1","type":"/providers/Microsoft.Management/managementGroups","name":"TestGroup1Child1","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"TestGroup1->Child1"}},{"id":"/providers/Microsoft.Management/managementGroups/TestGroup1Child1Child1","type":"/providers/Microsoft.Management/managementGroups","name":"TestGroup1Child1Child1","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"TestGroup1->Child1->Child1"}}],"@nextLink":null}'} + body: {string: '{"value":[{"id":"/providers/Microsoft.Management/managementGroups/TestGrpChildChild","type":"/providers/Microsoft.Management/managementGroups","name":"TestGrpChildChild","properties":{"tenantId":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"TestGrpChildChild"}},{"id":"/providers/Microsoft.Management/managementGroups/TestGrpChild","type":"/providers/Microsoft.Management/managementGroups","name":"TestGrpChild","properties":{"tenantId":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"TestGrpChild"}},{"id":"/providers/Microsoft.Management/managementGroups/TestGrp","type":"/providers/Microsoft.Management/managementGroups","name":"TestGrp","properties":{"tenantId":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"TestGrp"}}]}'} headers: cache-control: [no-cache] - content-length: ['1122'] + content-length: ['746'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:12:18 GMT'] + date: ['Thu, 31 May 2018 18:37:29 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [07094ebe-9246-4d93-8daf-9ce353791a66] - server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] - vary: ['Accept-Encoding,Accept-Encoding'] - x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] status: {code: 200, message: OK} version: 1 diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup.yaml index 4e3b7a6ea1d..c054854fae0 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup.yaml +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup.yaml @@ -1,37 +1,4 @@ interactions: -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:23:45 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rfr7l3SMLKK7_DlMvoQUQ0MtRe_rAYEgYIfgpqDVcsAGZkQctpZappijlcIuU-_ryv62gq6o-BZMM-bF2fta0NxZtPNFyDL0Cm-7BdOscbIXtCWBKfGJq_IzYjKA97VJaEenscqYg-sMB2KXUGgFmKwUPZb1b4eoYP19OTDRG_-QgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -46,54 +13,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:23:48 GMT'] + date: ['Thu, 31 May 2018 18:37:30 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1194'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:23:58 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r_Qn20GC_0tC_0q9mADxMe9KNWUYgnHFqv9in6ZcvgjdSpnVeRZkdKlE9nxNcd7n-549nD2kbEIsbVHX38fyTwp5aH7F7dNyR3ll7043Ttmr9XyGfWg75KacFsXLCBjktCyQw105_gIq981qQ2ZOc4cSJbFjvz9UfWh-5U63TCtsgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -108,53 +42,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:23:59 GMT'] + date: ['Thu, 31 May 2018 18:37:41 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:23:59 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rNz884zFkF_JyTH9XZ1uWyovJQH_41JhSGXqKO5Qtp0Y-yileHw18c-ZW48nMPce5hhNS_gGS_d9rLdJCAdPF3xPWCgnAZ-M9LgtZyBuWHCno8y_TSHgL2ZP4YZnodXZJWMwF55ih9I1YZuit2w8cLcIEF_t_fiFBryWh8ybBXwkgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: '{"name": "testcligetgroup1", "properties": {"details": {"parent": {}}}}' headers: @@ -170,122 +71,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup1?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligetgroup1?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:24:02 GMT'] - expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup1?api-version=2018-03-01-preview'] - pragma: [no-cache] - request-id: [ab57e386-c0a4-4019-a969-6e1d9ebf5c5f] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1195'] - x-powered-by: [ASP.NET] - status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:24:12 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rHAq1zP98qZfDBI0Mp_qGVSnrqD_NLG1b_pMzfnMLjoQQmUcDwwflJFmSOB3Lu7osU3PSgov86vDHpqHeq2r8nTtQ-JI8BSjYKylUjDsw66xb70k9DhTf0bWWQ_TB_PpAtl2a60-s6PHgFkm5qmq2kz4w1q0VmKbjr4GTU09KOeIgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [account management-group create] - Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python - AZURECLI/2.0.34] - method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup1?api-version=2018-03-01-preview - response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"Running"}'} - headers: - cache-control: [no-cache] - content-length: ['177'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:24:13 GMT'] + date: ['Thu, 31 May 2018 18:37:41 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup1?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup1?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [f1974c65-51ce-4a84-8bcc-7409bcd84ddb] + request-id: [823270a7-21a8-44ae-afc9-33ae89bb92f2] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:24:24 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rqH4GwVL6f_Ql__XRYsBmtnm1bTq5OSTEsuWlNiDAFjlhZNc7Bc_Qsr-bTr6hhlQuv6JNnaAUWcEM-SEHEr3pJmOqKUEmc3LfsIUhQ4qIerulo9KFy1PA-5ckGMXbLWUP-lQdpXAW2FPgPYV63iCJpp2frkuZVwe434f7eDU4eJcgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -297,56 +102,24 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup1?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup1?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup1","details":{"version":13,"updatedTime":"2018-05-30T21:24:13.0407273Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"Succeeded","properties":{"tenantId":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"testcligetgroup1","details":{"version":1,"updatedTime":"2018-05-31T18:37:43.9230269Z","updatedBy":"a320fc00-4c5f-4d70-9648-593b5877c7da","parent":{"id":"/providers/Microsoft.Management/managementGroups/a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","name":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"Tenant + Root Group"}}}}'} headers: cache-control: [no-cache] - content-length: ['601'] + content-length: ['581'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:24:25 GMT'] + date: ['Thu, 31 May 2018 18:37:52 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [29c0b30a-d8c5-4b38-ad0e-b10af5a156e2] + request-id: [f85a2648-5e7a-4413-9d70-e54bc4e288b8] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:24:26 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rQiSwGTt9bvIrvbSq21nTwAJcuiptVujp6bFZ_7ebNZlqLyZhmpQVWiQjGqVsVImQHGXfpdE-1EEQQBRQs-9Xkl3EtQQy31Y3No7zt9eAabaEpXxi-T_vOcl2Hw2nBpgnEqqscC2I3VEKH_b-L_wKuQMeUY7X1fGUFjznjIg7b5wgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -364,54 +137,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:24:29 GMT'] + date: ['Thu, 31 May 2018 18:37:54 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1195'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:24:40 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rFDLQirc8jONm3jo6A3GLYNak9g-wyXieI_yX7W-9xEZ-Ngmu_vsP78Y0mrPM75seQxsIo-rD2zL4hwCBhs1M_OhewBpVIdZv7i8n0NIoRS8B2pSjZ-BnNtb05SDxZEMU49-3chbsIh3uAAi3WKsRm9Gzxyd6iT3BKelYmMmiBj0gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -426,53 +166,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:24:43 GMT'] + date: ['Thu, 31 May 2018 18:38:05 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:24:45 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r0XG1hurnIH_-RlCoMd5RyG8hhmGBNYZfDokfeit43YpnucO2M474fm1R1yGnLUKHsB81jvNYvqTPutUD2XoMYxtdEWTBJ_djVUlJnvvCW7LIssBgkyIAIdtOr4qZT7Esig2M2ZWDJXNVsWxS6NuwWQ6iydBqNfBvXmcukVUztHUgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: '{"name": "testcligetgroup2", "properties": {"details": {"parent": {"id": "/providers/Microsoft.Management/managementGroups/testcligetgroup1"}}}}' @@ -489,59 +196,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup2?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligetgroup2?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:24:47 GMT'] + date: ['Thu, 31 May 2018 18:38:05 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup2?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup2?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [45a5ac87-a068-480f-b164-d899da3f1b98] + request-id: [1ced6d1a-4aab-430b-a388-170843111c63] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1194'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:24:58 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7roB53yBxYUSO9VFJKpwC8uahHD3-JoWuDmvV2Mv95MdEVoPG7SKUkEWWi-GzDuGxoGsM1QuJ0HbF98-zZDMKz0tmBOP0zA2e0yS5ofuGLcaZqFQ-HVALn6e3g7LIQNx-NWQNc4XSHFJceB3c9bd_SXrQ8lQf5OPkDi61HR6IwlnMgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -553,56 +227,23 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup2?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup2?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup2","details":{"version":12,"updatedTime":"2018-05-30T21:24:55.7473471Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","name":"testcligetgroup1","displayName":"testcligetgroup1"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"Succeeded","properties":{"tenantId":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"testcligetgroup2","details":{"version":1,"updatedTime":"2018-05-31T18:38:07.939705Z","updatedBy":"a320fc00-4c5f-4d70-9648-593b5877c7da","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","name":"testcligetgroup1","displayName":"testcligetgroup1"}}}}'} headers: cache-control: [no-cache] - content-length: ['541'] + content-length: ['539'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:24:59 GMT'] + date: ['Thu, 31 May 2018 18:38:16 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [177deb9b-79a5-473a-af6a-098b78e77889] + request-id: [3f1f7d6a-41bb-4cce-92bc-783a1f3dbb03] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:25:01 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r3TekYf9Jksgq2jdemT7--YvqxMIbx63xueOnAZjW6kYGx4c87SovpV14xez0mEK4i7MCw_Td_wV0tYQfntYcLIOQp-3ioHYzxUfdrQsaA763QKjtwc84Xy8E8N3OwCIJOA_t7Ah_Xxx-WPGyPAY4tvu0H8HYko2oYx1xduMU14YgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -620,54 +261,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:25:04 GMT'] + date: ['Thu, 31 May 2018 18:38:18 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1194'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:25:14 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r44vx_XNPeH2sMdFuPdG9g0meWPAsKhdQALwigfG1QNZV7QpIdszF6eqGK5FYuRFVxMUmOAPSNiX5DKetP-mhdz_sfw1HODkbQLp2-DkvB9i_NXMrJCskoL9gHMWLxO2e1a_2UAyhrP2fA5imTkt434jmxS4GReS0X1HdynCFmAAgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -682,53 +290,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:25:14 GMT'] + date: ['Thu, 31 May 2018 18:38:28 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:25:15 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r_d_YM2K-lnFk5XhEjnVVmhiz8fKnVhTA1WB_XGSMQvIR2JLREE8YBaZjrkTqJhnl_wAjU9cyLUJHEqC2f7WJ_9qqpEdocvEfJeasxrknQPQoqF_yn_kvOxyPLElbEXP-609OF_9Vs4PSsvG2rfpe2Gd3nry3wbgLgppwCejo6OsgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -743,56 +318,23 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup2?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligetgroup2?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup2","details":{"version":12,"updatedTime":"2018-05-30T21:24:55.7473471Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","name":"testcligetgroup1","displayName":"testcligetgroup1"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","properties":{"tenantId":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"testcligetgroup2","details":{"version":1,"updatedTime":"2018-05-31T18:38:07.939705Z","updatedBy":"a320fc00-4c5f-4d70-9648-593b5877c7da","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","name":"testcligetgroup1","displayName":"testcligetgroup1"}}}}'} headers: cache-control: [no-cache] - content-length: ['520'] + content-length: ['518'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:25:17 GMT'] + date: ['Thu, 31 May 2018 18:38:30 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [8484a4a5-0027-48ce-b867-ddec06ad8464] + request-id: [81fd0743-4c9e-4cec-a909-9d98098c35c0] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:25:17 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r6ZL9sLo8VBPPhP_l66mFhi83HEyYJ5EeMFGybDWOK0CNFv4MKNYEsYw2wlzznrQYu9bDImq76KezCDuBwFuankrxGsHfpAm_gZQe7XoefyygUZkW3CsfhQY16PX0HXSd8XqgKiiaxUJdp7Em9tINIVNr3Vri_0OdyQ_F6GyYt6MgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -810,54 +352,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:25:20 GMT'] + date: ['Thu, 31 May 2018 18:38:31 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1193'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:25:31 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r3pCGvJ1Cq8tsRcUbHLlS34g8PtNxwuAiH0Af-H18uBkPJXL2pAm3p7IRDAt9wjUFMLfQ0UuTOpiRBK2YzoB0e7KYzYwbKr533HmrlT72I7rkn9DpgSgi5tRCaHl1N8-o9ct5sFP2qUdLazJcTKtGGCEv0Kfpiq1JrjfxQfrFXbkgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -872,53 +381,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:25:32 GMT'] + date: ['Thu, 31 May 2018 18:38:41 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:25:32 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rHumYQNy2n5zCImT4NBlcJ9_m6qioUvzvJx2qkiLj7MFi1-kRC-aogHhYYkmzxjgHOiyAhl0Tb8iJIoA-7QsXeNe4dc2rhTuAQ8wkAK9T71KLbkDqtkzCZGaqskVTw0VFnQpDyB9i7-CM-S0NWwoAeYez4AfIuiln370DC8X8a8ggAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -934,59 +410,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup2?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligetgroup2?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:25:35 GMT'] + date: ['Thu, 31 May 2018 18:38:42 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup2?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup2?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [5a484896-3b9c-4947-b19a-631b5334e0a5] + request-id: [5aa266e2-1349-4a31-8be5-4179676fd360] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1198'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:25:45 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rki7htWJNrupn46iKT6hrO2B-iC5bdUS7VtKyYhZA74UVGKHEXRuHa51jViHN-fCJgV7VQM6DznRTMazcLDouT9trod0Sa0rqYVH5TLfTKiwS1IReUGSBWFxF93QCK6cOb8N6ouyoZgq_xXI65CcDuu9BY0UEo6Y7bms2CByEiLEgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -998,56 +441,23 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup2?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup2?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['179'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:25:46 GMT'] + date: ['Thu, 31 May 2018 18:38:53 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [322732f7-bdb3-4413-b56a-f021119ff00d] + request-id: [7886ec44-cc5c-4b04-9bf0-800177ebd8c3] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:25:47 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r2lDeC8KNuBXmre5JCSr66IDe7MdMtDEO65I5fFDEtmS6XHFZS8D1ewPo-umn6Q-eYKzL2qCaPFPk_KzNEGrfOc7YvRZM1-muesZ5o6XhKDleX-80WTaqFVGyfM9lCql6ibMOWz8fmk2btf4tu5CtckxoqE2CWTj2NLLKwyyutPogAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -1065,54 +475,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:25:51 GMT'] + date: ['Thu, 31 May 2018 18:38:55 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1193'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:26:01 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rSa3yEDO4FByEv16McFnfzIIQ7QlnTKx8ibOYwrqB2FuuBF6UMPhAktO-wlU524BGbpwDgkluJ-W1FlBfDBBrIbUSd2iuaHPeo7dctiEhYgzrBGU5q1zjJVIpHJ7hXyfvNVL9bJXsONCTMp0jkv5GXMzX3FVFkAMbsGqpUzbcj7kgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -1127,53 +504,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:26:02 GMT'] + date: ['Thu, 31 May 2018 18:39:05 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:26:02 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7reEMbEDJXBGkmKFhwsk-C8QktRuvFMLmPl5Pb--AqlgAQz3E_-4D2uHr0HFkpJ7hfUC7MtpAmm3aq2FJGre9Hkj4xls4bhMw33nTIxzW6HSKD6L4irpBdLcEb8AoeT9RYSmbvP-d4zaGKjEuqrZe1PcjI_uDIPGMJtkSCXo53jOogAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -1189,59 +533,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup1?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligetgroup1?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:26:06 GMT'] + date: ['Thu, 31 May 2018 18:39:07 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup1?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup1?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [7f4a4495-47da-4e7d-80d2-f56096f6611a] + request-id: [59fee749-57d0-4127-ae81-af41b4c8d09e] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1197'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:26:16 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rBHAJFTsoTsGDhLEwXB04KQ-KCF2Tm9Kb3LBKQL2S4t97UdcC7AxAjZ4qLWf46jg0FFtx6vIFEmtDbZTa0SHcP09uVhB_Eg0LVgKU2Jv-dekpxtNggk85EzKrUzDQ6YqY7-IKrJchwy8B_rbAhdyCr_2yooaq-vehrz-0cuKkg-cgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -1253,23 +564,23 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup1?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup1?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['179'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:26:18 GMT'] + date: ['Thu, 31 May 2018 18:39:17 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [a9a83e26-df45-4f83-ab5e-658054b24797] + request-id: [388d294c-36ef-4765-997b-d3b03b03615f] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup_with_expand.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup_with_expand.yaml index 4ca440444af..3120ba32c28 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup_with_expand.yaml +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup_with_expand.yaml @@ -1,37 +1,4 @@ interactions: -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:17:45 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rl-BjqmMV5rBrNcabM2r-V8KaY_DEcAMbEjEKmJ5Qm7V4mzbYpWlOBmc2_ITlUvLs8Xn_GUNUTXLSXv546KqBI_VHyVdjIFD6EcrZQsOdajs79ijsjcORcMkgAAOPMpDV1KGvHbsdgCQpWb1e5KJSA8dxfw8jGcxtqB9ye5Wtbv0gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -46,54 +13,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:17:47 GMT'] + date: ['Thu, 31 May 2018 18:39:20 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:17:58 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rL2MFry5jm_ATCMNHRndL8IxeNfRFj6fbQ0D2l-poOwKS6aXAL4VdVfwXpzjEtaRXYEdEIsYVtPKKj-48fhfFPi18YYc6dy0iW4Klu6Vej6vdbOc2ulX9HzujNgYKyECHfGgF_imHtga7E-Np4Q_6AOe-xd337__OaYCBVmKzisYgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -108,53 +42,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:17:58 GMT'] + date: ['Thu, 31 May 2018 18:39:31 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:17:59 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r2-0MtaJdzQJlW6W9XpxsN8mi-f9zYSkGGgqyEUCithkhGH6E62bzwFzjQVP_Hd_QkkGHGsMx9pVWjYKRckADlGl4Krskm7fpE1XgrV6vZGxa_fjJ43JGIWiGek27IFviMzWo-hR9pkCMfqZi6SHHm6K5Hcvmth21ZBI6vjKkSi8gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: '{"name": "testcligetgroup1", "properties": {"details": {"parent": {}}}}' headers: @@ -170,59 +71,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup1?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligetgroup1?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:18:02 GMT'] + date: ['Thu, 31 May 2018 18:39:30 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup1?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup1?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [06027f90-1098-43b9-9dbc-8b44fe6e0c40] + request-id: [29aa4e3a-1e9d-47b2-ba06-c31ee0b2dd3e] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1197'] + x-ms-ratelimit-remaining-tenant-writes: ['1198'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:18:11 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rZBT7GAyhh92zPqffaW5EDhk8TUcvvvfa1jNdp3j9a7T1yLg4c1Jvg_6AbGoKWw6Od1IBA5qOFlwF2k1NzWEfWDfNMZPvSKLdQFLyEdTcv681C3RR3I5FLjlGj0KlsLp7FzGaJDuK14d5FEi3n0XIy1u__CkpQBSWZ6NPnog1Q7YgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -234,56 +102,24 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup1?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup1?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup1","details":{"version":12,"updatedTime":"2018-05-30T21:18:08.2440945Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"Succeeded","properties":{"tenantId":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"testcligetgroup1","details":{"version":2,"updatedTime":"2018-05-31T18:39:33.7346122Z","updatedBy":"a320fc00-4c5f-4d70-9648-593b5877c7da","parent":{"id":"/providers/Microsoft.Management/managementGroups/a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","name":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"Tenant + Root Group"}}}}'} headers: cache-control: [no-cache] - content-length: ['601'] + content-length: ['581'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:18:13 GMT'] + date: ['Thu, 31 May 2018 18:39:42 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [caf7655a-dd66-4888-be9d-301944d3104a] + request-id: [4a42b158-6d94-45bd-a0f1-592825ec5410] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:18:14 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r2tVE-SbceWQubxFoB6qBil_4JeN2B3M0fGf_2GOrBDvsGgJp4jikyniy0DAGDMzCWBAZj96oxZMMYezFJljCag608Gv3V_kh9xDnXo_7x63wEt85mj6ieG055LDG4EfqJbmyrY2s8Ud6EC-tc8SwBbujPyz5mQGovLnnZYXEofMgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -301,54 +137,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:18:17 GMT'] + date: ['Thu, 31 May 2018 18:39:43 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:18:27 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rncRjQiLrj_14WbsPIbYVY8CGrrRVkgBgDVjpUoEU0wH2oOvHcuKnjC_fTdnj-z_oVjB5lnbjsK3wv_MZ8iVZF72OQeUngjF4tBa_xyaOc8XPr39FfgHsC_glJfNgXQAi7RZkaaKdJjU4VkY9aHGh-_tUEyu9eWLkI2_VecrNG9AgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -363,53 +166,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:18:28 GMT'] + date: ['Thu, 31 May 2018 18:39:54 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:18:29 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rwVwRQ2Wn2FqD4vq4BurfdAkk0TvIqGRpy_OvJ-rMeFPAQojnGLpN6m-__7ImVVvpsJAGXuLPX2h4BcwJJOsECLbYxX7lawzOsbbWpQ1NJqRcQkkrILjbpaZLD8nZ1fInvVOWENvRtNm4N89k7hP05PZ5cycECeEpJTNwz_ZLPnUgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: '{"name": "testcligetgroup2", "properties": {"details": {"parent": {"id": "/providers/Microsoft.Management/managementGroups/testcligetgroup1"}}}}' @@ -426,59 +196,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup2?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligetgroup2?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:18:31 GMT'] + date: ['Thu, 31 May 2018 18:39:55 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup2?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup2?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [be9773df-64e7-4165-8816-c4f809918de3] + request-id: [80c7273a-d612-418d-9199-a32b4ea17df7] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1194'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:18:42 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r2gZkprqWYNrE7ZspqxMbkmZkyZUgoOfG9oHFFcFK6Yjd4XHRiTSOLpM8oFMNimNpL5wqONi6AWOaNf-6jwDDTMvNNsar4f9p7L1eSRawcjCAphqScBbIjaoih3vyLxVjU_7cd06U488JircxyKHd1Bj0cXgjR-YwqAVg8hiW_tggAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -490,56 +227,23 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup2?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup2?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup2","details":{"version":11,"updatedTime":"2018-05-30T21:18:38.9264603Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","name":"testcligetgroup1","displayName":"testcligetgroup1"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"Succeeded","properties":{"tenantId":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"testcligetgroup2","details":{"version":2,"updatedTime":"2018-05-31T18:39:57.3892026Z","updatedBy":"a320fc00-4c5f-4d70-9648-593b5877c7da","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","name":"testcligetgroup1","displayName":"testcligetgroup1"}}}}'} headers: cache-control: [no-cache] - content-length: ['541'] + content-length: ['540'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:18:43 GMT'] + date: ['Thu, 31 May 2018 18:40:06 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [29f15cd2-46d9-429b-9ffa-a86a3cccca2d] + request-id: [e075af02-facf-469f-b336-de25487a9dd6] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:18:44 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rRfP6XGoVa37rpmguRvA9QiQRRo7-W3hU8D8j0QlP4s6lki3kDSKdP2tcbz2NVHA4346uvX6VSE0OpZLum1eU4X4pdpqp3Y8tf_zD9kQr5b3OMLDFtwrHPtRD5vRdUXIxx9wq63vB5Xa8V9FucBZkpB1pDUhCoQ22iuFPM9yWkcEgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -557,54 +261,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:18:47 GMT'] + date: ['Thu, 31 May 2018 18:40:08 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1195'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:18:58 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rejPqwpVtqLA-ZTbcp1ogttUtFLyNX74nxdJm-AsvCw9vHxZtZ0Aykrwz2smLPUbtWTCOJISdiQt12U1xixWM16BujRPAIbdg54Q7LMiGVCCEMOWcIcc6SRqavXeCD_fiLzz_lKq_tijBDWxl-CFFo8JcdK5Dbw7uRRleyMaCpXcgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -619,53 +290,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:18:58 GMT'] + date: ['Thu, 31 May 2018 18:40:19 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:18:59 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rA1txBtzvZ54qyE5kBCix_WCZm4vBn6xx8vvONQYLMxYcPnzEQcGKkcew1HgwxgHq_EQ6bRZ_9wuefak8jcqg4OGAnbUHgZFZi1Mwp7jLpfrIYaWL2W00MybERPZ0gDWyft5u_yXmsJtlIwl2LZPNE7Y2lXB7fuPj_bPV1X39tokgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: '{"name": "testcligetgroup3", "properties": {"details": {"parent": {"id": "/providers/Microsoft.Management/managementGroups/testcligetgroup2"}}}}' @@ -682,59 +320,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup3?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligetgroup3?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:19:01 GMT'] + date: ['Thu, 31 May 2018 18:40:19 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup3?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup3?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [94eaaa42-d233-4f0e-a836-e843f2cc8555] + request-id: [95cef9a9-4b4a-440e-a425-8e9f77e7d6a0] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1193'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:19:12 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rBQmsgpMwWD0KO1nZb9DdawTC8ZJb_BIPmoe_W7vN4rZYR1uzx971DlxPI8wb0s8dNqqWIMsDT7W2FmsBzgOLh2xl4o8evYirI7fDZHmrfqGs6FVf_u3hjUiRLaLZWtXl-0IvFaObQI40rvK_wHatNauRCs9e6S5UMXJGZX8It-4gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -746,56 +351,23 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup3?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup3?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup3","details":{"version":9,"updatedTime":"2018-05-30T21:19:09.0039498Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","name":"testcligetgroup2","displayName":"testcligetgroup2"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","status":"Succeeded","properties":{"tenantId":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"testcligetgroup3","details":{"version":1,"updatedTime":"2018-05-31T18:40:21.8540243Z","updatedBy":"a320fc00-4c5f-4d70-9648-593b5877c7da","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","name":"testcligetgroup2","displayName":"testcligetgroup2"}}}}'} headers: cache-control: [no-cache] content-length: ['540'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:19:13 GMT'] + date: ['Thu, 31 May 2018 18:40:30 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [b41f2211-3270-48fd-962f-e66836cc1da6] + request-id: [92df25e8-958b-4ea1-9679-7dfcffe68809] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:19:15 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rdl6Sg_g4-iT92rsqq92tJnNB_sOiQDJIYmF93fpZ7b5OLTk8jLNd8td986_hhdJcO1gNAJRt_h5A1m9gZWr2Yepzw-bmcHpuNTbxi4YqbCfxS8IdM6baXVTThF2Ib2Ekst0HE6ToYuJwQvsdjZQQngB7B8dMlOWVRUB3u_b5fm8gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -813,54 +385,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:19:18 GMT'] + date: ['Thu, 31 May 2018 18:40:33 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:19:29 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rErDaa54RKVXv6LnaVF2YSst26vMWavboT1TFfCFmWp0YvHv0Tm40c5aUoJQgMvA7A7IK-TvsCL587-AEZws-KlIzuUgtEfpVFGelnBZknFFocU01G6WxEuiqXCfvX7t-RL08f_i7OSzHjLpgfye6UD0CCh5c3pVgUG_ar7DVZqYgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -875,53 +414,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:19:30 GMT'] + date: ['Thu, 31 May 2018 18:40:43 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:19:31 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rnHK1vHeYqQG_H6phFdrCBnzhhTBJTW_TCHky_vAfvQmqOT6LzhuS5N-GNaWzFUixdjWNh76qKuJRNHpP5d6khwvlNjjlEq3QLE8DrAVDQo5_KbaScZwehlem-TEkovBgANN127TaTgoDo1AM0DLfgdEZQo-y_lM3QqdmeecWv5IgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -936,56 +442,23 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup2?api-version=2018-03-01-preview&$expand=children&$recurse=false + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligetgroup2?api-version=2018-03-01-preview&$expand=children&$recurse=false response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup2","details":{"version":11,"updatedTime":"2018-05-30T21:18:38.9264603Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","name":"testcligetgroup1","displayName":"testcligetgroup1"}},"children":[{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","displayName":"testcligetgroup3"}]}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","properties":{"tenantId":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"testcligetgroup2","details":{"version":2,"updatedTime":"2018-05-31T18:39:57.3892026Z","updatedBy":"a320fc00-4c5f-4d70-9648-593b5877c7da","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","name":"testcligetgroup1","displayName":"testcligetgroup1"}},"children":[{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","displayName":"testcligetgroup3"}]}}'} headers: cache-control: [no-cache] - content-length: ['725'] + content-length: ['724'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:19:32 GMT'] + date: ['Thu, 31 May 2018 18:40:44 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [e34af52f-8621-4166-a48f-d93d0bb10223] + request-id: [6cc6f885-31ca-4fc6-b389-5bd1f14564f8] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:19:32 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rMah9y6TPVNQqD8f0459Bmw4IXbnoE-LHWApL7RzmgayuCiTq7IygkiYZ3Y6q2ZW_MrF_sf3ULVDU4y-0qAQ60xYe_zur3pFW7Kv-A3XaIx4WXFL1ayfeRi_NPenLq_WE-SejN2jaY_lBaKNKasYbn6lVX0UOOl4AdW9eKlW0maIgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -1003,54 +476,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:19:36 GMT'] + date: ['Thu, 31 May 2018 18:40:46 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:19:46 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rvr4oF2wIFSwdOrSb_2bcP24zo9xlmuKQnCUQTQevm5Fuivzhbs_MjDVJ-DlkiTup2yluL0KPfJI71KOdZp5wKsz5LSKq7wzlCwwSzDf17J2YrwP0zV2ALuqE4uaBSDgTYEjIZqtJnZzakROeN6yT1C2ctiN5IWUjzZM4EDZT8l8gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -1065,53 +505,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:19:47 GMT'] + date: ['Thu, 31 May 2018 18:40:56 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:19:48 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rt8EPNLJGlmRLoyPTfDzzGtqG1huULdE8OgbE7NBnparHiojFfZApe3pVR419f6TlKPF9vHM7uMva9AyDjo9O5QXSGMhjvb2BxRhXU5-NZSTa944pgb7Vl8iwSzym7045yXSlA-FzViulKHdLnYIamA36lxwQ3KRi5OIUE1kQF4cgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -1127,59 +534,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup3?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligetgroup3?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:19:52 GMT'] + date: ['Thu, 31 May 2018 18:40:58 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup3?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup3?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [27047639-cb4d-4d70-b204-57d7fc3d74ba] + request-id: [510902b2-ce88-4db7-835a-e4d3bb0ca76b] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:20:02 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rphaQPId19gYdF5R6AFjZ0Jo75igV47e8EaMhkunpmD4NZkEUkpydKXWRNojAVoz5LtIhog02NU39_ll_-oys9bQOnAhtdb0mE9-O6q4Nsqeq9KIbI9WBvpJQtkRG5VYOPSyvrMjovTt8Y1h0ikw3BoLsV9gCy-OhMi4rWxpcoHYgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -1191,56 +565,23 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup3?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup3?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['179'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:20:04 GMT'] + date: ['Thu, 31 May 2018 18:41:07 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [4f34e8be-d6bd-4b05-987e-b68161f24431] + request-id: [bac93e09-6ebc-456b-b0fa-9dea6291751e] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:20:04 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rcZEjeoJ4LnIQjgReWb39Vd-APveQ1M2Su8r9LQWl4ItL6tmvLxWIthoCTKR27I_xj3Rb8QHyFrL16QAF0RGNG3zfsxHZtevWHtUl7-UsImKD3TuuTvvaQF4ymnmEPeuIDuq9-ucbPQeM2cMSQMvoQrA-0qT8b_gKgHnkGcbTGM4gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -1258,54 +599,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:20:08 GMT'] + date: ['Thu, 31 May 2018 18:41:09 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1194'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:20:19 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rx7ME6I-nyQwPnJXDd5dYGhMO-dHfA2ku3VxliM7W0Ri0bXNgu7JDG2SO1rMx6T3EiN31kSWowlqZLkZavoxwdJdY37o7Uf81R0UQ86q8CfdIfJWpkh7I0beTphhcdaBxgk5fmeVOIqxr8_3tUZx243WgwXnVdbcfd5_i3GZJz3EgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -1320,53 +628,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:20:20 GMT'] + date: ['Thu, 31 May 2018 18:41:20 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:20:20 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rhkhpKK66-dx0uHNiMyhw5ct0Eq7PCnPxIQ_QPJDbxezQ6gMQ0PG6MmMC1C5BPovV-otcgdF9tFq9tqkAZ45TkGlbdjuiTHkS5jEFvBejrqQ9QqUEHVsg18XzLTvaGFmC3XRI7t9KojGjgqRBWKm4mes8leTOFA8QuOb5zFwB8zogAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -1382,59 +657,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup2?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligetgroup2?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:20:23 GMT'] + date: ['Thu, 31 May 2018 18:41:21 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup2?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup2?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [a0aeaac5-80fe-405f-8822-c4fce42c7c96] + request-id: [56cee91f-2cce-4be2-9eba-ccc1d3bd75d3] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1198'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:20:33 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7raawkryYXtRFL7YcgsYJvn3utWxbY99xMoUdQ_JohSARgnpJ65YD2wX3LO_Qq36AtzPb8d-vJS0uZdiDSqIqWcSTEo3toVkPBMwTDh4iigoQ7Wi-4-xNn_7ASGvY2BZF4BrxP6rHy1MqrVhT2S3lK54jaeYqPCeSiEoW0LdwamfAgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -1446,56 +688,23 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup2?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup2?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['179'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:20:35 GMT'] + date: ['Thu, 31 May 2018 18:41:32 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [92b159d9-56ad-4fe6-ad59-e6b21685e4cb] + request-id: [0202de99-a564-4d7a-917b-f1d207b4b2ba] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:20:36 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rP9SQu60HC-ZrIrIRNX5Li5ex08QzHH8YEm17GUJd9qh64fvMh7l3CkSRadLQNNZtKQc2EAChbknvaBBZqvPIbW_6g88lu9VNwJyCaVwDWsGFNYRpuVkQAYKIbWsulPiClyWe2iExwBMukFM9pDbdwJmBTUp1kpia6_3K6oMmy-AgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -1513,54 +722,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:20:38 GMT'] + date: ['Thu, 31 May 2018 18:41:34 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1195'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:20:48 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r_jYcjIIrqCvGZW1P7ZEuq9jJyMWE90VwH-9k2chESQWcbGlPSA8cWlKN4-nG_N_FfKnYmNLzu9Bc4mLmulxGAJwJih8LoY1pH8Lt7pTL0RqHvy_BPw8VYnDO5MYKwsOATrjg0Q9z4Dg4YpQHUrnbYM8t8N1IknFc8VXIkbA4-v4gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -1575,53 +751,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:20:49 GMT'] + date: ['Thu, 31 May 2018 18:41:44 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:20:50 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rrL6gLmLZkeEqfkUrB83rZ0Y5ZcYQSydTqA48H-weJKXmrj6aYYZNSSDcTc7TU-40Gm0FQdmSpQXoLojtNMl8hxd3TF_DL4IqW3oQmtcSQeH6SitsXx60yNDdjMVP5FUmG-vjfS_LsI5_0-tdbP66T2yXUOjpQdz1eWdEvwLy7aQgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -1637,59 +780,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup1?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligetgroup1?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:20:54 GMT'] + date: ['Thu, 31 May 2018 18:41:46 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup1?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup1?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [6132a42e-0d1f-4f5e-8cb9-2d037315c717] + request-id: [f18ce909-2e7f-4e23-9104-9d25fbebe8de] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1196'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:21:04 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rAXdFA3_nNecDTdWL4uscdvTfChm2y2qyd6tJoIo2xRxHB283NIsn8M1KS3yyFuFZ1BINstmd1l3ta-7w5qVmJzerYgGWPX-cIwzsnFSdF0ogBiwQ_2_djpubC9z79zTTEaepdZZBH1-Ezg5_S1hBEy8AwZ2bqpxNmvvE_ViELhQgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -1701,23 +811,23 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup1?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup1?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['179'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:21:06 GMT'] + date: ['Thu, 31 May 2018 18:41:56 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [8f088a96-d63a-4f80-a3ba-7736abbb9e08] + request-id: [602429fa-cedc-4efa-847e-af76d581025a] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup_with_expand_and_recurse.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup_with_expand_and_recurse.yaml index b2bbbb10798..6870062eea9 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup_with_expand_and_recurse.yaml +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_show_managementgroup_with_expand_and_recurse.yaml @@ -1,37 +1,4 @@ interactions: -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:12:39 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rB1pE9ac5F3Sg9lN_ZUjSoB0IDe0eK3pdDIF7oDG3VZNS6A5ZndQ4e7TZo5YiJW5rBCfziZK3onoV4uxgUrKdFy3a5w6c4087sYn7tZGaYm-5rh2FUJ5jVNQv_NXYVP-fxDQThxG0eCqM9roCZEZiLl0gZ5Kpz43VhooOBScsLrIgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -46,54 +13,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:12:41 GMT'] + date: ['Thu, 31 May 2018 18:41:59 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:12:52 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rx_PmnwEs5Xk5i8Ci2MI3mVTjfJaDTAbge-CBp_BkYeZbHjNlpZEtXy9HbeeOgQVIqUjOWyNpAcrVf4yvCIehR4yvWT2aHgaj3PPxf5Bw9wyiGW1e2eQPFp77vErA87Clw4ovsWm5AKMDin-MpoeZgu_g5sgDQn9ipXz3zYcLYQggAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -108,53 +42,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:12:52 GMT'] + date: ['Thu, 31 May 2018 18:42:09 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:12:53 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7ryKCyt-1V5EMlQ-Cx-dcA_godjV56BU495byaY6Ts457t2G9wDAe5LvRbM45Roxhf_jxHhtpoMIAR2j-7HX5ka6AwmkiiuqDcixM84CF-1hF0R2Ak676NMtcT7hDFEATim7CxmLxZ_HYZBBK3gENBgjxuzGSAAST5R8dEsjhuMgQgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: '{"name": "testcligetgroup1", "properties": {"details": {"parent": {}}}}' headers: @@ -170,59 +71,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup1?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligetgroup1?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:12:56 GMT'] + date: ['Thu, 31 May 2018 18:42:10 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup1?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup1?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [ee7cf5e5-5c97-4ec5-8b25-ec440dd79beb] + request-id: [4666cc4c-10f2-4c16-a0b3-823469064034] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1199'] + x-ms-ratelimit-remaining-tenant-writes: ['1198'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:13:06 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rlkgWmEFCV3TEAYwQuH8YFeeeyrhW9gxRoWePZVuq4VKcKx4IDvBKHu60-rs-Bw3Z_JA9osiRaNc7MCku5E1YrCgUn0d2q3CpO0y76FHxVW8SNpEmS2KyK5hW3uk7bOfKiRTmv_X4TL49Ib7KsNtE2AhF773Y41MlW5T-7opAVDYgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -234,56 +102,24 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup1?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup1?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup1","details":{"version":11,"updatedTime":"2018-05-30T21:13:03.6329477Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"Succeeded","properties":{"tenantId":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"testcligetgroup1","details":{"version":3,"updatedTime":"2018-05-31T18:42:12.6349587Z","updatedBy":"a320fc00-4c5f-4d70-9648-593b5877c7da","parent":{"id":"/providers/Microsoft.Management/managementGroups/a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","name":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"Tenant + Root Group"}}}}'} headers: cache-control: [no-cache] - content-length: ['601'] + content-length: ['581'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:13:09 GMT'] + date: ['Thu, 31 May 2018 18:42:20 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [e844f7f8-3855-497b-80fb-2737faab0354] + request-id: [5130069a-af82-440e-9c88-15d5abede23a] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:13:10 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rKk-UQNmORwY5kayxG9u57JRcpQvBlZY5_Tk_G0PuoIG94xjuTWWWMcFW_2--6uQ1GKv_PwBrp5kFHrWDSI5KREhsv1h0ugRONroRPY3qQtr4bjfrM3epPRiOpR2MBAn28atVwQiwpWpjCnEwbBWW5R9yPhiQhau0n93_3HU0GP0gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -301,54 +137,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:13:12 GMT'] + date: ['Thu, 31 May 2018 18:42:23 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:13:23 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rqzO1p1kmbNpZ-xAHbyS19HO0QiuLaTMC6BRr_JdabHbmqYKRPdU8q1eEz-KxUFlcZj9bZfC5k-ZpKar2r0ePjozHVlojznS0qL-wIEV82lhSI7TxCKh6kcbNOe1StIImo4oKJkUXIvp3Kp774lKGZvbmDijy5CWPIdq57j3oXeMgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -363,53 +166,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:13:23 GMT'] + date: ['Thu, 31 May 2018 18:42:33 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:13:24 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rq0y0j7ugunQYqq18ymuv4I9636z4tWM4TEA_GPmc-Pu4TF66YWd8wTNqjrQOVfAgfOAuOreoseeJv7b050F5h6aiuqmMBB_K9sk_wGYJRt_GKvDDcSYK4ZZ5wTkTISEbUP-hfrmAHTGgn1AM5MGSPI6OI3SwRfW8U2RhiquPO0AgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: '{"name": "testcligetgroup2", "properties": {"details": {"parent": {"id": "/providers/Microsoft.Management/managementGroups/testcligetgroup1"}}}}' @@ -426,59 +196,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup2?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligetgroup2?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:13:27 GMT'] + date: ['Thu, 31 May 2018 18:42:34 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup2?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup2?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [36e63544-4799-4b87-924c-a80c31e42e44] + request-id: [859255e2-f753-4fcd-afd2-d82b854cb23a] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1198'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:13:37 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rRPea4WZzvkdpoJ_jIWeXOwJKJKoapbCtaqp_iFosRqxORBhtfwvVxlkwCbMtb9tIe8RqfG39di0BO2HoYQmHTl4Av-G3LoplIJ3V6gfDxtrYYxxubB-7TUFU0rf7jimZnYI6HDmuTRHtw_WANkF2VWTCTHc0U7QT0JeD_hU5-9sgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -490,56 +227,23 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup2?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup2?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup2","details":{"version":10,"updatedTime":"2018-05-30T21:13:33.5354756Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","name":"testcligetgroup1","displayName":"testcligetgroup1"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"Succeeded","properties":{"tenantId":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"testcligetgroup2","details":{"version":3,"updatedTime":"2018-05-31T18:42:36.6792409Z","updatedBy":"a320fc00-4c5f-4d70-9648-593b5877c7da","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","name":"testcligetgroup1","displayName":"testcligetgroup1"}}}}'} headers: cache-control: [no-cache] - content-length: ['541'] + content-length: ['540'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:13:38 GMT'] + date: ['Thu, 31 May 2018 18:42:45 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [2c35a9f5-3985-4806-b43f-bcd9426e8467] + request-id: [4ac3674e-f106-490d-a5c2-20fa1a82a663] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:13:40 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rXNJLTkcfDR17xfnbocxbeuJ2AhSVheyDKXMUrjWf1gXPXG6Z7HN3B01aRBme_SMEyrfvxBB45vWO8gQ89FxxZMVwdl0Dmqij10JK0BtGSQHH0Fp5nlF2Hb0FH0rab4Y7tefzh0OOPIFBTfjBZPD1-s4vx66PyHDoMBnjTOogo_QgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -557,54 +261,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:13:43 GMT'] + date: ['Thu, 31 May 2018 18:42:46 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:13:54 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r7FD2t7R_US7yw-YZ4Xz-vP19RC_DKbNvli5RaR4WjblySPgAVUkavcugknP3Iv74pDyHAjkbNO0iClG6AWqsRqN820vIZ6aDVmpRWbfU2BuVOUiWnHjMCcPh2c5GmfdEqMayCcssKSLdRe_hEUdRiRoBqYVwfXPxxX5rlIYvzvggAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 200, message: OK} - request: body: null @@ -619,53 +290,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:13:55 GMT'] + date: ['Thu, 31 May 2018 18:42:56 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:13:55 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rZ0v2_RjqTwYN9Sy1xOTSO_bAGd1HE3PPOVWkHLWqDzN3mAhKsl0lUAHy0ONqAr_NU8XWNZk8jqo6vSFV6FCJR1k45Z6Z1Eg3V7XX81H-J2WbC5JIAJSufyoR5-EDOhnqUUZrTs5NZDXQEJUKCv8ArGDm2bPXtRmXLVt6QOyuNiYgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: '{"name": "testcligetgroup3", "properties": {"details": {"parent": {"id": "/providers/Microsoft.Management/managementGroups/testcligetgroup2"}}}}' @@ -682,59 +320,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup3?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligetgroup3?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:13:58 GMT'] + date: ['Thu, 31 May 2018 18:42:57 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup3?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup3?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [4d1fbc73-98e5-4b4a-89f7-8094c523126d] + request-id: [2005e12d-3842-487c-9d74-a7d70c26169c] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1197'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:14:08 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rZiCxIucbmZCM4iCIUHOO2cWngNmUZYZDaruLjL-CkCOBOrlqu2Og7Xke-g0gJdVtIwWz_tbfiPh_KmZTojLI91Xc5AdjkZlfwFpv8cWgec4KaVfERcF1YFyk9OiLGIMxY5xffarX4xRtEBFfx_1sno-ZqV4higxkquexlb0Ehv0gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -746,56 +351,23 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup3?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup3?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup3","details":{"version":8,"updatedTime":"2018-05-30T21:14:04.5086164Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","name":"testcligetgroup2","displayName":"testcligetgroup2"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","status":"Succeeded","properties":{"tenantId":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"testcligetgroup3","details":{"version":2,"updatedTime":"2018-05-31T18:43:00.1290657Z","updatedBy":"a320fc00-4c5f-4d70-9648-593b5877c7da","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","name":"testcligetgroup2","displayName":"testcligetgroup2"}}}}'} headers: cache-control: [no-cache] content-length: ['540'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:14:10 GMT'] + date: ['Thu, 31 May 2018 18:43:09 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [3dd30cd3-669a-4f17-8283-90ab497737ff] + request-id: [61317db1-423b-4c4c-b0c0-28de23545c17] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:14:11 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rZ5x94t15JIuEO6lcPpsxgu_4mAXn2_3cuVifAxBppq1jHcEBGBOS4iYh81WLSxVLXJws-0KT2EwJA2lDppII-xDMHJKkXicIm96purLtPRp8PiebDG4dlz7iItKtobQLlZYz_KBuoF1an5Oqq3gM7tC2Zw56gZUdrZlUt6bkLCYgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -813,14 +385,14 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:14:14 GMT'] + date: ['Thu, 31 May 2018 18:43:10 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -829,39 +401,6 @@ interactions: x-content-type-options: [nosniff] x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:14:24 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rh1YnyksBBflTyZ3TOxLNqZlemt7dBpBWjcqE8d7ynTTMWxRVTXZPs-26wtqkeSTQed1wa__XWpLmbJqlP0ttFVPgOzL-eZQENc3O-hEPBquJZK0TgZNs77G52gCvlA7-Ss_zVE9-DJofEe2Z1IPsolAiUVdjYWspj6e35-3GA9EgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -875,53 +414,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:14:25 GMT'] + date: ['Thu, 31 May 2018 18:43:21 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:14:26 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rXtBE88_u2gpVJWQKA4lGKA-4K1szRtwYDWdPdDv68oizobrmx-bN_N54PaD2rP8YRBhxtJI2oANduNR18GG_YxsjzBipiPee-Wa6dOeEyF95mHOvRmoG7MOHPZ7La8WQNBJzCyoUU60QaOCzIKmGQsdVPg_WYZ62zD3AalsNk6UgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: '{"name": "testcligetgroup4", "properties": {"details": {"parent": {"id": "/providers/Microsoft.Management/managementGroups/testcligetgroup3"}}}}' @@ -938,59 +444,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup4?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligetgroup4?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup4","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup4","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:14:29 GMT'] + date: ['Thu, 31 May 2018 18:43:21 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup4?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup4?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [dc137ce9-b12a-44f2-9296-8d005d2af947] + request-id: [eae65ff2-ed65-4b24-afa1-96de6a9eb2b8] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1196'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:14:39 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rg7_aH0sBubG-GJ7nSf16dwY71iK1v28ok5d7w-auY2C90hBXrChDUR2q8S-NqZtU8juhoXwPFK3331LXvakoU9TJJrK26LxsKGFgF0WQ-d5eWlrdrgG4uQHYQ-TXBs0p_mIunHRnFn5RWG6EM8GTkh1hRmjVJoGb8P3ra_6EDfcgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -1002,56 +475,23 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup4?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligetgroup4?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup4","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup4","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup4","details":{"version":6,"updatedTime":"2018-05-30T21:14:34.5328858Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","name":"testcligetgroup3","displayName":"testcligetgroup3"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup4","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup4","status":"Succeeded","properties":{"tenantId":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"testcligetgroup4","details":{"version":1,"updatedTime":"2018-05-31T18:43:23.6502206Z","updatedBy":"a320fc00-4c5f-4d70-9648-593b5877c7da","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","name":"testcligetgroup3","displayName":"testcligetgroup3"}}}}'} headers: cache-control: [no-cache] content-length: ['540'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:14:41 GMT'] + date: ['Thu, 31 May 2018 18:43:32 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [fec38314-6760-41c3-8496-156de4f95dd8] + request-id: [a893f76e-4416-477d-945b-e2faa0ac391d] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:14:42 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rWjY1o_vryJGomForU37Eav7GGWBsK2RuErWDKH9iDsJYqRKBfJOft61P3twihZKFxMvzo74Antv-4yXssTJPpxY7-V18c1aCYJRpFiNtj_sj2HXUuzEPpRYvdhQM1R14SDPhm1Bn81jyvKNbEAqKzAC1RC5WF2EW9Cb5cfRAvVQgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -1069,54 +509,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:14:46 GMT'] + date: ['Thu, 31 May 2018 18:43:34 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:14:56 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rgP-JiXtK2zYSycyG7U8kwFac_eezLNHqCtCrUpIYaP7nKIOSMiDQNhXwAlSK0eaMSARwXmlGyYv9Cz1Gfu9k-B5gp47sqTmBS3AaxtDKhxaO84ayE8AaAIZ3B9v_N6rqHUaKMq-lvijjYOELTqC-R0juFu69bsnR1U5aBd052ycgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -1131,53 +538,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:14:57 GMT'] + date: ['Thu, 31 May 2018 18:43:43 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:14:57 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rbHjjsF9rYTFZkjpoS0_HZZHOYQOPbwlyambjFwul8bS3KvZjvw57vbP1YPHo05N6tEXCxzaGDvc35DZkCNt3CyCtsC9W6_C0PkeuOwep33YR41hkHZus9Pg8zGbJ4Mvr_1hQR3MVE6dkGYgGkoqPD8h7sxGOP0ParhYAzr9-DDAgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -1192,56 +566,23 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup2?api-version=2018-03-01-preview&$expand=children&$recurse=true + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligetgroup2?api-version=2018-03-01-preview&$expand=children&$recurse=true response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligetgroup2","details":{"version":10,"updatedTime":"2018-05-30T21:13:33.5354756Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","name":"testcligetgroup1","displayName":"testcligetgroup1"}},"children":[{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","displayName":"testcligetgroup3","children":[{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup4","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup4","displayName":"testcligetgroup4"}]}]}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","properties":{"tenantId":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"testcligetgroup2","details":{"version":3,"updatedTime":"2018-05-31T18:42:36.6792409Z","updatedBy":"a320fc00-4c5f-4d70-9648-593b5877c7da","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","name":"testcligetgroup1","displayName":"testcligetgroup1"}},"children":[{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","displayName":"testcligetgroup3","children":[{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup4","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup4","displayName":"testcligetgroup4"}]}]}}'} headers: cache-control: [no-cache] - content-length: ['930'] + content-length: ['929'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:15:01 GMT'] + date: ['Thu, 31 May 2018 18:43:44 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [13344870-94b8-473a-a694-e9d57855e993] + request-id: [8297070f-5e94-40d6-bdae-687c674d9e46] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:15:02 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r1HRXOyZDdJgzlVe-f0geV2lvqWcziiaZHihkDe2f7ZiXlJMF2AKMayBFJp2txptimTnGXQvCIHnks0Ns_YDPq3tc1GT5yJlc69UsG02sZhK2m7FrNCCNaPnf6j4ISO6p0zc5IXlGNslLGuVS8FP224GdpieesHYsyVJJZKyUgaUgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -1259,54 +600,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:15:07 GMT'] + date: ['Thu, 31 May 2018 18:43:46 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:15:18 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rfOIk0NaeNpRGmpMYv7BOcaYJC4gYd6H4rp_DVDlGWGBLGfg53CuCMt4bD-J1QFmFhpm6_Zrt4P1-ixHlxux26qpBAK1pfuyHibRlTjkgUiRfAbBWpNeF9ccRnEa7k9a8bTZfXzpIxC1T9e6-nQFbKyXKW7GCiNZTV5AOTQIRH0ogAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -1321,53 +629,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:15:19 GMT'] + date: ['Thu, 31 May 2018 18:43:57 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:15:18 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rBj0lgtTVKpNSemF3o0VHijG-gEG7DahQ5CG2yCNkzO_bGccS7SmacGANcaewnPgC-WRAbiqXER701JgIQqGnaUQjiQ1j_2CswA5rr_UAdbj3XulfcvqygGEIDFMzrXC3VA1KiMxpTKq8V0Pvo_Cxjpl57s2XxmOSfc1EWxS2NDggAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -1383,59 +658,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup4?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligetgroup4?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup4","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup4","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:15:24 GMT'] + date: ['Thu, 31 May 2018 18:43:57 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup4?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup4?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [a56363f2-1027-4265-98ea-89609b804c12] + request-id: [76b2b6b4-cc0e-4267-abdd-f07347f92b42] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1195'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:15:33 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rSCkrk6by51ksBnbpgKSg3K-OeqTm9rMFGA_BXpEJYKAcNdnlEEnS86oXfWcav0uNCqir6NIt-6NfKA1I-AenmLexC1IES1F1yAijXiDM3ktxzbDxdN67RX-DIrNuzGks7bBWr8ISIn7bGUoVt2RGTtWxIxcCbIF_B57A-_JCjykgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -1447,56 +689,23 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup4?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup4?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup4","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup4","status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['179'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:15:56 GMT'] + date: ['Thu, 31 May 2018 18:44:08 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [42844987-e8ca-4314-acc1-a56dc2b06b17] + request-id: [d4465f66-5f4f-4a3a-8d84-dc14c1c32b05] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:15:57 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r_dX1xULZcZPHRbXTAeH5Nr-n6tNgpWzyvv6cpKto6Sz1UQfZVqm2yd5Upoc9dPcKHC4XoMFBBSlk13-kOagXAgCyk4BSyxm9whCENqECkWm0Xk6zQPVD9VlqLpKOhNsH37I49E3ZBb4MMSCZJyPu5i7YXwnI5Pa4COAvitWjA0sgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -1514,54 +723,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:16:01 GMT'] + date: ['Thu, 31 May 2018 18:44:10 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:16:11 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rNFe75ZqsoLKE62VunHT-dwG9ZywpvuTr5uLXFlWehcBZDhTiJWYsL0zBeXxXrhVPw2_16YP8U72kt23k8irqmZf-TR-3FKhkVsjQN_QiBvyMgqSHNRy3AQxJhQMP8fnbbda0BOYWHNpjt8xyxEJvdHD4iq00-RDkh_9_EbTlNgMgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -1576,53 +752,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:16:12 GMT'] + date: ['Thu, 31 May 2018 18:44:21 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:16:13 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r7G6Q0HIiLayuzhO13p0l4_cKUFjUmwSgkw9sILKCPj0HmyqPFIADsZDfY5vwLMkbBwj4QvLFvYY_ZbfsS8Ytv-B8jpKvlR8vaLbRCXz4LClNkNCJlz8ZQIvfTmbx28TH52kAKqABzZPS9ZpsPmKfaFsCFA3LB5jXiw8Zm5jNjUUgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -1638,59 +781,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup3?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligetgroup3?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:16:17 GMT'] + date: ['Thu, 31 May 2018 18:44:21 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup3?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup3?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [f7d89a3e-282d-48d8-b36f-09c3faaa7d7b] + request-id: [8e68b20a-6ed1-4754-9de3-fd20d7e28771] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:16:27 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r_-T57N6iyswaVQve-v748FASFpb7nwSSB15FKvNQtkeOLUrlogYEqUgUf5xqxk-46QUKFY3o-UoZGVrVqmMNQLzYaoWfyEb6RIa81uSCJ_juv0vYTJyhEDXUommIh0LK-3f-S0rbPL2BUGqEhNIRlJu_Xibp9d-cPpGqekMQNkAgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -1702,56 +812,23 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup3?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup3?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup3","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup3","status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['179'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:16:29 GMT'] + date: ['Thu, 31 May 2018 18:44:31 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [f54315e0-f77d-4d3a-94c1-feb057720355] + request-id: [c045e9ea-d754-48a1-85bd-0c5ee38ef347] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:16:30 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rSvBn11HYrC6XuTZ9dJcPgWMHLt-ubnn8jc193hOtxYD-D61ZMAufzMx8GFR8_lf-reCabAskNAysDQL2J7_aYZmemJf6wdBseMHqzUyELNvvusRZWF3QxYf4j8bDyexrdpZ808QTesa_96FpnAFwiKfBoDMh9_BFB4EJW9NltUIgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -1769,14 +846,14 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:16:34 GMT'] + date: ['Thu, 31 May 2018 18:44:34 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1785,39 +862,6 @@ interactions: x-content-type-options: [nosniff] x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:16:44 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rjWr7WaOKWqqlF0PL5LiiHxhRg-F3EzbME9ja7NumToCJQtBAVAcyETQ78XXVyx_lJrPvCYv06AL1Bae3T3Bd5DAK2xqMGWiwLEUHoSA6bPpebAoqT0mbTLSxmjXih2Sweixdr3F4JbEnKtOTdFK2MlMq6pL9-1ryKu11UaZGBq0gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -1831,53 +875,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:16:45 GMT'] + date: ['Thu, 31 May 2018 18:44:43 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:16:45 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rq29SDkc4JFX8Pa41KJ00lPOqnTJ5ol8Vk55iYgtH95NubhUFNkgPWJoGYYdsjyMfLJJZb1BmmBOOHWkF2LyqzftIIIaShVc_BbYnnn2XDrQWPeFKcEGmzplsHM2lt7EYIpHGwBkRsoZRL0E8VexTwxEDRXzrVTPH9IrRUDhxdUkgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -1893,59 +904,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup2?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligetgroup2?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:16:49 GMT'] + date: ['Thu, 31 May 2018 18:44:45 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup2?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup2?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [7d93662e-dfed-4076-ad16-4c64ebc796cc] + request-id: [21808a86-5d1f-432b-8969-798822ffd03b] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1198'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:16:59 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rSjfil31KC2YASf4v5e7gPYqizOIbtzakEEpUbEDJLwgybvud4MPiIsy9H6AujjS1tQVnj8fv0THjpU0DQlO5CMiwacahZplISCO6J0bv6_FC-wy7FMk8NygldexZqeVX7SXPl7Gz6OTbgVlBKMHV97sJMiQF2CQnHjvwJgl6pqYgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -1957,56 +935,23 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup2?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup2?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup2","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup2","status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['179'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:17:01 GMT'] + date: ['Thu, 31 May 2018 18:44:55 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [2d950698-6846-4a91-8166-9d1b604766c3] + request-id: [8e7e1131-3857-4cf7-a7bb-b2bae6b43483] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:17:01 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rj4viHgbjJyUtzkBz1WQ34gpfTJYWi06WCzBuMYUQ5g2qAOly8JCMF-j4oUWEj_lEeAZpC0jtCNFs6vY0EBiCZEAdebpqFv3abTmyMH1IRMo3tORPhh8oEUeMJ9sZcSCJ3l1LOjCvg0OIurRz0DvyYITf9yM01f6bwXxZ0rA2Y5EgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -2024,54 +969,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:17:04 GMT'] + date: ['Thu, 31 May 2018 18:44:57 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:17:15 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rO5RTvY0BYPsUdUsFHoZ-baDtYy6GiYKMXbTnQ-HTB07tLwqar3IYkND1_9foeyIjCxpO0EE-lsh7xRSf03CH-LWZGMeB0uB3ve99IukfIa0Jtm7L1LsbqYWaN5fXVDZhLcu9Jx1oRvhJTHPQV1AudeEvOi4QV3SXLTDy2whc4NcgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -2086,53 +998,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:17:15 GMT'] + date: ['Thu, 31 May 2018 18:45:08 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:17:16 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r-B6SnefRReYTO5VHjW9Tn1u0Fd_tnofFAfvrZvw_W4t8kjWWtnv5QMP1a536tZSASkUA5bLtZ9De46ayO2DeW6_hzrAqd_TUgNPsvI5ALKUAB_RN7PvQGG9gSumFZziILrm3HRA2ETwuVWSda45r6U72dAGcxA4p_0ttxyut3bQgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -2148,59 +1027,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligetgroup1?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligetgroup1?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['180'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:17:18 GMT'] + date: ['Thu, 31 May 2018 18:45:09 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup1?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup1?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [1983fd86-3ebe-4e06-91ee-019165bf9ab7] + request-id: [eccd348a-7041-4b10-a293-3c116f196db5] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:17:28 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rmRE9KZ-VGrdqWQYfKP2ISpiOHenZtwIkCEsBM5LNxZCfOqj7ich2Bt99Lg6Hv01sWM6t_mPt8ZZTJ_8_TT7AxsWqfdZ0ZDqwur-HljLSAu4UNIbid5nqW42KaeXDOb3LB76eBckbFeZYw-AkI9V8cPMJEp6G8obN6jQsmGGkNL0gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -2212,23 +1058,23 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup1?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligetgroup1?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligetgroup1","type":"/providers/Microsoft.Management/managementGroups","name":"testcligetgroup1","status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['179'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 21:17:30 GMT'] + date: ['Thu, 31 May 2018 18:45:19 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [c07e4c69-67da-45c1-ba6b-c5b8482ef887] + request-id: [134f737e-5b7d-4028-9ad0-444f0aaeb483] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_displayname.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_displayname.yaml index 92ca384b79c..714572a5dd3 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_displayname.yaml +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_displayname.yaml @@ -1,37 +1,4 @@ interactions: -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:36:22 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7ro-fdY84aU77kMZF6UYh9yzqPg25TxRo9-aA7t_x3ko4QK9QzCDHKUyvtlmLESizcn6KE-rNrK_cFHMxK_J6biqbbE5lvOeqZ-h6IHh4wTc8eBWTWc4ni8xkoyQ8NOFkR5IxaEGwnkm_smLBNwBiRuHm_O3n8pJog5KD_kHhYii0gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -46,54 +13,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:36:25 GMT'] + date: ['Thu, 31 May 2018 18:45:21 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:36:35 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rswYgGOQooITJBfR9vSUnjUd5u6HFJAPo4GICww4RZscP1CQiIa5tbDPMPG8A8U9l08P2ZJBSs7QIgRrOkDymquBjSU15P3xqLiJ3jAzTSXynTX9mPnkLpolu5hwhcwGYepnb9NJqtCSRqrnhEHbmOy1cgJFGL7ICutX_wrrIa4MgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -108,53 +42,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:36:36 GMT'] + date: ['Thu, 31 May 2018 18:45:32 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:36:36 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rWga-Y3lkCHeOnAENz1aGHJJVWnRf3MTtHCeiEOBkQtTeFCV8jziDlkDOYE06Rd4-tMzMehSATYkgDhMPl-MOvPvnu5WMsLPxlWZVFERzEzVSaI7TMTUfnnKUDCcN-CoefvUP1O6IJ9jLtn1CXRNPu_Os2F9W_4jabz_u_vEezJkgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: '{"name": "testcligroup", "properties": {"details": {"parent": {}}}}' headers: @@ -170,59 +71,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:36:39 GMT'] + date: ['Thu, 31 May 2018 18:45:33 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [c99c9f24-663e-4970-b8de-4ffebbdb945f] + request-id: [965a5922-ebce-4438-b95e-ef95ce897800] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1198'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:36:49 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r5zJ0DLiuxAbTrPIdtDXVbcauX1oqQpmJ_ozBqaCz_KcNpNVugpWXdWzmpPEJmG8tegPViUFm4S05m0FWxlOfbtb8U2xnWHfCq5GJAP5Ne76RGbGGDoX9Bcm8oP-zzXMnji69Y9uy-e2BTeAsupqqJu78dWz9P2hRwrGLXQK4Hj4gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -234,56 +102,24 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroup","details":{"version":55,"updatedTime":"2018-05-30T22:36:48.2205236Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"testcligroup","details":{"version":6,"updatedTime":"2018-05-31T18:45:35.835588Z","updatedBy":"a320fc00-4c5f-4d70-9648-593b5877c7da","parent":{"id":"/providers/Microsoft.Management/managementGroups/a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","name":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"Tenant + Root Group"}}}}'} headers: cache-control: [no-cache] - content-length: ['589'] + content-length: ['568'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:36:52 GMT'] + date: ['Thu, 31 May 2018 18:45:44 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [1be04c00-8c57-473f-8a5d-2c3f5466663e] + request-id: [4fcb9323-6af5-4b6e-8e93-87892a48644d] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:36:53 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rnL_kzguHDnoqOkLqDoImiVThnM9jGKrK_ZcSaFVMQV9OLDNYMfK51Hdwv2ax4Xfn8VixNbFnBQkIRxGghhlD3fHeb43SubguMevZcK9HzRgm_yo46ECAgbi8k8KlXMBWppHVraqn7Ik_Vmb-4tWYfpst4fbM_JbumPklKvg7uJQgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -302,58 +138,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: PATCH - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroupDisplayName","details":{"version":56,"updatedTime":"2018-05-30T22:36:55.3432929Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","properties":{"tenantId":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"testcligroupDisplayName","details":{"version":7,"updatedTime":"2018-05-31T18:45:46.5401675Z","updatedBy":"a320fc00-4c5f-4d70-9648-593b5877c7da","parent":{"id":"/providers/Microsoft.Management/managementGroups/a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","name":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"Tenant + Root Group"}}}}'} headers: cache-control: [no-cache] - content-length: ['579'] + content-length: ['559'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:36:55 GMT'] + date: ['Thu, 31 May 2018 18:45:46 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [5c982009-66ca-46a4-bd00-0952baa8a19e] + request-id: [663fc393-d05b-4ed6-a923-1cc66eb7a4e2] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1198'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:36:55 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r4f-Jh7FxBCCWZlJdca717-Y5sAu2ElZHWqRV8-Zbb5JnJRaCsAKz04aV7m3zguxNdpZ2m3sixcbYtPjs06Z1XWGpwWKmAnkNoUh7GVHRabUGaeNqROWT6-rKtAVPZ_0naBCvX_R9nj3OFV1GyTDb9WDAKku9PB2ieswnjKHDvl0gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -370,54 +174,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:36:58 GMT'] + date: ['Thu, 31 May 2018 18:45:47 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:37:08 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7ruGzQigSBfgZX8GrfvX3O2OOg2t81eZbIFa539RmG853ATmv4GeEtEK8I82IazuG0wFREOrHbgls3ark9YBQJ-N5doHjVu-vTuDJBPnWweXY-6oLONZ6IhJLvzdN9ra317WGNyi1Twz6YLaA0zhBfxq1vLa-4PyD-BowiszHK6YogAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -432,53 +203,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:37:09 GMT'] + date: ['Thu, 31 May 2018 18:45:58 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:37:09 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rCeob6H0wtqBYC1cspt0pE9LVVoydJg_5TbdsmnW9mji9Be3kubqtUC134dS-zNljMRQTk0KivbR4n6ZC70cXxeEAak4Ti0a04qcwBz0ScfnHek1mKt840FbiP7m3uEh3AQcwtIAWRzwuI1LZ0H0gfhELa3rFMeGM7ZfAfQLg6QggAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -494,59 +232,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:37:12 GMT'] + date: ['Thu, 31 May 2018 18:45:59 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [0e272544-9491-4925-a7d8-528e5c71fd5f] + request-id: [7e717295-357b-44ef-9d38-34476a7297dd] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1197'] + x-ms-ratelimit-remaining-tenant-writes: ['1198'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:37:23 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rdoadviAIHhouyfPjDKZtPzS3D2IewMqjCsw4EAp7vjIUdwy1FxdKF9lfakInfWdJ6XYTteWemq7rD8bBdKh568T1vgBFkqYo7X7brAylEk7gzhvghqBuPsGeynsA03lLBQgCAKNbwEXrvTLNE8vhuYArobiFucmC-3AIDH5IgrogAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -558,23 +263,23 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['171'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:37:24 GMT'] + date: ['Thu, 31 May 2018 18:46:09 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [a21855f5-de8f-44db-a9ee-d16e56fac231] + request-id: [78bb8799-3437-45a0-a830-cc2451933450] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_displayname_and_parentid.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_displayname_and_parentid.yaml index 98442cd3681..ec3faa1c5e6 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_displayname_and_parentid.yaml +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_displayname_and_parentid.yaml @@ -1,37 +1,4 @@ interactions: -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:33:57 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rT9VZaye-l35qkvDmn7N9fnYkeoXwjx7UI_d8Wq-27ciQoFndh3hWtDp1OTn1SYqJawn93FrymMT4w54bfZEBzjBA82lrVyMKDvnl16c614U-HHfkPWBuac7INTV985QsQlgwlmlIzkEzwa25FNY2eHiKh_Yw29YHWt1deg6V6w4gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -46,14 +13,14 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:33:59 GMT'] + date: ['Thu, 31 May 2018 18:46:12 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -62,39 +29,6 @@ interactions: x-content-type-options: [nosniff] x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:34:10 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rnLGnIHONfDdpQ9RRMzGO0comSjbG9L2DNtvi4cyVVLkwbLxkymv9pUbVUiR6ZPzLzdhybotdeloMlWgHbDPJ_4mgMXym57XeVkDRL2VWmiVPu7cvulTjHMxgw6_fvVLWiPHQKVxq72_AJNN8eVhVSgVe21lylAFVu8x34bfQOiQgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -108,53 +42,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:34:10 GMT'] + date: ['Thu, 31 May 2018 18:46:22 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:34:11 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rE1XcCPFpvyvQevW1Gz0ll68iy0myQIFuf6AbWiHgKPqQvt2LdRS62JezHrWyr62kskBgxau3KPTp8r2A2ykCK2BovuA-TWKhD3FrtR3TKYk11oX70KC8wb1GOnTofYztBFl3U9b8IxBX1Y1BmmK3wH2BA_2ulsTfUFtC4DDWGJQgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: '{"name": "testcligroup", "properties": {"details": {"parent": {}}}}' headers: @@ -170,59 +71,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:34:14 GMT'] + date: ['Thu, 31 May 2018 18:46:23 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [8892cafd-bd0a-4f7f-afeb-4af42e5cb525] + request-id: [d3be4dac-256e-48c5-9e5a-6f7b58c9b038] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:34:24 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rswMbkd5gaMSoMAfb0EHqDk7A5XDGs_7w6CQbop-7NdLrak38iyV7ulZoad0XsR-OkvU7Oh-SQzwHre76r1fNvuY8vdbO0Qi7GaK5jwjBGhDL6L0g2gICQ06vdA6sSS6N8LNLQeCrpNff4BiTjmeGA-knboUygmKP38KzkkuanoIgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -234,56 +102,24 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroup","details":{"version":54,"updatedTime":"2018-05-30T22:34:21.6218006Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"testcligroup","details":{"version":8,"updatedTime":"2018-05-31T18:46:26.1235359Z","updatedBy":"a320fc00-4c5f-4d70-9648-593b5877c7da","parent":{"id":"/providers/Microsoft.Management/managementGroups/a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","name":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"Tenant + Root Group"}}}}'} headers: cache-control: [no-cache] - content-length: ['589'] + content-length: ['569'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:34:28 GMT'] + date: ['Thu, 31 May 2018 18:46:33 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [1d105edf-fe69-4b5e-87f6-31fd51c99e41] + request-id: [53e56aaa-8259-4c0b-b9a1-1bba479b08a1] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:34:29 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rXdJ4E1i8A7U-7m4SRjlr-iecuSKL2xUK_dhSq0atl81N9YtTUvUHF-1xiHv_yZSsM5G6JFYXWMLUpS7HRbv6T5MA2WeLEdLPkcm3UMIbNJPuAuqKPWf-bYmSCtDTOvcI74g_xEL1vZTR4w53Enqv9TN1zDr3vA0ayql8LpO-rfAgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -301,14 +137,14 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:34:32 GMT'] + date: ['Thu, 31 May 2018 18:46:36 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -317,39 +153,6 @@ interactions: x-content-type-options: [nosniff] x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:34:43 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rTEyU8EkS0nAxYYz2IgUWR_Sa3xZXxiUZNN2nN8JgZtnTuR-rz-eA1cHSEUZBva04KRUtSWN6DPmg-9AkMDtSYH3le2dIo2SkEBEstTsioeCeV_CH6ho7NtUK75O6PxYPqruPoFDnRbrNM5aXLMwnYHiUJhJ590d-ekHbS1uU-gYgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -363,53 +166,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:34:44 GMT'] + date: ['Thu, 31 May 2018 18:46:47 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:34:44 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rJgZcasSrG2JV9jtyu7PHSOl78SfJ1KVRLDkfX_s1jyOh-uOQWusZIjk8Wxn4mtVVl2WKjw9eKYGW8dN_QUz5rmodMQ6kb2WgKgTXs2u4fI_GBGM3XucNVhhh4gk2Dl2c6DS-rBkU-C8TtgVOaWvAq_3JUs6ec73n4mZ4ETn08csgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: '{"name": "testcligroupchild", "properties": {"details": {"parent": {}}}}' headers: @@ -425,59 +195,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['182'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:34:47 GMT'] + date: ['Thu, 31 May 2018 18:46:47 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [9cc8a93a-d603-4a86-89d1-a0e083e9e165] + request-id: [4e79b19c-012b-4cac-ac9f-3d1abfffddb1] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:34:57 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rtK-FvLpth2cv74cKasgEPOzMfVCm8o39-IdwTjdnJ3ZgxckNVSTCcPnS_4mpLFdTI9w9YUfM81hJSFqa0EONN4aAik3Er2WlVxrcG1c3w_PJhgi4vMM3pr0fU0PCvOSr_MRrV0jHOkQgX04qPRJzZzH7Waqb_Ad4Kr037mAhskYgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -489,56 +226,24 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroupchild","details":{"version":23,"updatedTime":"2018-05-30T22:34:53.7164901Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"Succeeded","properties":{"tenantId":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"testcligroupchild","details":{"version":3,"updatedTime":"2018-05-31T18:46:50.3921888Z","updatedBy":"a320fc00-4c5f-4d70-9648-593b5877c7da","parent":{"id":"/providers/Microsoft.Management/managementGroups/a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","name":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"Tenant + Root Group"}}}}'} headers: cache-control: [no-cache] - content-length: ['604'] + content-length: ['584'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:34:59 GMT'] + date: ['Thu, 31 May 2018 18:46:58 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [303dea32-5e0e-4152-bc3d-aee96fdc7785] + request-id: [846f32b0-ba47-4a84-a3e9-dab974a771b9] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:35:00 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rY7NeqzuEFezqWPq9SCCijKcuXD_8BGXzxSAUvHr957zzk4gJ3bwAyI2DHMqvLWFl6nYzr0fLR4VVIt6PWxp0pKkaREpRe_h7BW7n-8R4lVmiyzDyWyFRiBi2ss3JjRWBSyz2k1Lm_Brwe_uccNkKAEwwFsesS5rXwAUxPFwoHu4gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -557,60 +262,27 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: PATCH - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroupchild","details":{"version":24,"updatedTime":"2018-05-30T22:35:03.4796128Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","name":"testcligroup","displayName":"testcligroup"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","properties":{"tenantId":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"testcligroupchild","details":{"version":4,"updatedTime":"2018-05-31T18:47:00.3878053Z","updatedBy":"a320fc00-4c5f-4d70-9648-593b5877c7da","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","name":"testcligroup","displayName":"testcligroup"}}}}'} headers: cache-control: [no-cache] - content-length: ['511'] + content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:35:05 GMT'] + date: ['Thu, 31 May 2018 18:46:59 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [774ebb69-1ae9-4051-bc92-f4afc6add844] + request-id: [b44c035e-6fa1-4ef6-9fd1-ba6a0f34ab3e] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:35:06 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rmb3gGKQXBRABQ2caRyT4PANGBQYpkUKwoWYDngQZsGh4pkau07Tf1tUdGSJJg_f6Qq9C7_dKsc2FtW3Yli7kQYNrBzgwtVGh9KiOC8yxPjEWev2psUDCEtDM6fOihYi5lyNjH_z4VRkIEcSP9BZ7S9-v_2l5gnLtcdqjdEy6E5YgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -625,14 +297,14 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:35:09 GMT'] + date: ['Thu, 31 May 2018 18:47:02 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -641,39 +313,6 @@ interactions: x-content-type-options: [nosniff] x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:35:19 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rkg7bnQ58WE8aKDtwPryKDr52j4eXOiksSnot3MxgVK0ZVgVLGnyyMzB4CVvEFwAJ3M2TOmp9f3MVkukF_pXHVzU703_QyJ5jWNsA7pn7d3RlYDH9jEHXX2IqMpXlS1vLXgphJP6x8TMcS4ndthVqADOX1Z0OyXcmCHW18PG9xlogAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -687,53 +326,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:35:20 GMT'] + date: ['Thu, 31 May 2018 18:47:12 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:35:21 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rfHNH81fc86n00-XpLxT_ZHWKsBBill5Dtvo6Ifi7mlfWlj9cRzUbn5x8FaHVj4wPtIrPxxua02uAXR2d4nwbyE5kUJXQhs4zTlMZfHvXXcifJWKAveARezTb4XNjssvfhuPbSY98NUwaqHvoImUevqL0hHr59yrLQvyeViVQoa8gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -749,59 +355,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['182'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:35:24 GMT'] + date: ['Thu, 31 May 2018 18:47:13 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [7634550d-fe4a-4762-9292-ae99701aacc8] + request-id: [5b0d7cfb-a944-40d8-a04d-90e203db61bc] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1198'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:35:35 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r5Oy5CgtboWViFqx0EGR3F9dz08XbaraQrpbfcTHtT5EfAm2GZ69IKjv_pBJu1D-LcbNA0PycBi4IUpapMwPFX1tCMAdmSafUPcmXt0X3D_KVEfvZ4pM0x68zZ0C8uYmlhFyD09SQIulkVtOWv2NfJ9-_nB6RBF_5RnAQKcTJKlQgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -813,56 +386,23 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroupchild?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroupchild?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['181'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:35:36 GMT'] + date: ['Thu, 31 May 2018 18:47:23 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [8453d0d8-8637-40b2-965f-baa7a7884ff2] + request-id: [9b748f0f-0170-420c-953e-05427acc3586] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:35:37 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rrPUwJt-UUox5CTmZfZ_kwRb_ftd095wpIdoI_8GmA1tWERyJTTitI_HRMk7GQwGFWzm72jwHWqmupNDCAuXrwFb4UnCQyLUA7qJLq-ywBiRTUNcsmOuwieQOr5CwFrhkawYx5c2mnPVSkQJjkDz0A_MhOAZfYKDi9voPXxmuDWAgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -880,54 +420,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:35:40 GMT'] + date: ['Thu, 31 May 2018 18:47:25 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:35:50 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rEeER-2NoaQF93jcrzDly94c7ldH-2USIzKI812I8jd3mxyJY79PVJwZhVDH3cM4rlInIhuILNofS9BgK4tI7eT8b35-TeVFScEH4LPc-8jcBSznRZHpA4KCXB9LB0c_nG3iyVBYOhHyW3QYKa1xnK7gBGai95hDUf0uKfheNTYogAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -942,53 +449,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:35:51 GMT'] + date: ['Thu, 31 May 2018 18:47:36 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:35:52 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rtfzwXHAAirt0XIW6FP5P731qY6vukYNNaX4QZwWyKYbuah_KOHdaKXpAOBOJLy9uyd_j3FStHYEWX-7-98bLiBbpJPvaTdrhW80zVgC0Cs5VNgGgRQ8ItVk-i73xZ6xHIySDP889hKfqyaTPjosOWkXf34LYxCQTBkJsmX-ZMvkgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -1004,59 +478,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:35:56 GMT'] + date: ['Thu, 31 May 2018 18:47:36 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [e3fdc84b-8ef9-44b2-9671-c3306d1ac26c] + request-id: [8e63c2a7-c215-48e3-9a8e-37e3a859f7c5] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1199'] + x-ms-ratelimit-remaining-tenant-writes: ['1198'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:36:07 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rdB8mJpYBgHAfjpIZt04PVNfolTfK97KOobkpeMp7mE6RhdozeMEl_HNUZcPR2_tpU09-ez6eUhIIDScUw5lX_zL1fPmUuF-MZMtZBnhuDcAhV2VZnxF9IFjbBaOAFTLzTLbORFK2ZFuS8PkWEuKDBzTOZhkDqTQy88WPvxDXFoQgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -1068,23 +509,23 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['171'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:36:08 GMT'] + date: ['Thu, 31 May 2018 18:47:48 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [eeefaef5-4471-4128-a7fd-b819c7bcf050] + request-id: [d0aed5ca-af2f-44c4-80f2-56cfc429b75a] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_parentid.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_parentid.yaml index 4406027643e..6eb759df4c4 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_parentid.yaml +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_update_managementgroup_with_parentid.yaml @@ -1,37 +1,4 @@ interactions: -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:38:18 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rQqKDK4bRh-4X_4u-_1HMpCbQ7BQljihQXaAjS4ORFogh5-wP0pboi7ise6-FrGP1tlYFFEw2ayWBkoLt_LsBldSVxSolHZ947i7Lx02fyoWyYkHWyWd_2B6nW714I-ES6KKqv7-ZSwOEAHkUahCmyW-ULRKuV2yfBED05RsYU3IgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -46,54 +13,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:38:22 GMT'] + date: ['Thu, 31 May 2018 18:47:51 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:38:32 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rySLxZazul2vGom12aUlSgA2eRp6gr_6GlLQ0UXiSWeh6L00ODGN1ihw4OSzDPciAJtw6XO8mr2DsWDDuZ5N7_Bo9Q8wWTiGsaUj1V86n0qDqNtQidmdp3ObKviL8sfyXG3WNM7LvCOdn_qiEycIcpSwaQwjZRJK28UL0INe5wiIgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -108,53 +42,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:38:33 GMT'] + date: ['Thu, 31 May 2018 18:48:00 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:38:33 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rriiT_mBeYDyq5b0Up6sECYt7BncPGG_05vRkri6R8ZIz5PGdD3xkNrp2X7PAiCsDxHirDy50banWP2DT6F_bRg5FJfHChB4Oh7Y_WQ4JhWMiHhl00HWA3rDgR1y8DVGUZZTzXCdh2PwSZxkBkyDrffXPCPDReYqCrJ8n97QBm-0gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: '{"name": "testcligroup", "properties": {"details": {"parent": {}}}}' headers: @@ -170,59 +71,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:38:37 GMT'] + date: ['Thu, 31 May 2018 18:48:01 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [9cc27a7d-5f6e-436e-8695-14161835acdf] + request-id: [7c124c4c-f314-4741-a8d6-098677962808] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1197'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:38:48 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rTVWhzEP_VfSPf-YMAB4deciwrzfR21WZQeovJYSiQDV2U5El6p7RQ8lsSr-vq5jz1Ld9_txBbfbywAsKrpGJDHXp64rHm1CkhEo0NjyUDHcUjwg-T40HQJUU6mK8dvev0klEFLsJ3B08X0WdWgf_3oBApZt9lU8O06xI6S5Exj8gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -234,56 +102,24 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroup?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroup","details":{"version":57,"updatedTime":"2018-05-30T22:38:43.7544043Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded","properties":{"tenantId":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"testcligroup","details":{"version":9,"updatedTime":"2018-05-31T18:48:03.9865135Z","updatedBy":"a320fc00-4c5f-4d70-9648-593b5877c7da","parent":{"id":"/providers/Microsoft.Management/managementGroups/a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","name":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"Tenant + Root Group"}}}}'} headers: cache-control: [no-cache] - content-length: ['589'] + content-length: ['569'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:38:49 GMT'] + date: ['Thu, 31 May 2018 18:48:12 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [37006d7a-b3d0-4aa1-bd24-f3cafd76def4] + request-id: [c72aab2d-114f-4c97-9199-44627517a47d] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:38:50 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rSQWqKezWKPgFUUgcZc-CCp8y7Zumy8t0zjVG-EOSnpk5LLK8Ns_JLsig7xZLnGQH0UM3DnJEORwJsGbNxC7qK0H7wNMiLazNOXZ1SOiI7vQrtpLCGb50b6L8kiVLLILoXT8JxIb9jjCuHv7YqFfZkFSuV_DYiDUELyaAJ5YuBtIgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -301,54 +137,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:38:53 GMT'] + date: ['Thu, 31 May 2018 18:48:14 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:39:04 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r-_MlrQAtucGRyUooIGM1XIDLSRVj8ZXFB1qcPE8OgF-SiWX76DSAaC4de2V2wAQ7zKrEzlIm2K6rSHLtJyDZFX4fhQg-OVA1fXr6lhE-FA4nrlnFgtszVfHbTIlmqTOdPbhQL_xxOqbEE907fkbhfAbAXckzZChCXgqkNoB7Ih4gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -363,53 +166,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:39:05 GMT'] + date: ['Thu, 31 May 2018 18:48:24 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:39:05 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rtW4_WC83rUiDdIbnYPBQb6XaPYMMKUw06g4-xl6CCbRJrYbWw_QMExibsqOUlfOFMHQd7BavQLjIl_3zqkQfSzj82hSCwYWgxXhnxlwUcItTrTuZBpXJQwtABjr1NnkExGmSqCkXLBZLp09cFiMkxBYadThx3lo_OvSl6ijd8U8gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: '{"name": "testcligroupchild", "properties": {"details": {"parent": {}}}}' headers: @@ -425,59 +195,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['182'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:39:08 GMT'] + date: ['Thu, 31 May 2018 18:48:24 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [ed6e1072-e73b-4099-bdf1-ad8101b8d22b] + request-id: [0d33494a-03c8-4609-bdb7-b79a0e199b43] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-ms-ratelimit-remaining-tenant-writes: ['1198'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:39:18 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r2HusA0RkWHU2NPcKsIbYcAhUQn91BoCmCfMPr9wJWb2MtxMGplCDvTutLQWtulUSI6eXDwL9SEcojrasBFc2Dlh4uPAGlrpSbTZj04Y3mtSgXc1CyNz-quzLlpMtCpNZuXaRS0IaQ9Fc2rXg6W204I7EBM7j9UgY-cMybJ5zaqogAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -489,56 +226,24 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/testcligroupchild?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"Succeeded","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroupchild","details":{"version":25,"updatedTime":"2018-05-30T22:39:14.653202Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/b1af47f1-138c-4ed2-8bba-119041b95450","name":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"b1af47f1-138c-4ed2-8bba-119041b95450"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"Succeeded","properties":{"tenantId":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"testcligroupchild","details":{"version":5,"updatedTime":"2018-05-31T18:48:27.8344806Z","updatedBy":"a320fc00-4c5f-4d70-9648-593b5877c7da","parent":{"id":"/providers/Microsoft.Management/managementGroups/a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","name":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"Tenant + Root Group"}}}}'} headers: cache-control: [no-cache] - content-length: ['603'] + content-length: ['584'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:39:19 GMT'] + date: ['Thu, 31 May 2018 18:48:35 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [09f4eb62-56c9-4ee5-8646-99a4b6f9c82a] + request-id: [94758a05-d94b-47fb-aede-04f0aadfcc05] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:39:21 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r04IY-gIzF8Ekp8E-LJobWnLsVL75bLygpasI6Zolh8TJXTlC1rVTt-bML8Pq3xPCACsXTmXMGGlcEbY3Fvegg4KzB4xsyA2aKlJOEmPwZXAl1sHK-sZixQdXokfj7mepHrdZEpy2LDY5urgXxhjmn0Xi6ysxw2HHkJXKWROM8dMgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -557,58 +262,25 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: PATCH - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview response: - body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","properties":{"tenantId":"b1af47f1-138c-4ed2-8bba-119041b95450","displayName":"testcligroupchild","details":{"version":26,"updatedTime":"2018-05-30T22:39:23.9937403Z","updatedBy":"823969e2-f8c1-4add-8526-62544e2f96b2","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","name":"testcligroup","displayName":"testcligroup"}}}}'} + body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","properties":{"tenantId":"a6d629b5-ddc2-4f88-8bb5-5a68fd6adae2","displayName":"testcligroupchild","details":{"version":6,"updatedTime":"2018-05-31T18:48:37.7807471Z","updatedBy":"a320fc00-4c5f-4d70-9648-593b5877c7da","parent":{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","name":"testcligroup","displayName":"testcligroup"}}}}'} headers: cache-control: [no-cache] - content-length: ['511'] + content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:39:25 GMT'] + date: ['Thu, 31 May 2018 18:48:37 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [bd693883-fff8-4e92-851d-e91ef491892c] + request-id: [f4d0b586-7c33-4fc5-96eb-d16f21a1dcb9] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1196'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:39:26 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r8bxLfhjt-TlZ47pIloJlKmI8DZbhnC_NMipG3QZU4mfPY2bBiMyrubMHS76aX3f3xXl_DKGQmV7Ny3X8Sc6plorVX0iZJ9JEjp-MXmIDpVg4iqtWWw5gzti30qjM0tiK30Qw3tu2ik8oZVx1OKqitQF9FsewnFK7KkZS01GIF0AgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-tenant-writes: ['1198'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -625,54 +297,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:39:29 GMT'] + date: ['Thu, 31 May 2018 18:48:39 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1195'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:39:39 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r5KfZSh_fdZWhkiB-4mFyWSA219rPanhv_YQCDlPE8Ynzu35ZVHoGoCuteUYc8ekUb7eW-S3fMmEfMU4gPWtzF6EsAwNY28QVWvitbHIYFaJTirxavZKtIS-cuKFH5Dkso7Qx78-EEQlEeu5wnTnEoG2Nilt8u7s5kRDfVoyvzLYgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -687,53 +326,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:39:40 GMT'] + date: ['Thu, 31 May 2018 18:48:50 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:39:41 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7riZFy-joQAkLptKltRafzQv5RIoR8C0t7xGxYBilTCUYWzwcfW5txfMyFeK33dlMC235qXSY1T-17uQQxr5W-61K-ErUUa2A-_-qahJOG8X-JjeC_JRm8l4YlQoIx2FZACNmkPa7srMxguMrSlhrx5vTsJmDYunXy9DUnVOl7AdAgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -749,59 +355,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligroupchild?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['182'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:39:43 GMT'] + date: ['Thu, 31 May 2018 18:48:50 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroupchild?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [ab1f13d0-7794-4a44-882b-a5eb3d50a917] + request-id: [9549c197-8450-48cb-86af-a8d2ccffaefd] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1195'] + x-ms-ratelimit-remaining-tenant-writes: ['1198'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:39:54 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rllKEoi2fr752W1uIEvormlHypDTvXD0egOXmNQdOtcexRwDVONTmiSznVQ4-WC00uJ_tkuXrQowvSbBgTVHMU6no5bT4hH9xE0wI1th7pf5nkCf728oWiLNMExK3CWXWQQa83DhWkJlnMms_HG9pN00Y4K1VK_yRVjAa9edpyoIgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -813,56 +386,23 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroupchild?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroupchild?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroupchild","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroupchild","status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['181'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:39:56 GMT'] + date: ['Thu, 31 May 2018 18:49:01 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [ba03d3ac-b2ce-4ca5-a096-f3f9a2eed6eb] + request-id: [b6431b9b-612f-42c6-aa28-9825fa6520e2] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:39:57 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rA0etWqi_ncmGvtGS-SZJRPan07QPExOB1tNJKWCAl-L275512KNyRmAxJThvDIz-P2FGJE6o057GfwuKfw7ePsSwQbP6JD8ONSLf8AY1-mL5PIqARTX8OIEFJ0G_RpMRPFmmTrwTKGlB0k7Tu0ZS2HvifsD7sQcSYX25xywNdn0gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -880,54 +420,21 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management/register?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:39:59 GMT'] + date: ['Thu, 31 May 2018 18:49:04 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:40:10 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rFnjwH4YDwl9errLaFavL4-nxxDM75J2b365elP5ZmokHatFGqcyz-QzhP3nlW5n_VCHq9etiN-vjLiwf99ZS4Lteor-072CX4QS5VnnuygrXJU-1_odNN-tMq-k0c_Ojcv0ZldNuQLAhGMHLk93vSZ9mb1-Pc1rr66FyZJ1KUnMgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -942,53 +449,20 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-03-01-preview","2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"tenantBackfillStatus","locations":[],"apiVersions":["2018-03-01-preview"]},{"resourceType":"startTenantBackfill","locations":[],"apiVersions":["2018-03-01-preview"]}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['1300'] + content-length: ['1342'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:40:10 GMT'] + date: ['Thu, 31 May 2018 18:49:14 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:40:11 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7rGPZIBGgKgePy-eCVAW3SLEx_IVNA9P8HlM5XHpWdT-MWeaGP5JUGRNtm68IFBX41ng5av1lrBtEOw2HPGjdad3yZXb_UPPc76hfQ2Wu0HfBOh_km9Bh7gZ6Kw0rXQAcNDVLp3_ZRxAz9Jw30dqe78E1xHDGQnc6ROvSRSdbWcKAgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -1004,59 +478,26 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: DELETE - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/managementGroups/testcligroup?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"NotStarted"}'} headers: cache-control: [no-cache] content-length: ['172'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:40:14 GMT'] + date: ['Thu, 31 May 2018 18:49:15 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] + location: ['https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview'] pragma: [no-cache] - request-id: [41127462-7043-43e3-998c-086fa9e9a865] + request-id: [6c2f4847-03f3-4031-8aa3-7d3455331c44] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-tenant-writes: ['1196'] + x-ms-ratelimit-remaining-tenant-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.6.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2Fb1af47f1-138c-4ed2-8bba-119041b95450%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/b1af47f1-138c-4ed2-8bba-119041b95450/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['131'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:40:25 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAADX8GCi6Js6SK82TsD2Pb7r9HkBir-9mZjV7w99ioKC-b6K17OSASj9SSLRfomyGVhNaSWg5Q0CaBgYZrOjCEfnekQ-K7cef9XhVwIXQ7EVi11AiHHBPPgV2V_XGDZF5XWD0iDmSYG9kVfhcRMrAGOqbB02_t9xA50JGh-lybC5r5BM1k7hulZETcm0470IIxIgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=corp; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} - request: body: null headers: @@ -1068,23 +509,23 @@ interactions: msrest_azure/0.4.31 azure-mgmt-managementgroups/2018-03-01-preview Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://api-dogfood.resources.windows-int.net/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview + uri: https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/testcligroup?api-version=2018-03-01-preview response: body: {string: '{"id":"/providers/Microsoft.Management/managementGroups/testcligroup","type":"/providers/Microsoft.Management/managementGroups","name":"testcligroup","status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['171'] content-type: [application/json; charset=utf-8] - date: ['Wed, 30 May 2018 22:40:26 GMT'] + date: ['Thu, 31 May 2018 18:49:26 GMT'] expires: ['-1'] pragma: [no-cache] - request-id: [f6a89774-beb6-4100-a0fa-f5739a5ec2bf] + request-id: [832678f3-a892-47a8-ad4a-675d7eefc08e] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: ['Accept-Encoding,Accept-Encoding'] x-aspnet-version: [4.0.30319] - x-ba-restapi: [1.0.3.804] + x-ba-restapi: [1.0.3.726] x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/test_managmentgroups.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/test_managmentgroups.py index 6754844fd0b..06aed6f41bd 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/test_managmentgroups.py +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/test_managmentgroups.py @@ -179,7 +179,7 @@ def test_create_managementgroup(self): displayName) self.assertEqual( managementgroup_create["properties"]["details"]["parent"]["displayName"], - managementgroup_create["properties"]["tenantId"]) + "Tenant Root Group") self.assertEqual( managementgroup_create["properties"]["details"]["parent"]["id"], "/providers/Microsoft.Management/managementGroups/" + @@ -213,7 +213,7 @@ def test_create_managementgroup_with_displayname(self): displayName) self.assertEqual( managementgroup_create["properties"]["details"]["parent"]["displayName"], - managementgroup_create["properties"]["tenantId"]) + "Tenant Root Group") self.assertEqual( managementgroup_create["properties"]["details"]["parent"]["id"], "/providers/Microsoft.Management/managementGroups/" + @@ -322,7 +322,7 @@ def test_update_managementgroup_with_displayname(self): self.assertEqual(managementgroup_update["displayName"], displayName) self.assertEqual( managementgroup_update["details"]["parent"]["displayName"], - managementgroup_update["tenantId"]) + "Tenant Root Group") self.assertEqual( managementgroup_update["details"]["parent"]["id"], "/providers/Microsoft.Management/managementGroups/" + From 698c379359b1bc566099a30935b050d1c3a62a03 Mon Sep 17 00:00:00 2001 From: Raj Shah Date: Thu, 31 May 2018 13:23:44 -0700 Subject: [PATCH 11/12] Supress extension --- .../azure/cli/command_modules/resource/__init__.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/__init__.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/__init__.py index 15c858870eb..59f85fab501 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/__init__.py +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/__init__.py @@ -12,9 +12,14 @@ class ResourceCommandsLoader(AzCommandsLoader): def __init__(self, cli_ctx=None): from azure.cli.core.commands import CliCommandType + from azure.cli.core import ModExtensionSuppress resource_custom = CliCommandType(operations_tmpl='azure.cli.command_modules.resource.custom#{}') super(ResourceCommandsLoader, self).__init__(cli_ctx=cli_ctx, - custom_command_type=resource_custom) + custom_command_type=resource_custom, + suppress_extension=ModExtensionSuppress( + __name__, 'managementgroups', '0.1.0', + reason='The management groups commands are now in CLI.', + recommend_remove=True)) def load_command_table(self, args): from azure.cli.command_modules.resource.commands import load_command_table From e73a0a67b49860d01c4de814b323346662aef6c2 Mon Sep 17 00:00:00 2001 From: Raj Shah Date: Thu, 31 May 2018 14:09:58 -0700 Subject: [PATCH 12/12] Remove private whl file --- ...oups-2018_03_01_preview-py2.py3-none-any.whl | Bin 61103 -> 0 bytes src/command_modules/azure-cli-resource/setup.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) delete mode 100644 privates/azure_mgmt_managementgroups-2018_03_01_preview-py2.py3-none-any.whl diff --git a/privates/azure_mgmt_managementgroups-2018_03_01_preview-py2.py3-none-any.whl b/privates/azure_mgmt_managementgroups-2018_03_01_preview-py2.py3-none-any.whl deleted file mode 100644 index 7783ad876f4b071dbedcb5171e0977f3e4dfc700..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 61103 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 VZR%GuJ-~6O