From 9066eb3a72d017c45a82527db7ff5e4f97947acb Mon Sep 17 00:00:00 2001 From: Yugang Wang Date: Fri, 2 Dec 2022 23:13:32 -0800 Subject: [PATCH 1/8] add service account commands --- src/amg/azext_amg/_params.py | 22 ++++++- src/amg/azext_amg/commands.py | 12 ++++ src/amg/azext_amg/custom.py | 117 ++++++++++++++++++++++++++++++---- 3 files changed, 135 insertions(+), 16 deletions(-) diff --git a/src/amg/azext_amg/_params.py b/src/amg/azext_amg/_params.py index 2539e3e4c04..f73e67fb801 100644 --- a/src/amg/azext_amg/_params.py +++ b/src/amg/azext_amg/_params.py @@ -15,6 +15,9 @@ def load_arguments(self, _): grafana_name_type = CLIArgumentType(options_list="--grafana-name", help="Name of the Azure Managed Dashboard for Grafana.", id_part="name") + grafana_role_type = CLIArgumentType(arg_type=get_enum_type(["Admin", "Editor", "Viewer"]), options_list=["--role", "-r"], + help="Grafana role name", default="Viewer") + with self.argument_context("grafana") as c: c.argument("tags", tags_type) @@ -23,7 +26,8 @@ def load_arguments(self, _): c.argument("id", help=("The identifier (id) of a dashboard/data source is an auto-incrementing " "numeric value and is only unique per Grafana install.")) c.argument("folder", help="id, uid, title which can identify a folder. CLI will search in the order of id, uid, and title, till finds a match") - c.argument("api_key", help="api key, a randomly generated string used to interact with Grafana endpoint; if missing, CLI will use logon user's credentials") + c.argument("api_key", options_list=["--api-key", "--service-token", '-t'], + help="api key or service account token, a randomly generated string used to interact with Grafana endpoint; if missing, CLI will use logon user's credentials") with self.argument_context("grafana create") as c: c.argument("grafana_name", grafana_name_type, options_list=["--name", "-n"], validator=None) @@ -34,7 +38,8 @@ def load_arguments(self, _): # api_key=None, deterministic_outbound_ip=None, public_network_access=None with self.argument_context("grafana update") as c: - c.argument("api_key", get_enum_type(["Enabled", "Disabled"]), help="If enabled, you will be able to configur Grafana api keys") + c.argument("api_key_and_service_account", get_enum_type(["Enabled", "Disabled"]), options_list=['--api-key', '--service-account'], + help="If enabled, you will be able to configur Grafana api keys and service accounts") c.argument("deterministic_outbound_ip", get_enum_type(["Enabled", "Disabled"]), options_list=["-i", "--deterministic-outbound-ip"], help="if enabled, the Grafana workspace will have fixed egress IPs you can use them in the firewall of datasources") @@ -54,7 +59,7 @@ def load_arguments(self, _): with self.argument_context("grafana api-key") as c: c.argument("key_name", help="api key name") - c.argument("role", get_enum_type(["Admin", "Editor", "Viewer"]), help="Grafana role name", default="Viewer") + c.argument("role", grafana_role_type) c.argument("time_to_live", default="1d", help="The API key life duration. For example, 1d if your key is going to last fr one day. Supported units are: s,m,h,d,w,M,y") with self.argument_context("grafana api-key create") as c: @@ -85,3 +90,14 @@ def load_arguments(self, _): with self.argument_context("grafana user") as c: c.argument("user", help="user login name or email") + + with self.argument_context("grafana service-account") as c: + c.argument("role", grafana_role_type) + c.argument("service_account", help="id or name which can identify a service account") + c.argument("is_disabled", arg_type=get_three_state_flag(), help="disable the service account. default: false") + + with self.argument_context("grafana service-account create") as c: + c.argument("service_account", help="service account name") + + with self.argument_context("grafana service-account update") as c: + c.argument("new_name", help="new name of the service account") diff --git a/src/amg/azext_amg/commands.py b/src/amg/azext_amg/commands.py index 0b729ed4bd7..f646dd2f8fd 100644 --- a/src/amg/azext_amg/commands.py +++ b/src/amg/azext_amg/commands.py @@ -57,3 +57,15 @@ def load_command_table(self, _): g.custom_command('create', 'create_api_key') g.custom_command('list', 'list_api_keys') g.custom_command('delete', 'delete_api_key') + + with self.command_group('grafana service-account') as g: + g.custom_command('create', 'create_service_account') + g.custom_command('list', 'list_service_accounts') + g.custom_command('show', 'show_service_account') + g.custom_command('delete', 'delete_service_account') + g.custom_command('update', 'update_service_account') + + with self.command_group('grafana service-account token') as g: + g.custom_command('create', 'create_service_account_token') + g.custom_command('list', 'list_service_account_tokens') + g.custom_command('delete', 'delete_service_account_token') \ No newline at end of file diff --git a/src/amg/azext_amg/custom.py b/src/amg/azext_amg/custom.py index 4299f585a2c..6f080a91956 100644 --- a/src/amg/azext_amg/custom.py +++ b/src/amg/azext_amg/custom.py @@ -148,16 +148,16 @@ def list_grafana(cmd, resource_group_name=None): return client.grafana.list() -def update_grafana(cmd, grafana_name, api_key=None, deterministic_outbound_ip=None, resource_group_name=None, +def update_grafana(cmd, grafana_name, api_key_and_service_account=None, deterministic_outbound_ip=None, resource_group_name=None, tags=None): - if not api_key and not deterministic_outbound_ip and not tags: - raise ArgumentUsageError("--api-key | --deterministic-outbound-ip | --public-network-access") + if not api_key_and_service_account and not deterministic_outbound_ip and not tags: + raise ArgumentUsageError("--api-key | --service-account | --deterministic-outbound-ip | --public-network-access") client = cf_amg(cmd.cli_ctx) instance = client.grafana.get(resource_group_name, grafana_name) - if api_key: - instance.properties.api_key = api_key + if api_key_and_service_account: + instance.properties.api_key = api_key_and_service_account if deterministic_outbound_ip: instance.properties.deterministic_outbound_ip = deterministic_outbound_ip @@ -450,6 +450,20 @@ def delete_api_key(cmd, grafana_name, key, resource_group_name=None): def create_api_key(cmd, grafana_name, key, role=None, time_to_live=None, resource_group_name=None): + seconds = _convert_duration_to_seconds(time_to_live) + + data = { + "name": key, + "role": role, + "secondsToLive": seconds + } + response = _send_request(cmd, resource_group_name, grafana_name, "post", "/api/auth/keys", data) + content = json.loads(response.content) + logger.warning("You will only be able to view this key here once. Please save it in a secure place.") + return content + + +def _convert_duration_to_seconds(time_to_live): unit_to_seconds = { "s": 1, "m": 60, @@ -466,17 +480,94 @@ def create_api_key(cmd, grafana_name, key, role=None, time_to_live=None, resourc else: seconds = int(time_to_live) except ValueError: - raise ArgumentUsageError("Please provide valid API key life duration") from None + raise ArgumentUsageError("Please provide valid time duration") from None + + return seconds + +def create_service_account(cmd, grafana_name, service_account, role=None, is_disabled=None, resource_group_name=None): data = { - "name": key, - "role": role, - "secondsToLive": seconds + "name": service_account, + "role": role } - response = _send_request(cmd, resource_group_name, grafana_name, "post", "/api/auth/keys", data) - content = json.loads(response.content) - logger.warning("You will only be able to view this key here once. Please save it in a secure place.") - return content + if is_disabled is not None: + data["isDisabled"] = is_disabled + response = _send_request(cmd, resource_group_name, grafana_name, "post", "/api/serviceaccounts", data) + return json.loads(response.content) + + +def update_service_account(cmd, grafana_name, service_account, new_name=None, + role=None, is_disabled=None, resource_group_name=None): + data = {} + service_account_id = _get_service_account_id(cmd, resource_group_name, grafana_name, service_account) + if new_name: + data['name'] = new_name + + if role: + data['role'] = role + + if is_disabled is not None: + data["isDisabled"] = is_disabled + + response = _send_request(cmd, resource_group_name, grafana_name, "patch", "/api/serviceaccounts/" + service_account_id, data) + return json.loads(response.content) + + +def list_service_accounts(cmd, grafana_name, resource_group_name=None): + response = _send_request(cmd, resource_group_name, grafana_name, "get", + "/api/serviceaccounts/search") + return json.loads(response.content)['serviceAccounts'] + + +def show_service_account(cmd, grafana_name, service_account, resource_group_name=None): + service_account_id = _get_service_account_id(cmd, resource_group_name, grafana_name, service_account) + response = _send_request(cmd, resource_group_name, grafana_name, "get", + "/api/serviceaccounts/" + service_account_id) + return json.loads(response.content) + + +def delete_service_account(cmd, grafana_name, service_account, resource_group_name=None): + service_account_id = _get_service_account_id(cmd, resource_group_name, grafana_name, service_account) + response = _send_request(cmd, resource_group_name, grafana_name, "delete", + "/api/serviceaccounts/" + service_account_id) + return json.loads(response.content) + + +def _get_service_account_id(cmd, resource_group_name, grafana_name, service_account): + try: + _ = int(service_account) + return service_account + except ValueError: + all = list_service_accounts(cmd, grafana_name, resource_group_name) + match = next((a for a in all if a['name'].lower() == service_account.lower()), None) + if not match: + raise ArgumentUsageError(f"Could't find the service account '{service_account}'") + return str(match['id']) + + +def create_service_account_token(cmd, grafana_name, service_account, token, time_to_live=None, resource_group_name=None): + data = { + "name": token, + } + + if time_to_live: + data['secondsToLive'] = _convert_duration_to_seconds(time_to_live) + + response = _send_request(cmd, resource_group_name, grafana_name, "post", + "/api/serviceaccounts/" + service_account + '/tokens', data) + return json.loads(response.content) + + +def list_service_account_tokens(cmd, grafana_name, service_account, resource_group_name=None): + response = _send_request(cmd, resource_group_name, grafana_name, "get", + "/api/serviceaccounts/" + service_account + '/tokens') + return json.loads(response.content) + + +def delete_service_account_token(cmd, grafana_name, service_account, token, resource_group_name=None): + response = _send_request(cmd, resource_group_name, grafana_name, "delete", + "/api/serviceaccounts/" + service_account + '/tokens' + '/' + token) + return json.loads(response.content) def get_actual_user(cmd, grafana_name, resource_group_name=None, api_key=None): From aea7898bd4a619bbbe3f73983df58f87d10806dc Mon Sep 17 00:00:00 2001 From: Yugang Wang Date: Sat, 3 Dec 2022 00:03:58 -0800 Subject: [PATCH 2/8] code refactoring --- src/amg/azext_amg/_params.py | 5 +- src/amg/azext_amg/commands.py | 4 +- src/amg/azext_amg/custom.py | 200 +++++++++++++++++++--------------- 3 files changed, 116 insertions(+), 93 deletions(-) diff --git a/src/amg/azext_amg/_params.py b/src/amg/azext_amg/_params.py index f73e67fb801..a9a997528c6 100644 --- a/src/amg/azext_amg/_params.py +++ b/src/amg/azext_amg/_params.py @@ -18,7 +18,6 @@ def load_arguments(self, _): grafana_role_type = CLIArgumentType(arg_type=get_enum_type(["Admin", "Editor", "Viewer"]), options_list=["--role", "-r"], help="Grafana role name", default="Viewer") - with self.argument_context("grafana") as c: c.argument("tags", tags_type) c.argument("location", validator=get_default_location_from_resource_group) @@ -26,8 +25,8 @@ def load_arguments(self, _): c.argument("id", help=("The identifier (id) of a dashboard/data source is an auto-incrementing " "numeric value and is only unique per Grafana install.")) c.argument("folder", help="id, uid, title which can identify a folder. CLI will search in the order of id, uid, and title, till finds a match") - c.argument("api_key", options_list=["--api-key", "--service-token", '-t'], - help="api key or service account token, a randomly generated string used to interact with Grafana endpoint; if missing, CLI will use logon user's credentials") + c.argument("api_key_or_token", options_list=["--api-key", "--service-token", '-t'], + help="api key or service account token, a randomly generated string used to interact with Grafana endpoint; if missing, CLI will use logon user's credentials") with self.argument_context("grafana create") as c: c.argument("grafana_name", grafana_name_type, options_list=["--name", "-n"], validator=None) diff --git a/src/amg/azext_amg/commands.py b/src/amg/azext_amg/commands.py index f646dd2f8fd..de102d5500d 100644 --- a/src/amg/azext_amg/commands.py +++ b/src/amg/azext_amg/commands.py @@ -3,7 +3,7 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- -# pylint: disable=line-too-long +# pylint: disable=line-too-long,too-many-statements from ._validators import process_grafana_create_namespace @@ -68,4 +68,4 @@ def load_command_table(self, _): with self.command_group('grafana service-account token') as g: g.custom_command('create', 'create_service_account_token') g.custom_command('list', 'list_service_account_tokens') - g.custom_command('delete', 'delete_service_account_token') \ No newline at end of file + g.custom_command('delete', 'delete_service_account_token') diff --git a/src/amg/azext_amg/custom.py b/src/amg/azext_amg/custom.py index 6f080a91956..5240334e486 100644 --- a/src/amg/azext_amg/custom.py +++ b/src/amg/azext_amg/custom.py @@ -148,10 +148,11 @@ def list_grafana(cmd, resource_group_name=None): return client.grafana.list() -def update_grafana(cmd, grafana_name, api_key_and_service_account=None, deterministic_outbound_ip=None, resource_group_name=None, - tags=None): +def update_grafana(cmd, grafana_name, api_key_and_service_account=None, deterministic_outbound_ip=None, + resource_group_name=None, tags=None): if not api_key_and_service_account and not deterministic_outbound_ip and not tags: - raise ArgumentUsageError("--api-key | --service-account | --deterministic-outbound-ip | --public-network-access") + raise ArgumentUsageError("--api-key | --service-account | " + "--deterministic-outbound-ip | --public-network-access") client = cf_amg(cmd.cli_ctx) instance = client.grafana.get(resource_group_name, grafana_name) @@ -188,19 +189,20 @@ def delete_grafana(cmd, grafana_name, resource_group_name=None): _delete_role_assignment(cmd.cli_ctx, grafana.identity.principal_id) -def show_dashboard(cmd, grafana_name, uid, resource_group_name=None, api_key=None): +def show_dashboard(cmd, grafana_name, uid, resource_group_name=None, api_key_or_token=None): response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/dashboards/uid/" + uid, - api_key=api_key) + api_key_or_token=api_key_or_token) return json.loads(response.content) -def list_dashboards(cmd, grafana_name, resource_group_name=None, api_key=None): - response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/search?type=dash-db", api_key=api_key) +def list_dashboards(cmd, grafana_name, resource_group_name=None, api_key_or_token=None): + response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/search?type=dash-db", + api_key_or_token=api_key_or_token) return json.loads(response.content) def create_dashboard(cmd, grafana_name, definition, title=None, folder=None, resource_group_name=None, - overwrite=None, api_key=None): + overwrite=None, api_key_or_token=None): if "dashboard" in definition: payload = definition else: @@ -222,21 +224,22 @@ def create_dashboard(cmd, grafana_name, definition, title=None, folder=None, res del payload['dashboard']['id'] response = _send_request(cmd, resource_group_name, grafana_name, "post", "/api/dashboards/db", - payload, api_key=api_key) + payload, api_key_or_token=api_key_or_token) return json.loads(response.content) def update_dashboard(cmd, grafana_name, definition, folder=None, resource_group_name=None, overwrite=None, - api_key=None): + api_key_or_token=None): return create_dashboard(cmd, grafana_name, definition, folder=folder, resource_group_name=resource_group_name, - overwrite=overwrite, api_key=api_key) + overwrite=overwrite, api_key_or_token=api_key_or_token) def import_dashboard(cmd, grafana_name, definition, folder=None, resource_group_name=None, overwrite=None, - api_key=None): + api_key_or_token=None): import copy - data = _try_load_dashboard_definition(cmd, resource_group_name, grafana_name, definition, api_key=api_key) + data = _try_load_dashboard_definition(cmd, resource_group_name, grafana_name, definition, + api_key_or_token=api_key_or_token) if "dashboard" in data: payload = data else: @@ -265,17 +268,18 @@ def import_dashboard(cmd, grafana_name, definition, folder=None, resource_group_ logger.warning("No data source was found matching the required parameter of %s", parameter['pluginId']) response = _send_request(cmd, resource_group_name, grafana_name, "post", "/api/dashboards/import", - payload, api_key=api_key) + payload, api_key_or_token=api_key_or_token) return json.loads(response.content) -def _try_load_dashboard_definition(cmd, resource_group_name, grafana_name, definition, api_key=None): +def _try_load_dashboard_definition(cmd, resource_group_name, grafana_name, definition, api_key_or_token=None): import re try: int(definition) + # try load from Grafana gallery response = _send_request(cmd, resource_group_name, grafana_name, "get", - "/api/gnet/dashboards/" + str(definition), api_key=api_key) + "/api/gnet/dashboards/" + str(definition), api_key_or_token=api_key_or_token) definition = json.loads(response.content)["json"] return definition except ValueError: @@ -294,128 +298,134 @@ def _try_load_dashboard_definition(cmd, resource_group_name, grafana_name, defin return definition -def delete_dashboard(cmd, grafana_name, uid, resource_group_name=None, api_key=None): +def delete_dashboard(cmd, grafana_name, uid, resource_group_name=None, api_key_or_token=None): _send_request(cmd, resource_group_name, grafana_name, "delete", "/api/dashboards/uid/" + uid, - api_key=api_key) + api_key_or_token=api_key_or_token) -def create_data_source(cmd, grafana_name, definition, resource_group_name=None, api_key=None): +def create_data_source(cmd, grafana_name, definition, resource_group_name=None, api_key_or_token=None): response = _send_request(cmd, resource_group_name, grafana_name, "post", "/api/datasources", definition, - api_key=api_key) + api_key_or_token=api_key_or_token) return json.loads(response.content) -def show_data_source(cmd, grafana_name, data_source, resource_group_name=None, api_key=None): - return _find_data_source(cmd, resource_group_name, grafana_name, data_source, api_key=api_key) +def show_data_source(cmd, grafana_name, data_source, resource_group_name=None, api_key_or_token=None): + return _find_data_source(cmd, resource_group_name, grafana_name, data_source, api_key_or_token=api_key_or_token) -def delete_data_source(cmd, grafana_name, data_source, resource_group_name=None, api_key=None): +def delete_data_source(cmd, grafana_name, data_source, resource_group_name=None, api_key_or_token=None): data = _find_data_source(cmd, resource_group_name, grafana_name, data_source) _send_request(cmd, resource_group_name, grafana_name, "delete", "/api/datasources/uid/" + data["uid"], - api_key=api_key) + api_key_or_token=api_key_or_token) -def list_data_sources(cmd, grafana_name, resource_group_name=None, api_key=None): +def list_data_sources(cmd, grafana_name, resource_group_name=None, api_key_or_token=None): response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/datasources", - api_key=api_key) + api_key_or_token=api_key_or_token) return json.loads(response.content) -def update_data_source(cmd, grafana_name, data_source, definition, resource_group_name=None, api_key=None): - data = _find_data_source(cmd, resource_group_name, grafana_name, data_source, api_key=api_key) +def update_data_source(cmd, grafana_name, data_source, definition, resource_group_name=None, api_key_or_token=None): + data = _find_data_source(cmd, resource_group_name, grafana_name, data_source, api_key_or_token=api_key_or_token) response = _send_request(cmd, resource_group_name, grafana_name, "put", "/api/datasources/" + str(data['id']), - definition, api_key=api_key) + definition, api_key_or_token=api_key_or_token) return json.loads(response.content) -def list_notification_channels(cmd, grafana_name, resource_group_name=None, short=False, api_key=None): +def list_notification_channels(cmd, grafana_name, resource_group_name=None, short=False, api_key_or_token=None): if short is False: response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/alert-notifications", - api_key=api_key) + api_key_or_token=api_key_or_token) elif short is True: response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/alert-notifications/lookup", - api_key=api_key) + api_key_or_token=api_key_or_token) return json.loads(response.content) -def show_notification_channel(cmd, grafana_name, notification_channel, resource_group_name=None, api_key=None): - return _find_notification_channel(cmd, resource_group_name, grafana_name, notification_channel, api_key=api_key) +def show_notification_channel(cmd, grafana_name, notification_channel, resource_group_name=None, api_key_or_token=None): + return _find_notification_channel(cmd, resource_group_name, grafana_name, notification_channel, + api_key_or_token=api_key_or_token) -def create_notification_channel(cmd, grafana_name, definition, resource_group_name=None, api_key=None): +def create_notification_channel(cmd, grafana_name, definition, resource_group_name=None, api_key_or_token=None): response = _send_request(cmd, resource_group_name, grafana_name, "post", "/api/alert-notifications", definition, - api_key=api_key) + api_key_or_token=api_key_or_token) return json.loads(response.content) def update_notification_channel(cmd, grafana_name, notification_channel, definition, resource_group_name=None, - api_key=None): - data = _find_notification_channel(cmd, resource_group_name, grafana_name, notification_channel, api_key=api_key) + api_key_or_token=None): + data = _find_notification_channel(cmd, resource_group_name, grafana_name, notification_channel, + api_key_or_token=api_key_or_token) definition['id'] = data['id'] response = _send_request(cmd, resource_group_name, grafana_name, "put", "/api/alert-notifications/" + str(data['id']), - definition, api_key=api_key) + definition, api_key_or_token=api_key_or_token) return json.loads(response.content) -def delete_notification_channel(cmd, grafana_name, notification_channel, resource_group_name=None, api_key=None): - data = _find_notification_channel(cmd, resource_group_name, grafana_name, notification_channel, api_key=api_key) +def delete_notification_channel(cmd, grafana_name, notification_channel, resource_group_name=None, + api_key_or_token=None): + data = _find_notification_channel(cmd, resource_group_name, grafana_name, notification_channel, + api_key_or_token=api_key_or_token) _send_request(cmd, resource_group_name, grafana_name, "delete", "/api/alert-notifications/" + str(data["id"]), - api_key=api_key) + api_key_or_token=api_key_or_token) -def test_notification_channel(cmd, grafana_name, notification_channel, resource_group_name=None, api_key=None): - data = _find_notification_channel(cmd, resource_group_name, grafana_name, notification_channel, api_key=api_key) +def test_notification_channel(cmd, grafana_name, notification_channel, resource_group_name=None, api_key_or_token=None): + data = _find_notification_channel(cmd, resource_group_name, grafana_name, notification_channel, + api_key_or_token=api_key_or_token) response = _send_request(cmd, resource_group_name, grafana_name, "post", "/api/alert-notifications/test", - data, api_key=api_key) + data, api_key_or_token=api_key_or_token) return response -def create_folder(cmd, grafana_name, title, resource_group_name=None, api_key=None): +def create_folder(cmd, grafana_name, title, resource_group_name=None, api_key_or_token=None): payload = { "title": title } response = _send_request(cmd, resource_group_name, grafana_name, "post", "/api/folders", payload, - api_key=api_key) + api_key_or_token=api_key_or_token) return json.loads(response.content) -def list_folders(cmd, grafana_name, resource_group_name=None, api_key=None): +def list_folders(cmd, grafana_name, resource_group_name=None, api_key_or_token=None): response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/folders", - api_key=api_key) + api_key_or_token=api_key_or_token) return json.loads(response.content) -def update_folder(cmd, grafana_name, folder, title, resource_group_name=None, api_key=None): - f = show_folder(cmd, grafana_name, folder, resource_group_name, api_key=api_key) +def update_folder(cmd, grafana_name, folder, title, resource_group_name=None, api_key_or_token=None): + f = show_folder(cmd, grafana_name, folder, resource_group_name, api_key_or_token=api_key_or_token) version = f['version'] data = { "title": title, "version": int(version) } response = _send_request(cmd, resource_group_name, grafana_name, "put", "/api/folders/" + f["uid"], data, - api_key=api_key) + api_key_or_token=api_key_or_token) return json.loads(response.content) -def show_folder(cmd, grafana_name, folder, resource_group_name=None, api_key=None): - return _find_folder(cmd, resource_group_name, grafana_name, folder, api_key=api_key) +def show_folder(cmd, grafana_name, folder, resource_group_name=None, api_key_or_token=None): + return _find_folder(cmd, resource_group_name, grafana_name, folder, api_key_or_token=api_key_or_token) -def delete_folder(cmd, grafana_name, folder, resource_group_name=None, api_key=None): +def delete_folder(cmd, grafana_name, folder, resource_group_name=None, api_key_or_token=None): data = _find_folder(cmd, resource_group_name, grafana_name, folder) _send_request(cmd, resource_group_name, grafana_name, "delete", "/api/folders/" + data['uid'], - api_key=api_key) + api_key_or_token=api_key_or_token) -def _find_folder(cmd, resource_group_name, grafana_name, folder, api_key=None): +def _find_folder(cmd, resource_group_name, grafana_name, folder, api_key_or_token=None): response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/folders/id/" + folder, - raise_for_error_status=False, api_key=api_key) + raise_for_error_status=False, api_key_or_token=api_key_or_token) if response.status_code >= 400 or not json.loads(response.content)['uid']: response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/folders/" + folder, - raise_for_error_status=False, api_key=api_key) + raise_for_error_status=False, api_key_or_token=api_key_or_token) if response.status_code >= 400: - response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/folders", api_key=api_key) + response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/folders", + api_key_or_token=api_key_or_token) if response.status_code >= 400: raise ArgumentUsageError(f"Could't find the folder '{folder}'. Ex: {response.status_code}") result = json.loads(response.content) @@ -509,7 +519,8 @@ def update_service_account(cmd, grafana_name, service_account, new_name=None, if is_disabled is not None: data["isDisabled"] = is_disabled - response = _send_request(cmd, resource_group_name, grafana_name, "patch", "/api/serviceaccounts/" + service_account_id, data) + response = _send_request(cmd, resource_group_name, grafana_name, "patch", + "/api/serviceaccounts/" + service_account_id, data) return json.loads(response.content) @@ -538,14 +549,18 @@ def _get_service_account_id(cmd, resource_group_name, grafana_name, service_acco _ = int(service_account) return service_account except ValueError: - all = list_service_accounts(cmd, grafana_name, resource_group_name) - match = next((a for a in all if a['name'].lower() == service_account.lower()), None) + accounts = list_service_accounts(cmd, grafana_name, resource_group_name) + match = next((a for a in accounts if a['name'].lower() == service_account.lower()), None) + # pylint: disable=raise-missing-from if not match: - raise ArgumentUsageError(f"Could't find the service account '{service_account}'") + raise ArgumentUsageError(f"Could't find the service account '{service_account}'") return str(match['id']) -def create_service_account_token(cmd, grafana_name, service_account, token, time_to_live=None, resource_group_name=None): +def create_service_account_token(cmd, grafana_name, service_account, token, time_to_live=None, + resource_group_name=None): + service_account_id = _get_service_account_id(cmd, resource_group_name, grafana_name, service_account) + data = { "name": token, } @@ -554,36 +569,43 @@ def create_service_account_token(cmd, grafana_name, service_account, token, time data['secondsToLive'] = _convert_duration_to_seconds(time_to_live) response = _send_request(cmd, resource_group_name, grafana_name, "post", - "/api/serviceaccounts/" + service_account + '/tokens', data) - return json.loads(response.content) + "/api/serviceaccounts/" + service_account_id + '/tokens', data) + content = json.loads(response.content) + logger.warning("You will only be able to view this token here once. Please save it in a secure place.") + return content def list_service_account_tokens(cmd, grafana_name, service_account, resource_group_name=None): + service_account_id = _get_service_account_id(cmd, resource_group_name, grafana_name, service_account) response = _send_request(cmd, resource_group_name, grafana_name, "get", - "/api/serviceaccounts/" + service_account + '/tokens') + "/api/serviceaccounts/" + service_account_id + '/tokens') return json.loads(response.content) def delete_service_account_token(cmd, grafana_name, service_account, token, resource_group_name=None): + service_account_id = _get_service_account_id(cmd, resource_group_name, grafana_name, service_account) response = _send_request(cmd, resource_group_name, grafana_name, "delete", - "/api/serviceaccounts/" + service_account + '/tokens' + '/' + token) + "/api/serviceaccounts/" + service_account_id + '/tokens' + '/' + token) return json.loads(response.content) -def get_actual_user(cmd, grafana_name, resource_group_name=None, api_key=None): - response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/user", api_key=api_key) +def get_actual_user(cmd, grafana_name, resource_group_name=None, api_key_or_token=None): + response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/user", + api_key_or_token=api_key_or_token) result = json.loads(response.content) result.pop('isGrafanaAdmin', None) return result -def list_users(cmd, grafana_name, resource_group_name=None, api_key=None): - response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/org/users", api_key=api_key) +def list_users(cmd, grafana_name, resource_group_name=None, api_key_or_token=None): + response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/org/users", + api_key_or_token=api_key_or_token) return json.loads(response.content) -def show_user(cmd, grafana_name, user, resource_group_name=None, api_key=None): - users = list_users(cmd, grafana_name, resource_group_name=resource_group_name, api_key=api_key) +def show_user(cmd, grafana_name, user, resource_group_name=None, api_key_or_token=None): + users = list_users(cmd, grafana_name, resource_group_name=resource_group_name, + api_key_or_token=api_key_or_token) match = next((u for u in users if u['name'].lower() == user.lower()), None) if match: @@ -593,7 +615,7 @@ def show_user(cmd, grafana_name, user, resource_group_name=None, api_key=None): def query_data_source(cmd, grafana_name, data_source, time_from=None, time_to=None, max_data_points=100, internal_ms=1000, query_format=None, - conditions=None, resource_group_name=None, api_key=None): + conditions=None, resource_group_name=None, api_key_or_token=None): import datetime import time from dateutil import parser @@ -611,7 +633,8 @@ def query_data_source(cmd, grafana_name, data_source, time_from=None, time_to=No time_to = right_now time_to_epoch = str(time.mktime(time_to.timetuple()) * 1000) - data_source_id = _find_data_source(cmd, resource_group_name, grafana_name, data_source, api_key=api_key)["id"] + data_source_id = _find_data_source(cmd, resource_group_name, grafana_name, data_source, + api_key_or_token=api_key_or_token)["id"] data = { "from": time_from_epoch, @@ -630,33 +653,34 @@ def query_data_source(cmd, grafana_name, data_source, time_from=None, time_to=No k, v = c.split("=", 1) data["queries"][0][k] = v - response = _send_request(cmd, resource_group_name, grafana_name, "post", "/api/ds/query", data, api_key=api_key) + response = _send_request(cmd, resource_group_name, grafana_name, "post", "/api/ds/query", data, + api_key_or_token=api_key_or_token) return json.loads(response.content) -def _find_data_source(cmd, resource_group_name, grafana_name, data_source, api_key=None): +def _find_data_source(cmd, resource_group_name, grafana_name, data_source, api_key_or_token=None): response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/datasources/name/" + data_source, - raise_for_error_status=False, api_key=api_key) + raise_for_error_status=False, api_key_or_token=api_key_or_token) if response.status_code >= 400: response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/datasources/" + data_source, - raise_for_error_status=False, api_key=api_key) + raise_for_error_status=False, api_key_or_token=api_key_or_token) if response.status_code >= 400: response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/datasources/uid/" + data_source, - raise_for_error_status=False, api_key=api_key) + raise_for_error_status=False, api_key_or_token=api_key_or_token) if response.status_code >= 400: raise ArgumentUsageError(f"Couldn't found data source {data_source}. Ex: {response.status_code}") return json.loads(response.content) -def _find_notification_channel(cmd, resource_group_name, grafana_name, notification_channel, api_key=None): +def _find_notification_channel(cmd, resource_group_name, grafana_name, notification_channel, api_key_or_token=None): response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/alert-notifications/" + notification_channel, - raise_for_error_status=False, api_key=api_key) + raise_for_error_status=False, api_key_or_token=api_key_or_token) if response.status_code >= 400: response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/alert-notifications/uid/" + notification_channel, - raise_for_error_status=False, api_key=api_key) + raise_for_error_status=False, api_key_or_token=api_key_or_token) if response.status_code >= 400: raise ArgumentUsageError( f"Couldn't found notification channel {notification_channel}. Ex: {response.status_code}") @@ -674,7 +698,7 @@ def _try_load_file_content(file_content): def _send_request(cmd, resource_group_name, grafana_name, http_method, path, body=None, raise_for_error_status=True, - api_key=None): + api_key_or_token=None): endpoint = grafana_endpoints.get(grafana_name) if not endpoint: grafana = show_grafana(cmd, grafana_name, resource_group_name) @@ -688,8 +712,8 @@ def _send_request(cmd, resource_group_name, grafana_name, http_method, path, bod amg_first_party_app = ("7f525cdc-1f08-4afa-af7c-84709d42f5d3" if "-ppe." in cmd.cli_ctx.cloud.endpoints.active_directory else "ce34e7e5-485f-4d76-964f-b3d2b16d1e4f") - if api_key: - creds = [None, api_key] + if api_key_or_token: + creds = [None, api_key_or_token] else: creds, _, _ = profile.get_raw_token(subscription=subscription, resource=amg_first_party_app) From 7586e16ac0d874d8514b4bd0b4388a86538b97fb Mon Sep 17 00:00:00 2001 From: Yugang Wang Date: Sat, 3 Dec 2022 09:54:51 -0800 Subject: [PATCH 3/8] add tests --- src/amg/azext_amg/_help.py | 50 + src/amg/azext_amg/_params.py | 13 +- src/amg/azext_amg/custom.py | 19 +- .../latest/recordings/test_amg_base.yaml | 727 ++++-- .../tests/latest/recordings/test_amg_e2e.yaml | 1315 +++++----- .../latest/recordings/test_api_key_e2e.yaml | 412 +-- .../recordings/test_service_account_e2e.yaml | 2204 +++++++++++++++++ .../tests/latest/test_amg_scenario.py | 39 + 8 files changed, 3777 insertions(+), 1002 deletions(-) create mode 100644 src/amg/azext_amg/tests/latest/recordings/test_service_account_e2e.yaml diff --git a/src/amg/azext_amg/_help.py b/src/amg/azext_amg/_help.py index 4256cce4680..2a56ba2b674 100644 --- a/src/amg/azext_amg/_help.py +++ b/src/amg/azext_amg/_help.py @@ -280,3 +280,53 @@ type: command short-summary: delete an api key. """ + +helps['grafana service-account'] = """ + type: group + short-summary: Commands to manage service accounts. +""" + +helps['grafana service-account create'] = """ + type: command + short-summary: create a new service account. +""" + +helps['grafana service-account update'] = """ + type: command + short-summary: update a service account. +""" + +helps['grafana service-account show'] = """ + type: command + short-summary: show details of a service account. +""" + +helps['grafana service-account list'] = """ + type: command + short-summary: list existing service accounts. +""" + +helps['grafana service-account delete'] = """ + type: command + short-summary: delete a service account. +""" + +helps['grafana service-account token'] = """ + type: group + short-summary: Commands to manage service account tokens. +""" + +helps['grafana service-account token create'] = """ + type: command + short-summary: create a new service account token. +""" + +helps['grafana service-account token list'] = """ + type: command + short-summary: list existing service account tokens. +""" + +helps['grafana service-account token delete'] = """ + type: command + short-summary: delete a service account token. +""" diff --git a/src/amg/azext_amg/_params.py b/src/amg/azext_amg/_params.py index a9a997528c6..4fd6e2c456a 100644 --- a/src/amg/azext_amg/_params.py +++ b/src/amg/azext_amg/_params.py @@ -13,7 +13,7 @@ def load_arguments(self, _): from ._validators import process_missing_resource_group_parameter from azext_amg.vendored_sdks.models import ZoneRedundancy grafana_name_type = CLIArgumentType(options_list="--grafana-name", - help="Name of the Azure Managed Dashboard for Grafana.", + help="Name of the Azure Managed Grafana.", id_part="name") grafana_role_type = CLIArgumentType(arg_type=get_enum_type(["Admin", "Editor", "Viewer"]), options_list=["--role", "-r"], help="Grafana role name", default="Viewer") @@ -25,7 +25,7 @@ def load_arguments(self, _): c.argument("id", help=("The identifier (id) of a dashboard/data source is an auto-incrementing " "numeric value and is only unique per Grafana install.")) c.argument("folder", help="id, uid, title which can identify a folder. CLI will search in the order of id, uid, and title, till finds a match") - c.argument("api_key_or_token", options_list=["--api-key", "--service-token", '-t'], + c.argument("api_key_or_token", options_list=["--api-key", "--token", '-t'], help="api key or service account token, a randomly generated string used to interact with Grafana endpoint; if missing, CLI will use logon user's credentials") with self.argument_context("grafana create") as c: @@ -56,6 +56,9 @@ def load_arguments(self, _): with self.argument_context("grafana dashboard import") as c: c.argument("definition", help="The complete dashboard model in json string, Grafana gallery id, a path or url to a file with such content") + with self.argument_context("grafana") as c: + c.argument("time_to_live", default="1d", help="The life duration. For example, 1d if your key is going to last fr one day. Supported units are: s,m,h,d,w,M,y") + with self.argument_context("grafana api-key") as c: c.argument("key_name", help="api key name") c.argument("role", grafana_role_type) @@ -100,3 +103,9 @@ def load_arguments(self, _): with self.argument_context("grafana service-account update") as c: c.argument("new_name", help="new name of the service account") + + with self.argument_context("grafana service-account token") as c: + c.argument("token", help="id or name which can identify a service account token") + + with self.argument_context("grafana service-account token create") as c: + c.argument("token", help="name of the new service account token") diff --git a/src/amg/azext_amg/custom.py b/src/amg/azext_amg/custom.py index 5240334e486..b676cd47f40 100644 --- a/src/amg/azext_amg/custom.py +++ b/src/amg/azext_amg/custom.py @@ -521,7 +521,7 @@ def update_service_account(cmd, grafana_name, service_account, new_name=None, response = _send_request(cmd, resource_group_name, grafana_name, "patch", "/api/serviceaccounts/" + service_account_id, data) - return json.loads(response.content) + return json.loads(response.content)['serviceaccount'] def list_service_accounts(cmd, grafana_name, resource_group_name=None): @@ -584,11 +584,26 @@ def list_service_account_tokens(cmd, grafana_name, service_account, resource_gro def delete_service_account_token(cmd, grafana_name, service_account, token, resource_group_name=None): service_account_id = _get_service_account_id(cmd, resource_group_name, grafana_name, service_account) + token_id = _get_service_account_token_id(cmd, resource_group_name, grafana_name, service_account, token) + response = _send_request(cmd, resource_group_name, grafana_name, "delete", - "/api/serviceaccounts/" + service_account_id + '/tokens' + '/' + token) + "/api/serviceaccounts/" + service_account_id + '/tokens' + '/' + token_id) return json.loads(response.content) +def _get_service_account_token_id(cmd, resource_group_name, grafana_name, service_account, token): + try: + _ = int(token) + return token + except ValueError: + accounts = list_service_account_tokens(cmd, grafana_name, service_account, resource_group_name) + match = next((a for a in accounts if a['name'].lower() == token.lower()), None) + # pylint: disable=raise-missing-from + if not match: + raise ArgumentUsageError(f"Could't find the service account token '{token}'") + return str(match['id']) + + def get_actual_user(cmd, grafana_name, resource_group_name=None, api_key_or_token=None): response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/user", api_key_or_token=api_key_or_token) diff --git a/src/amg/azext_amg/tests/latest/recordings/test_amg_base.yaml b/src/amg/azext_amg/tests/latest/recordings/test_amg_base.yaml index 11b23030e8d..2cffe08b59f 100644 --- a/src/amg/azext_amg/tests/latest/recordings/test_amg_base.yaml +++ b/src/amg/azext_amg/tests/latest/recordings/test_amg_base.yaml @@ -18,31 +18,31 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-08-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"96a728d6-98b0-46ce-8bd7-01f677f82483","createdByType":"Application","createdAt":"2022-07-29T20:30:14.2675964Z","lastModifiedBy":"96a728d6-98b0-46ce-8bd7-01f677f82483","lastModifiedByType":"Application","lastModifiedAt":"2022-07-29T20:30:14.2675964Z"},"identity":{"principalId":"a88a8fc2-c4ac-416e-86a7-c21682d26053","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-12-03T17:57:15.9785031Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T17:57:15.9785031Z"},"identity":{"principalId":"68eecfc1-0715-46dd-b195-5a962b3662cc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}' headers: api-supported-versions: - - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01 + - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1?api-version=2022-08-01 cache-control: - no-cache content-length: - - '1055' + - '1074' content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:30:15 GMT + - Sat, 03 Dec 2022 17:57:18 GMT etag: - - '"4100fb76-0000-0600-0000-62e443570000"' + - '"0000cd39-0000-0600-0000-638b8dfe0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1?api-version=2022-08-01 pragma: - no-cache request-context: @@ -72,23 +72,23 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","name":"2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2022-07-29T20:30:15.4543192Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","name":"87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2022-12-03T17:57:17.332922Z"}' headers: cache-control: - no-cache content-length: - - '508' + - '507' content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:30:45 GMT + - Sat, 03 Dec 2022 17:57:48 GMT etag: - - '"5c0006d4-0000-0600-0000-62e443570000"' + - '"0000160a-0000-0600-0000-638b8dfd0000"' expires: - '-1' pragma: @@ -118,23 +118,23 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","name":"2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2022-07-29T20:30:15.4543192Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","name":"87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2022-12-03T17:57:17.332922Z"}' headers: cache-control: - no-cache content-length: - - '508' + - '507' content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:31:15 GMT + - Sat, 03 Dec 2022 17:58:18 GMT etag: - - '"5c0006d4-0000-0600-0000-62e443570000"' + - '"0000160a-0000-0600-0000-638b8dfd0000"' expires: - '-1' pragma: @@ -164,23 +164,23 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","name":"2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2022-07-29T20:30:15.4543192Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","name":"87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2022-12-03T17:57:17.332922Z"}' headers: cache-control: - no-cache content-length: - - '508' + - '507' content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:31:45 GMT + - Sat, 03 Dec 2022 17:58:48 GMT etag: - - '"5c0006d4-0000-0600-0000-62e443570000"' + - '"0000160a-0000-0600-0000-638b8dfd0000"' expires: - '-1' pragma: @@ -210,23 +210,23 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","name":"2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2022-07-29T20:30:15.4543192Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","name":"87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2022-12-03T17:57:17.332922Z"}' headers: cache-control: - no-cache content-length: - - '508' + - '507' content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:32:16 GMT + - Sat, 03 Dec 2022 17:59:18 GMT etag: - - '"5c0006d4-0000-0600-0000-62e443570000"' + - '"0000160a-0000-0600-0000-638b8dfd0000"' expires: - '-1' pragma: @@ -256,23 +256,23 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","name":"2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2022-07-29T20:30:15.4543192Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","name":"87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2022-12-03T17:57:17.332922Z"}' headers: cache-control: - no-cache content-length: - - '508' + - '507' content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:32:46 GMT + - Sat, 03 Dec 2022 17:59:49 GMT etag: - - '"5c0006d4-0000-0600-0000-62e443570000"' + - '"0000160a-0000-0600-0000-638b8dfd0000"' expires: - '-1' pragma: @@ -302,23 +302,23 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","name":"2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2022-07-29T20:30:15.4543192Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","name":"87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2022-12-03T17:57:17.332922Z"}' headers: cache-control: - no-cache content-length: - - '508' + - '507' content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:33:16 GMT + - Sat, 03 Dec 2022 18:00:18 GMT etag: - - '"5c0006d4-0000-0600-0000-62e443570000"' + - '"0000160a-0000-0600-0000-638b8dfd0000"' expires: - '-1' pragma: @@ -348,23 +348,23 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","name":"2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2022-07-29T20:30:15.4543192Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","name":"87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2022-12-03T17:57:17.332922Z"}' headers: cache-control: - no-cache content-length: - - '508' + - '507' content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:33:45 GMT + - Sat, 03 Dec 2022 18:00:48 GMT etag: - - '"5c0006d4-0000-0600-0000-62e443570000"' + - '"0000160a-0000-0600-0000-638b8dfd0000"' expires: - '-1' pragma: @@ -394,23 +394,23 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","name":"2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2022-07-29T20:30:15.4543192Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","name":"87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2022-12-03T17:57:17.332922Z"}' headers: cache-control: - no-cache content-length: - - '508' + - '507' content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:34:15 GMT + - Sat, 03 Dec 2022 18:01:18 GMT etag: - - '"5c0006d4-0000-0600-0000-62e443570000"' + - '"0000160a-0000-0600-0000-638b8dfd0000"' expires: - '-1' pragma: @@ -440,23 +440,23 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","name":"2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2022-07-29T20:30:15.4543192Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","name":"87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2022-12-03T17:57:17.332922Z"}' headers: cache-control: - no-cache content-length: - - '508' + - '507' content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:34:45 GMT + - Sat, 03 Dec 2022 18:01:48 GMT etag: - - '"5c0006d4-0000-0600-0000-62e443570000"' + - '"0000160a-0000-0600-0000-638b8dfd0000"' expires: - '-1' pragma: @@ -486,23 +486,161 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","name":"2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Succeeded","startTime":"2022-07-29T20:30:15.4543192Z","endTime":"2022-07-29T20:34:50.7776956Z","error":{},"properties":null}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","name":"87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2022-12-03T17:57:17.332922Z"}' headers: cache-control: - no-cache content-length: - - '579' + - '507' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 18:02:18 GMT + etag: + - '"0000160a-0000-0600-0000-638b8dfd0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --tags --skip-role-assignments + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1?api-version=2022-08-01 + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","name":"87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2022-12-03T17:57:17.332922Z"}' + headers: + cache-control: + - no-cache + content-length: + - '507' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 18:02:49 GMT + etag: + - '"0000160a-0000-0600-0000-638b8dfd0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --tags --skip-role-assignments + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1?api-version=2022-08-01 + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","name":"87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2022-12-03T17:57:17.332922Z"}' + headers: + cache-control: + - no-cache + content-length: + - '507' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 18:03:19 GMT + etag: + - '"0000160a-0000-0600-0000-638b8dfd0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --tags --skip-role-assignments + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1?api-version=2022-08-01 + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","name":"87208d0d-9b87-48f3-9b87-2decbb497472*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Succeeded","startTime":"2022-12-03T17:57:17.332922Z","endTime":"2022-12-03T18:03:38.7176363Z","error":{},"properties":null}' + headers: + cache-control: + - no-cache + content-length: + - '578' content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:35:16 GMT + - Sat, 03 Dec 2022 18:03:49 GMT etag: - - '"5c0084ed-0000-0600-0000-62e4446a0000"' + - '"00001a0a-0000-0600-0000-638b8f7a0000"' expires: - '-1' pragma: @@ -532,23 +670,23 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-08-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"96a728d6-98b0-46ce-8bd7-01f677f82483","createdByType":"Application","createdAt":"2022-07-29T20:30:14.2675964Z","lastModifiedBy":"96a728d6-98b0-46ce-8bd7-01f677f82483","lastModifiedByType":"Application","lastModifiedAt":"2022-07-29T20:30:14.2675964Z"},"identity":{"principalId":"a88a8fc2-c4ac-416e-86a7-c21682d26053","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-12-03T17:57:15.9785031Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T17:57:15.9785031Z"},"identity":{"principalId":"68eecfc1-0715-46dd-b195-5a962b3662cc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.1.8.1","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}' headers: cache-control: - no-cache content-length: - - '1006' + - '1027' content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:35:17 GMT + - Sat, 03 Dec 2022 18:03:49 GMT etag: - - '"4100eb8b-0000-0600-0000-62e4446a0000"' + - '"00000a3a-0000-0600-0000-638b8f7a0000"' expires: - '-1' pragma: @@ -580,21 +718,21 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana?api-version=2022-08-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"96a728d6-98b0-46ce-8bd7-01f677f82483","createdByType":"Application","createdAt":"2022-07-29T20:30:14.2675964Z","lastModifiedBy":"96a728d6-98b0-46ce-8bd7-01f677f82483","lastModifiedByType":"Application","lastModifiedAt":"2022-07-29T20:30:14.2675964Z"},"identity":{"principalId":"a88a8fc2-c4ac-416e-86a7-c21682d26053","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-12-03T17:57:15.9785031Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T17:57:15.9785031Z"},"identity":{"principalId":"68eecfc1-0715-46dd-b195-5a962b3662cc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.1.8.1","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}]}' headers: cache-control: - no-cache content-length: - - '1018' + - '1039' content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:35:18 GMT + - Sat, 03 Dec 2022 18:03:50 GMT expires: - '-1' pragma: @@ -606,12 +744,15 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 439a3382-3601-4edb-ac92-8a73a74f568a - - 6d48934f-6fc9-45d1-b74f-70355f9a9e18 - - fb2727bc-0b57-4c56-94b0-1b03b183be85 - - 02ebe0b2-1f8c-4669-810a-f54876287dc6 - - 6f750ca0-bf90-410e-9242-b62e211a7fcd - - 97e96b02-aeb1-4973-81f2-6248b4682333 + - 3d84848d-e7cc-44c4-b646-d99b2c2756b9 + - 8faea8fc-64a6-43e3-a80a-e03ddfef3346 + - 19a1daf4-bc7d-4bb2-84ba-52851e162996 + - e9c824da-8b4c-4726-9354-4e1e4a7805f6 + - d32921bc-d9d8-4767-bd7a-bfbe5eca4141 + - bbd57052-02ca-4bdd-a5f5-5141ae0925b5 + - f0d7ecdd-0a7b-47b5-9923-d604b1696ad4 + - 77179d24-24ce-43eb-84ef-65525326753b + - 0cfb1c73-c77b-474e-8ca2-eaac5f7a1341 status: code: 200 message: OK @@ -627,21 +768,21 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Dashboard/grafana?api-version=2022-08-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"haha":"v2az"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-22T21:34:59.4237545Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"96a728d6-98b0-46ce-8bd7-01f677f82483","createdByType":"Application","createdAt":"2022-07-29T20:30:14.2675964Z","lastModifiedBy":"96a728d6-98b0-46ce-8bd7-01f677f82483","lastModifiedByType":"Application","lastModifiedAt":"2022-07-29T20:30:14.2675964Z"},"identity":{"principalId":"a88a8fc2-c4ac-416e-86a7-c21682d26053","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangw-to-delete","name":"yugangw-to-delete","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-07-20T21:39:49.9369828Z","lastModifiedBy":"96a728d6-98b0-46ce-8bd7-01f677f82483","lastModifiedByType":"Application","lastModifiedAt":"2022-07-29T20:23:15.2346511Z"},"identity":{"principalId":"a0dd0135-6681-49fa-ae8a-5b908d3ffa72","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://yugangw-to-delete-fmgyerfpg9beg2b8.eus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-01T06:13:14.848094Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"grafanaVersion":"9.1.8.1","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","provisioningState":"Succeeded","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-12-03T17:57:15.9785031Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T17:57:15.9785031Z"},"identity":{"principalId":"68eecfc1-0715-46dd-b195-5a962b3662cc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.1.8.1","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amgdfzfsnkeyp5cxky6zkgbraegsmo57rvbuv7kufqoa6bkie4qmckm2z273quu563/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-12-03T17:57:19.8480165Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T17:57:19.8480165Z"},"identity":{"principalId":"3fcb21e0-a296-453c-a37b-3d24559f92d6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.1.8.1","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}]}' headers: cache-control: - no-cache content-length: - - '3057' + - '3206' content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:35:19 GMT + - Sat, 03 Dec 2022 18:03:51 GMT expires: - '-1' pragma: @@ -653,12 +794,15 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 6372ec97-162a-41db-8069-f11cb49cf1a5 - - 5185fb3c-24f3-4f78-9e10-1948f113c3de - - 2c488df9-c729-4e2b-b0bf-6bb2664bce84 - - 9521965b-99d0-4061-b1b6-8e1a971de026 - - 2a44773a-37a7-4001-a028-f20429f4d62e - - 77d9382d-c96a-403f-855d-93501abd18b6 + - 300f2d82-922c-4033-9488-36f4c611cc9a + - ce8df470-16f7-4262-9261-5284b19b1c6d + - 8d97d8f8-0714-4aeb-acbe-4956998fcde2 + - 5f0a1ac0-01d8-4e3f-868b-8c0dd6b991e6 + - d9235fff-291d-4dad-8400-d10de0b342b2 + - faecf527-48fd-4cbe-a619-bdf6942ca502 + - 66254cfa-ffd6-439e-9c51-2f678ea1f8e6 + - 0b20d633-1e38-4aa0-a668-49c6f28f529a + - 32d042a6-6b1d-4aa2-8777-ff7fc050facc status: code: 200 message: OK @@ -676,23 +820,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-08-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"96a728d6-98b0-46ce-8bd7-01f677f82483","createdByType":"Application","createdAt":"2022-07-29T20:30:14.2675964Z","lastModifiedBy":"96a728d6-98b0-46ce-8bd7-01f677f82483","lastModifiedByType":"Application","lastModifiedAt":"2022-07-29T20:30:14.2675964Z"},"identity":{"principalId":"a88a8fc2-c4ac-416e-86a7-c21682d26053","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-12-03T17:57:15.9785031Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T17:57:15.9785031Z"},"identity":{"principalId":"68eecfc1-0715-46dd-b195-5a962b3662cc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.1.8.1","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}' headers: cache-control: - no-cache content-length: - - '1006' + - '1027' content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:35:19 GMT + - Sat, 03 Dec 2022 18:03:51 GMT etag: - - '"4100eb8b-0000-0600-0000-62e4446a0000"' + - '"00000a3a-0000-0600-0000-638b8f7a0000"' expires: - '-1' pragma: @@ -724,23 +868,23 @@ interactions: ParameterSetName: - -g -n --deterministic-outbound-ip --api-key User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-08-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"96a728d6-98b0-46ce-8bd7-01f677f82483","createdByType":"Application","createdAt":"2022-07-29T20:30:14.2675964Z","lastModifiedBy":"96a728d6-98b0-46ce-8bd7-01f677f82483","lastModifiedByType":"Application","lastModifiedAt":"2022-07-29T20:30:14.2675964Z"},"identity":{"principalId":"a88a8fc2-c4ac-416e-86a7-c21682d26053","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-12-03T17:57:15.9785031Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T17:57:15.9785031Z"},"identity":{"principalId":"68eecfc1-0715-46dd-b195-5a962b3662cc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.1.8.1","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}' headers: cache-control: - no-cache content-length: - - '1006' + - '1027' content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:35:20 GMT + - Sat, 03 Dec 2022 18:03:52 GMT etag: - - '"4100eb8b-0000-0600-0000-62e4446a0000"' + - '"00000a3a-0000-0600-0000-638b8f7a0000"' expires: - '-1' pragma: @@ -779,25 +923,25 @@ interactions: ParameterSetName: - -g -n --deterministic-outbound-ip --api-key User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-08-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"96a728d6-98b0-46ce-8bd7-01f677f82483","createdByType":"Application","createdAt":"2022-07-29T20:30:14.2675964Z","lastModifiedBy":"96a728d6-98b0-46ce-8bd7-01f677f82483","lastModifiedByType":"Application","lastModifiedAt":"2022-07-29T20:35:21.1726416Z"},"identity":{"principalId":"a88a8fc2-c4ac-416e-86a7-c21682d26053","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["20.69.42.45","20.69.42.13"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-12-03T17:57:15.9785031Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T18:03:53.3910895Z"},"identity":{"principalId":"68eecfc1-0715-46dd-b195-5a962b3662cc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.1.8.1","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["13.78.215.207","52.161.24.251"],"grafanaIntegrations":null}}' headers: api-supported-versions: - - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01 + - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview cache-control: - no-cache content-length: - - '1082' + - '1071' content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:35:22 GMT + - Sat, 03 Dec 2022 18:03:54 GMT etag: - - '"4100068e-0000-0600-0000-62e4448a0000"' + - '"00000c3a-0000-0600-0000-638b8f8a0000"' expires: - '-1' pragma: @@ -833,23 +977,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-08-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"96a728d6-98b0-46ce-8bd7-01f677f82483","createdByType":"Application","createdAt":"2022-07-29T20:30:14.2675964Z","lastModifiedBy":"96a728d6-98b0-46ce-8bd7-01f677f82483","lastModifiedByType":"Application","lastModifiedAt":"2022-07-29T20:35:21.1726416Z"},"identity":{"principalId":"a88a8fc2-c4ac-416e-86a7-c21682d26053","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["20.69.42.45","20.69.42.13"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-12-03T17:57:15.9785031Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T18:03:53.3910895Z"},"identity":{"principalId":"68eecfc1-0715-46dd-b195-5a962b3662cc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.1.8.1","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["13.78.215.207","52.161.24.251"],"grafanaIntegrations":null}}' headers: cache-control: - no-cache content-length: - - '1082' + - '1071' content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:35:22 GMT + - Sat, 03 Dec 2022 18:03:54 GMT etag: - - '"4100068e-0000-0600-0000-62e4448a0000"' + - '"00000c3a-0000-0600-0000-638b8f8a0000"' expires: - '-1' pragma: @@ -881,23 +1025,23 @@ interactions: ParameterSetName: - -g -n --deterministic-outbound-ip --api-key User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-08-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"96a728d6-98b0-46ce-8bd7-01f677f82483","createdByType":"Application","createdAt":"2022-07-29T20:30:14.2675964Z","lastModifiedBy":"96a728d6-98b0-46ce-8bd7-01f677f82483","lastModifiedByType":"Application","lastModifiedAt":"2022-07-29T20:35:21.1726416Z"},"identity":{"principalId":"a88a8fc2-c4ac-416e-86a7-c21682d26053","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["20.69.42.45","20.69.42.13"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-12-03T17:57:15.9785031Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T18:03:53.3910895Z"},"identity":{"principalId":"68eecfc1-0715-46dd-b195-5a962b3662cc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.1.8.1","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["13.78.215.207","52.161.24.251"],"grafanaIntegrations":null}}' headers: cache-control: - no-cache content-length: - - '1082' + - '1071' content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:35:22 GMT + - Sat, 03 Dec 2022 18:03:55 GMT etag: - - '"4100068e-0000-0600-0000-62e4448a0000"' + - '"00000c3a-0000-0600-0000-638b8f8a0000"' expires: - '-1' pragma: @@ -936,25 +1080,25 @@ interactions: ParameterSetName: - -g -n --deterministic-outbound-ip --api-key User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-08-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"96a728d6-98b0-46ce-8bd7-01f677f82483","createdByType":"Application","createdAt":"2022-07-29T20:30:14.2675964Z","lastModifiedBy":"96a728d6-98b0-46ce-8bd7-01f677f82483","lastModifiedByType":"Application","lastModifiedAt":"2022-07-29T20:35:24.0028Z"},"identity":{"principalId":"a88a8fc2-c4ac-416e-86a7-c21682d26053","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-12-03T17:57:15.9785031Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T18:03:56.708138Z"},"identity":{"principalId":"68eecfc1-0715-46dd-b195-5a962b3662cc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.1.8.1","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":null}}' headers: api-supported-versions: - - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01 + - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview cache-control: - no-cache content-length: - - '1056' + - '1043' content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:35:24 GMT + - Sat, 03 Dec 2022 18:03:57 GMT etag: - - '"4100348e-0000-0600-0000-62e4448c0000"' + - '"00000d3a-0000-0600-0000-638b8f8d0000"' expires: - '-1' pragma: @@ -990,23 +1134,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-08-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"96a728d6-98b0-46ce-8bd7-01f677f82483","createdByType":"Application","createdAt":"2022-07-29T20:30:14.2675964Z","lastModifiedBy":"96a728d6-98b0-46ce-8bd7-01f677f82483","lastModifiedByType":"Application","lastModifiedAt":"2022-07-29T20:35:24.0028Z"},"identity":{"principalId":"a88a8fc2-c4ac-416e-86a7-c21682d26053","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-12-03T17:57:15.9785031Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T18:03:56.708138Z"},"identity":{"principalId":"68eecfc1-0715-46dd-b195-5a962b3662cc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.1.8.1","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":null}}' headers: cache-control: - no-cache content-length: - - '1056' + - '1043' content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:35:24 GMT + - Sat, 03 Dec 2022 18:03:58 GMT etag: - - '"4100348e-0000-0600-0000-62e4448c0000"' + - '"00000d3a-0000-0600-0000-638b8f8d0000"' expires: - '-1' pragma: @@ -1038,23 +1182,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-08-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"96a728d6-98b0-46ce-8bd7-01f677f82483","createdByType":"Application","createdAt":"2022-07-29T20:30:14.2675964Z","lastModifiedBy":"96a728d6-98b0-46ce-8bd7-01f677f82483","lastModifiedByType":"Application","lastModifiedAt":"2022-07-29T20:35:24.0028Z"},"identity":{"principalId":"a88a8fc2-c4ac-416e-86a7-c21682d26053","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-12-03T17:57:15.9785031Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T18:03:56.708138Z"},"identity":{"principalId":"68eecfc1-0715-46dd-b195-5a962b3662cc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.1.8.1","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":null}}' headers: cache-control: - no-cache content-length: - - '1056' + - '1043' content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:35:26 GMT + - Sat, 03 Dec 2022 18:03:58 GMT etag: - - '"4100348e-0000-0600-0000-62e4448c0000"' + - '"00000d3a-0000-0600-0000-638b8f8d0000"' expires: - '-1' pragma: @@ -1088,7 +1232,7 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-08-01 response: @@ -1096,9 +1240,9 @@ interactions: string: 'null' headers: api-supported-versions: - - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01 + - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1?api-version=2022-08-01 cache-control: - no-cache content-length: @@ -1106,13 +1250,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:35:26 GMT + - Sat, 03 Dec 2022 18:03:59 GMT etag: - - '"41006a8e-0000-0600-0000-62e4448e0000"' + - '"00000e3a-0000-0600-0000-638b8f900000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1?api-version=2022-08-01 pragma: - no-cache request-context: @@ -1142,12 +1286,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","name":"d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2022-07-29T20:35:26.7028243Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","name":"6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2022-12-03T18:03:59.8541583Z","error":{}}' headers: cache-control: - no-cache @@ -1156,9 +1300,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:35:56 GMT + - Sat, 03 Dec 2022 18:04:29 GMT etag: - - '"5c00c7f1-0000-0600-0000-62e444930000"' + - '"0000200a-0000-0600-0000-638b8f940000"' expires: - '-1' pragma: @@ -1184,12 +1328,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","name":"d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2022-07-29T20:35:26.7028243Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","name":"6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2022-12-03T18:03:59.8541583Z","error":{}}' headers: cache-control: - no-cache @@ -1198,9 +1342,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:36:26 GMT + - Sat, 03 Dec 2022 18:04:59 GMT etag: - - '"5c00c7f1-0000-0600-0000-62e444930000"' + - '"0000200a-0000-0600-0000-638b8f940000"' expires: - '-1' pragma: @@ -1226,12 +1370,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","name":"d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2022-07-29T20:35:26.7028243Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","name":"6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2022-12-03T18:03:59.8541583Z","error":{}}' headers: cache-control: - no-cache @@ -1240,9 +1384,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:36:56 GMT + - Sat, 03 Dec 2022 18:05:30 GMT etag: - - '"5c00c7f1-0000-0600-0000-62e444930000"' + - '"0000200a-0000-0600-0000-638b8f940000"' expires: - '-1' pragma: @@ -1268,12 +1412,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","name":"d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2022-07-29T20:35:26.7028243Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","name":"6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2022-12-03T18:03:59.8541583Z","error":{}}' headers: cache-control: - no-cache @@ -1282,9 +1426,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:37:26 GMT + - Sat, 03 Dec 2022 18:06:00 GMT etag: - - '"5c00c7f1-0000-0600-0000-62e444930000"' + - '"0000200a-0000-0600-0000-638b8f940000"' expires: - '-1' pragma: @@ -1310,12 +1454,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","name":"d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2022-07-29T20:35:26.7028243Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","name":"6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2022-12-03T18:03:59.8541583Z","error":{}}' headers: cache-control: - no-cache @@ -1324,9 +1468,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:37:57 GMT + - Sat, 03 Dec 2022 18:06:30 GMT etag: - - '"5c00c7f1-0000-0600-0000-62e444930000"' + - '"0000200a-0000-0600-0000-638b8f940000"' expires: - '-1' pragma: @@ -1352,12 +1496,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","name":"d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2022-07-29T20:35:26.7028243Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","name":"6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2022-12-03T18:03:59.8541583Z","error":{}}' headers: cache-control: - no-cache @@ -1366,9 +1510,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:38:27 GMT + - Sat, 03 Dec 2022 18:07:00 GMT etag: - - '"5c00c7f1-0000-0600-0000-62e444930000"' + - '"0000200a-0000-0600-0000-638b8f940000"' expires: - '-1' pragma: @@ -1394,12 +1538,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","name":"d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2022-07-29T20:35:26.7028243Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","name":"6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2022-12-03T18:03:59.8541583Z","error":{}}' headers: cache-control: - no-cache @@ -1408,9 +1552,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:38:56 GMT + - Sat, 03 Dec 2022 18:07:30 GMT etag: - - '"5c00c7f1-0000-0600-0000-62e444930000"' + - '"0000200a-0000-0600-0000-638b8f940000"' expires: - '-1' pragma: @@ -1436,12 +1580,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","name":"d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2022-07-29T20:35:26.7028243Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","name":"6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2022-12-03T18:03:59.8541583Z","error":{}}' headers: cache-control: - no-cache @@ -1450,9 +1594,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:39:26 GMT + - Sat, 03 Dec 2022 18:08:00 GMT etag: - - '"5c00c7f1-0000-0600-0000-62e444930000"' + - '"0000200a-0000-0600-0000-638b8f940000"' expires: - '-1' pragma: @@ -1478,12 +1622,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","name":"d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2022-07-29T20:35:26.7028243Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","name":"6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2022-12-03T18:03:59.8541583Z","error":{}}' headers: cache-control: - no-cache @@ -1492,9 +1636,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:39:56 GMT + - Sat, 03 Dec 2022 18:08:30 GMT etag: - - '"5c00c7f1-0000-0600-0000-62e444930000"' + - '"0000200a-0000-0600-0000-638b8f940000"' expires: - '-1' pragma: @@ -1520,23 +1664,191 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","name":"d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Succeeded","startTime":"2022-07-29T20:35:26.7028243Z","endTime":"2022-07-29T20:40:04.600525Z","error":{},"properties":null}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","name":"6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2022-12-03T18:03:59.8541583Z","error":{}}' headers: cache-control: - no-cache content-length: - - '578' + - '519' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 18:09:00 GMT + etag: + - '"0000200a-0000-0600-0000-638b8f940000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --yes + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1?api-version=2022-08-01 + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","name":"6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2022-12-03T18:03:59.8541583Z","error":{}}' + headers: + cache-control: + - no-cache + content-length: + - '519' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 18:09:30 GMT + etag: + - '"0000200a-0000-0600-0000-638b8f940000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --yes + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1?api-version=2022-08-01 + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","name":"6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2022-12-03T18:03:59.8541583Z","error":{}}' + headers: + cache-control: + - no-cache + content-length: + - '519' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 18:10:00 GMT + etag: + - '"0000200a-0000-0600-0000-638b8f940000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --yes + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1?api-version=2022-08-01 + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","name":"6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2022-12-03T18:03:59.8541583Z","error":{}}' + headers: + cache-control: + - no-cache + content-length: + - '519' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 18:10:30 GMT + etag: + - '"0000200a-0000-0600-0000-638b8f940000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --yes + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1?api-version=2022-08-01 + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","name":"6b7205f3-3e7f-4e79-bc7b-b3f3edb5fd14*7A6FABBE53AA3917071A8D73A49EFDA815ECFA0EA363D87693232B44BEBA5CF1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Succeeded","startTime":"2022-12-03T18:03:59.8541583Z","endTime":"2022-12-03T18:10:38.0715068Z","error":{},"properties":null}' + headers: + cache-control: + - no-cache + content-length: + - '579' content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:40:27 GMT + - Sat, 03 Dec 2022 18:11:00 GMT etag: - - '"5d00f307-0000-0600-0000-62e445a40000"' + - '"0000230a-0000-0600-0000-638b911e0000"' expires: - '-1' pragma: @@ -1566,12 +1878,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.8.8 (Windows-10-10.0.22000-SP0) msrest/0.7.0 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.37.0 (MSI) + - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20%27a88a8fc2-c4ac-416e-86a7-c21682d26053%27&api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20%2768eecfc1-0715-46dd-b195-5a962b3662cc%27&api-version=2020-04-01-preview response: body: string: '{"value":[]}' @@ -1583,7 +1895,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:40:28 GMT + - Sat, 03 Dec 2022 18:11:01 GMT expires: - '-1' pragma: @@ -1613,21 +1925,21 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Dashboard/grafana?api-version=2022-08-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"haha":"v2az"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-22T21:34:59.4237545Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangw-to-delete","name":"yugangw-to-delete","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-07-20T21:39:49.9369828Z","lastModifiedBy":"96a728d6-98b0-46ce-8bd7-01f677f82483","lastModifiedByType":"Application","lastModifiedAt":"2022-07-29T20:23:15.2346511Z"},"identity":{"principalId":"a0dd0135-6681-49fa-ae8a-5b908d3ffa72","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://yugangw-to-delete-fmgyerfpg9beg2b8.eus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-01T06:13:14.848094Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"grafanaVersion":"9.1.8.1","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","provisioningState":"Succeeded","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amgdfzfsnkeyp5cxky6zkgbraegsmo57rvbuv7kufqoa6bkie4qmckm2z273quu563/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-12-03T17:57:19.8480165Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T17:57:19.8480165Z"},"identity":{"principalId":"3fcb21e0-a296-453c-a37b-3d24559f92d6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Deleting","grafanaVersion":"9.1.8.1","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}]}' headers: cache-control: - no-cache content-length: - - '2050' + - '2177' content-type: - application/json; charset=utf-8 date: - - Fri, 29 Jul 2022 20:40:28 GMT + - Sat, 03 Dec 2022 18:11:02 GMT expires: - '-1' pragma: @@ -1639,12 +1951,15 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 59413879-c758-492f-aca0-9a181095fb68 - - e75f5dee-f217-4dd8-8a80-80d37eff5ba1 - - 1249ba62-993f-48bb-8ab1-3b61e9a2cdeb - - 0e7aba2c-24bb-4564-9fd5-707bfba2ceb9 - - 0b9e8278-7d51-4adf-8329-b747fe161f35 - - 4c6aecb8-1461-477f-b32c-6dae29afb152 + - d04e3740-2a3c-47fc-bc24-babba425cc45 + - 27a88f85-54fb-4619-a4b3-5a4a1a377918 + - d611ec4d-12a7-499b-a57b-59da196e2842 + - d9ebf508-2ae8-4b46-a693-132b118c2b3e + - 91eaead3-119c-4998-9afb-0e2fbaf74072 + - deee1c54-2aad-497f-b335-621830ec86c2 + - 9a4f3879-4a0c-4bf4-b7a0-4eeff5ef80ec + - ed7c12b9-28f9-4744-844f-f4169664cd0d + - ad06b888-af33-4662-b845-8225457497ea status: code: 200 message: OK diff --git a/src/amg/azext_amg/tests/latest/recordings/test_amg_e2e.yaml b/src/amg/azext_amg/tests/latest/recordings/test_amg_e2e.yaml index 6f2e5fe2559..426a7f5ece9 100644 --- a/src/amg/azext_amg/tests/latest/recordings/test_amg_e2e.yaml +++ b/src/amg/azext_amg/tests/latest/recordings/test_amg_e2e.yaml @@ -18,31 +18,31 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-08-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-08-06T04:50:44.9413885Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-06T04:50:44.9413885Z"},"identity":{"principalId":"c977fab6-1d15-477a-b53c-14dc093cae36","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-12-03T17:57:19.8480165Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T17:57:19.8480165Z"},"identity":{"principalId":"3fcb21e0-a296-453c-a37b-3d24559f92d6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}' headers: api-supported-versions: - - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01 + - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62?api-version=2022-08-01 cache-control: - no-cache content-length: - - '1000' + - '1063' content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 04:50:48 GMT + - Sat, 03 Dec 2022 17:57:22 GMT etag: - - '"0700fe99-0000-0d00-0000-62edf3270000"' + - '"7e02ceb8-0000-0d00-0000-638b8e020000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62?api-version=2022-08-01 pragma: - no-cache request-context: @@ -72,23 +72,23 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","name":"def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-08-06T04:50:46.93844Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","name":"e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-12-03T17:57:22.0752704Z"}' headers: cache-control: - no-cache content-length: - - '502' + - '504' content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 04:51:18 GMT + - Sat, 03 Dec 2022 17:57:53 GMT etag: - - '"7a00a28e-0000-0d00-0000-62edf3270000"' + - '"90031f22-0000-0d00-0000-638b8e020000"' expires: - '-1' pragma: @@ -118,23 +118,23 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","name":"def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-08-06T04:50:46.93844Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","name":"e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-12-03T17:57:22.0752704Z"}' headers: cache-control: - no-cache content-length: - - '502' + - '504' content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 04:51:49 GMT + - Sat, 03 Dec 2022 17:58:23 GMT etag: - - '"7a00a28e-0000-0d00-0000-62edf3270000"' + - '"90031f22-0000-0d00-0000-638b8e020000"' expires: - '-1' pragma: @@ -164,23 +164,23 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","name":"def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-08-06T04:50:46.93844Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","name":"e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-12-03T17:57:22.0752704Z"}' headers: cache-control: - no-cache content-length: - - '502' + - '504' content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 04:52:19 GMT + - Sat, 03 Dec 2022 17:58:53 GMT etag: - - '"7a00a28e-0000-0d00-0000-62edf3270000"' + - '"90031f22-0000-0d00-0000-638b8e020000"' expires: - '-1' pragma: @@ -210,23 +210,23 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","name":"def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-08-06T04:50:46.93844Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","name":"e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-12-03T17:57:22.0752704Z"}' headers: cache-control: - no-cache content-length: - - '502' + - '504' content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 04:52:49 GMT + - Sat, 03 Dec 2022 17:59:24 GMT etag: - - '"7a00a28e-0000-0d00-0000-62edf3270000"' + - '"90031f22-0000-0d00-0000-638b8e020000"' expires: - '-1' pragma: @@ -256,23 +256,23 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","name":"def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-08-06T04:50:46.93844Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","name":"e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-12-03T17:57:22.0752704Z"}' headers: cache-control: - no-cache content-length: - - '502' + - '504' content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 04:53:19 GMT + - Sat, 03 Dec 2022 17:59:54 GMT etag: - - '"7a00a28e-0000-0d00-0000-62edf3270000"' + - '"90031f22-0000-0d00-0000-638b8e020000"' expires: - '-1' pragma: @@ -302,23 +302,23 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","name":"def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-08-06T04:50:46.93844Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","name":"e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-12-03T17:57:22.0752704Z"}' headers: cache-control: - no-cache content-length: - - '502' + - '504' content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 04:53:49 GMT + - Sat, 03 Dec 2022 18:00:24 GMT etag: - - '"7a00a28e-0000-0d00-0000-62edf3270000"' + - '"90031f22-0000-0d00-0000-638b8e020000"' expires: - '-1' pragma: @@ -348,23 +348,23 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","name":"def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-08-06T04:50:46.93844Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","name":"e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-12-03T17:57:22.0752704Z"}' headers: cache-control: - no-cache content-length: - - '502' + - '504' content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 04:54:19 GMT + - Sat, 03 Dec 2022 18:00:54 GMT etag: - - '"7a00a28e-0000-0d00-0000-62edf3270000"' + - '"90031f22-0000-0d00-0000-638b8e020000"' expires: - '-1' pragma: @@ -394,23 +394,23 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","name":"def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-08-06T04:50:46.93844Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","name":"e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-12-03T17:57:22.0752704Z"}' headers: cache-control: - no-cache content-length: - - '502' + - '504' content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 04:54:49 GMT + - Sat, 03 Dec 2022 18:01:24 GMT etag: - - '"7a00a28e-0000-0d00-0000-62edf3270000"' + - '"90031f22-0000-0d00-0000-638b8e020000"' expires: - '-1' pragma: @@ -440,23 +440,23 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","name":"def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Succeeded","startTime":"2022-08-06T04:50:46.93844Z","endTime":"2022-08-06T04:55:06.5566598Z","error":{},"properties":null}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","name":"e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-12-03T17:57:22.0752704Z"}' headers: cache-control: - no-cache content-length: - - '573' + - '504' content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 04:55:19 GMT + - Sat, 03 Dec 2022 18:01:54 GMT etag: - - '"7a009798-0000-0d00-0000-62edf42a0000"' + - '"90031f22-0000-0d00-0000-638b8e020000"' expires: - '-1' pragma: @@ -486,23 +486,207 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62?api-version=2022-08-01 + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","name":"e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-12-03T17:57:22.0752704Z"}' + headers: + cache-control: + - no-cache + content-length: + - '504' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 18:02:25 GMT + etag: + - '"90031f22-0000-0d00-0000-638b8e020000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --tags + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62?api-version=2022-08-01 + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","name":"e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-12-03T17:57:22.0752704Z"}' + headers: + cache-control: + - no-cache + content-length: + - '504' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 18:02:55 GMT + etag: + - '"90031f22-0000-0d00-0000-638b8e020000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --tags + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62?api-version=2022-08-01 + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","name":"e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-12-03T17:57:22.0752704Z"}' + headers: + cache-control: + - no-cache + content-length: + - '504' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 18:03:25 GMT + etag: + - '"90031f22-0000-0d00-0000-638b8e020000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --tags + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62?api-version=2022-08-01 + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","name":"e8bd86af-1f93-4ef9-bb29-4821848fca7b*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Succeeded","startTime":"2022-12-03T17:57:22.0752704Z","endTime":"2022-12-03T18:03:38.5110622Z","error":{},"properties":null}' + headers: + cache-control: + - no-cache + content-length: + - '575' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 18:03:55 GMT + etag: + - '"90035522-0000-0d00-0000-638b8f7a0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --tags + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-08-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-08-06T04:50:44.9413885Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-06T04:50:44.9413885Z"},"identity":{"principalId":"c977fab6-1d15-477a-b53c-14dc093cae36","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-12-03T17:57:19.8480165Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T17:57:19.8480165Z"},"identity":{"principalId":"3fcb21e0-a296-453c-a37b-3d24559f92d6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.1.8.1","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}' headers: cache-control: - no-cache content-length: - - '951' + - '1016' content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 04:55:20 GMT + - Sat, 03 Dec 2022 18:03:56 GMT etag: - - '"07003b9b-0000-0d00-0000-62edf42a0000"' + - '"7e0238ba-0000-0d00-0000-638b8f7a0000"' expires: - '-1' pragma: @@ -530,7 +714,7 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.8 (Windows-10-10.0.22000-SP0) msrest/0.7.0 msrest_azure/0.6.4 azure-graphrbac/0.60.0 + - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-graphrbac/0.60.0 Azure-SDK-For-Python accept-language: - en-US @@ -538,10 +722,10 @@ interactions: uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/me?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"a30db067-cde1-49be-95bb-9619a8cc8617","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[{"disabledPlans":["b76fb638-6ba6-402a-b9f9-83d28acb3d86","cd31b152-6326-4d1b-ae1b-997b625182e6","a413a9ff-720c-4822-98ef-2f37c2a21f4c","a6520331-d7d4-4276-95f5-15c0933bc757","ded3d325-1bdc-453e-8432-5bac26d7a014","afa73018-811e-46e9-988f-f75d2b1b8430","b21a6b06-1988-436e-a07b-51ec6d9f52ad","531ee2f8-b1cb-453b-9c21-d2180d014ca5","bf28f719-7844-4079-9c78-c1307898e192","28b0fa46-c39a-4188-89e2-58e979a6b014","199a5c09-e0ca-4e37-8f7c-b05d533e1ea2","65cc641f-cccd-4643-97e0-a17e3045e541","e26c2fcc-ab91-4a61-b35c-03cdc8dddf66","46129a58-a698-46f0-aa5b-17f6586297d9","6db1f1db-2b46-403f-be40-e39395f08dbb","6dc145d6-95dd-4191-b9c3-185575ee6f6b","41fcdd7d-4733-4863-9cf4-c65b83ce2df4","c4801e8a-cb58-4c35-aca6-f2dcc106f287","0898bdbb-73b0-471a-81e5-20f1fe4dd66e","617b097b-4b93-4ede-83de-5f075bb5fb2f","33c4f319-9bdd-48d6-9c4d-410b750a4a5a","4828c8ec-dc2e-4779-b502-87ac9ce28ab7","3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"],"skuId":"c7df2760-2c81-4ef7-b578-5b5392b571df"},{"disabledPlans":["b622badb-1b45-48d5-920f-4b27a2c0996c"],"skuId":"3d957427-ecdc-4df2-aacd-01cc9d519da8"},{"disabledPlans":[],"skuId":"85aae730-b3d1-4f99-bb28-c9f81b05137c"},{"disabledPlans":[],"skuId":"9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"f30db892-07e9-47e9-837c-80727f46fd3d"},{"disabledPlans":[],"skuId":"34715a50-7d92-426f-99e9-f815e0ae1de5"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":[],"skuId":"488ba24a-39a9-4473-8ee5-19291e71b002"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"disabledPlans":["0b03f40b-c404-40c3-8651-2aceb74365fa","b650d915-9886-424b-a08d-633cede56f57","e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72","fe71d6c3-a2ea-4499-9778-da042bf08063","fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"],"skuId":"ea126fc5-a19e-42e2-a731-da9d437bffcf"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"}],"assignedPlans":[{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WindowsUpdateforBusinessCloudExtensions","servicePlanId":"7bf960f6-2cd9-443a-8046-5dbff9558365"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"18fa3aba-b085-4105-87d7-55617b8585e6"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ERP","servicePlanId":"69f07c66-bee4-4222-b051-195095efee5b"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"0a05d977-a21a-45b2-91ce-61c240dbafa2"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"7e6d7d78-73de-46ba-83b1-6d25117334ba"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WorkplaceAnalytics","servicePlanId":"f477b0f0-3bb1-4890-940c-40fcee6ce05f"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"f3d5636e-ddc2-41bf-bba6-ca6fadece269"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftPrint","servicePlanId":"795f6fe0-cc4d-4773-b050-5dde4dc704c9"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftFormsProTest","servicePlanId":"97f29a83-1a20-44ff-bf48-5e4ad11f3e51"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"fe47a034-ab6d-4cb4-bdb4-9551354b177e"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"2d589a15-b171-4e61-9b5f-31d15eeb2872"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"59231cdf-b40d-4534-a93e-14d0cd31d27e"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b622badb-1b45-48d5-920f-4b27a2c0996c"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2021-04-15T15:12:57Z","capabilityStatus":"Deleted","service":"MIPExchangeSolutions","servicePlanId":"cd31b152-6326-4d1b-ae1b-997b625182e6"},{"assignedTimestamp":"2020-12-22T01:12:21Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"2f442157-a11c-46b9-ae5b-6e39ff4e5849"},{"assignedTimestamp":"2020-11-03T16:30:18Z","capabilityStatus":"Deleted","service":"M365CommunicationCompliance","servicePlanId":"a413a9ff-720c-4822-98ef-2f37c2a21f4c"},{"assignedTimestamp":"2020-08-14T15:32:15Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2019-11-04T20:01:59Z","capabilityStatus":"Enabled","service":"WhiteboardServices","servicePlanId":"4a51bca5-1eff-43f5-878c-177680f191af"},{"assignedTimestamp":"2019-10-14T20:43:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"5136a095-5cf0-4aff-bec3-e84448b38ea5"},{"assignedTimestamp":"2019-10-14T20:43:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb0351d-3b08-4503-993d-383af8de41e3"},{"assignedTimestamp":"2019-03-27T23:17:23Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"50e68c76-46c6-4674-81f9-75456511b170"},{"assignedTimestamp":"2019-03-27T23:17:23Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"17ab22cd-a0b3-4536-910a-cb6eb12696c0"},{"assignedTimestamp":"2018-11-30T00:32:45Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"4828c8ec-dc2e-4779-b502-87ac9ce28ab7"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"5a10155d-f5c1-411a-a8ec-e99aae125390"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"159f4cd6-e380-449f-a816-af1a9ef76344"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"2125cfd7-2110-4567-83c4-c1cd5275163d"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"c4048e79-4474-4c74-ba9b-c31ff225e511"},{"assignedTimestamp":"2018-03-20T02:14:40Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"acffdce6-c30f-4dc2-81c0-372e33c515ec"},{"assignedTimestamp":"2018-01-09T10:35:29Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2017-12-31T03:27:36Z","capabilityStatus":"Deleted","service":"Adallom","servicePlanId":"932ad362-64a8-4783-9106-97849a1a30b9"},{"assignedTimestamp":"2017-12-17T18:29:20Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"ProcessSimple","servicePlanId":"76846ad7-7776-4c40-a281-a386362dd1b9"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"PowerAppsService","servicePlanId":"c68f8d98-5534-41c8-bf36-22fa496fa792"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"9e700747-8b1d-45e5-ab8d-ef187ceec156"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"2789c901-c14e-48ab-a76a-be334d9d793a"},{"assignedTimestamp":"2017-07-06T19:19:57Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2017-06-12T08:23:48Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2017-05-12T23:33:35Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"8e0c0a52-6a6c-4d40-8370-dd62790dcd70"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Deleted","service":"AzureAnalysis","servicePlanId":"2049e525-b859-401b-b2a0-e0a31c4b1fe4"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2016-12-19T03:16:33Z","capabilityStatus":"Deleted","service":"PowerBI","servicePlanId":"fc0a60aa-feee-4746-a0e3-aecfe81a38dd"},{"assignedTimestamp":"2016-11-18T18:51:08Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2016-11-18T18:51:08Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2012-10-10T07:21:11Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"},{"assignedTimestamp":"2015-07-30T06:17:13Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"27216c54-caf8-4d0d-97e2-517afb5c08f6"}],"city":"REDMOND","companyName":"Microsoft","consentProvidedForMinor":null,"country":null,"createdDateTime":null,"creationType":null,"department":"Azure + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"a30db067-cde1-49be-95bb-9619a8cc8617","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[{"disabledPlans":[],"skuId":"b30411f5-fea1-4a59-9ad9-3db7c7ead579"},{"disabledPlans":[],"skuId":"4a51bf65-409c-4a91-b845-1121b571cc9d"},{"disabledPlans":["c815c93d-0759-4bb8-b857-bc921a71be83","7162bd38-edae-4022-83a7-c5837f951759","b622badb-1b45-48d5-920f-4b27a2c0996c","b74d57b2-58e9-484a-9731-aeccbba954f0"],"skuId":"61902246-d7cb-453e-85cd-53ee28eec138"},{"disabledPlans":["b76fb638-6ba6-402a-b9f9-83d28acb3d86","cd31b152-6326-4d1b-ae1b-997b625182e6","a413a9ff-720c-4822-98ef-2f37c2a21f4c","a6520331-d7d4-4276-95f5-15c0933bc757","ded3d325-1bdc-453e-8432-5bac26d7a014","afa73018-811e-46e9-988f-f75d2b1b8430","b21a6b06-1988-436e-a07b-51ec6d9f52ad","531ee2f8-b1cb-453b-9c21-d2180d014ca5","bf28f719-7844-4079-9c78-c1307898e192","28b0fa46-c39a-4188-89e2-58e979a6b014","199a5c09-e0ca-4e37-8f7c-b05d533e1ea2","65cc641f-cccd-4643-97e0-a17e3045e541","e26c2fcc-ab91-4a61-b35c-03cdc8dddf66","46129a58-a698-46f0-aa5b-17f6586297d9","6db1f1db-2b46-403f-be40-e39395f08dbb","6dc145d6-95dd-4191-b9c3-185575ee6f6b","41fcdd7d-4733-4863-9cf4-c65b83ce2df4","c4801e8a-cb58-4c35-aca6-f2dcc106f287","0898bdbb-73b0-471a-81e5-20f1fe4dd66e","617b097b-4b93-4ede-83de-5f075bb5fb2f","33c4f319-9bdd-48d6-9c4d-410b750a4a5a","4828c8ec-dc2e-4779-b502-87ac9ce28ab7","3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"],"skuId":"c7df2760-2c81-4ef7-b578-5b5392b571df"},{"disabledPlans":["b622badb-1b45-48d5-920f-4b27a2c0996c"],"skuId":"3d957427-ecdc-4df2-aacd-01cc9d519da8"},{"disabledPlans":[],"skuId":"85aae730-b3d1-4f99-bb28-c9f81b05137c"},{"disabledPlans":[],"skuId":"9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"f30db892-07e9-47e9-837c-80727f46fd3d"},{"disabledPlans":[],"skuId":"34715a50-7d92-426f-99e9-f815e0ae1de5"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":[],"skuId":"488ba24a-39a9-4473-8ee5-19291e71b002"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"disabledPlans":["0b03f40b-c404-40c3-8651-2aceb74365fa","b650d915-9886-424b-a08d-633cede56f57","e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72","fe71d6c3-a2ea-4499-9778-da042bf08063","fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"],"skuId":"ea126fc5-a19e-42e2-a731-da9d437bffcf"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"}],"assignedPlans":[{"assignedTimestamp":"2022-11-23T02:23:51Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2022-11-23T02:23:51Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2022-11-23T02:23:51Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2022-11-23T02:23:51Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2022-11-23T02:23:51Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2022-11-23T02:23:51Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2022-11-23T02:23:51Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2022-11-23T02:23:51Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b622badb-1b45-48d5-920f-4b27a2c0996c"},{"assignedTimestamp":"2022-11-23T02:23:51Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"6ea4c1ef-c259-46df-bce2-943342cd3cb2"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"74d93933-6f22-436e-9441-66d205435abb"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"91f50f7b-2204-4803-acac-5cf5668b8b39"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"dc789ed8-0170-4b65-a415-eb77d5bb350a"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"ea2cf03b-ac60-46ae-9c1d-eeaeb63cec86"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"c5002c70-f725-4367-b409-f0eff4fee6c0"},{"assignedTimestamp":"2022-11-09T23:14:02Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"60bf28f9-2b70-4522-96f7-335f5e06c941"},{"assignedTimestamp":"2022-08-07T02:18:34Z","capabilityStatus":"Enabled","service":"Viva-Goals","servicePlanId":"b44c6eaf-5c9f-478c-8f16-8cea26353bfb"},{"assignedTimestamp":"2022-08-07T02:18:34Z","capabilityStatus":"Enabled","service":"Modern-Workplace-Core-ITaas","servicePlanId":"9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WindowsUpdateforBusinessCloudExtensions","servicePlanId":"7bf960f6-2cd9-443a-8046-5dbff9558365"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"18fa3aba-b085-4105-87d7-55617b8585e6"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ERP","servicePlanId":"69f07c66-bee4-4222-b051-195095efee5b"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"0a05d977-a21a-45b2-91ce-61c240dbafa2"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"7e6d7d78-73de-46ba-83b1-6d25117334ba"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WorkplaceAnalytics","servicePlanId":"f477b0f0-3bb1-4890-940c-40fcee6ce05f"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"f3d5636e-ddc2-41bf-bba6-ca6fadece269"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftPrint","servicePlanId":"795f6fe0-cc4d-4773-b050-5dde4dc704c9"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftFormsProTest","servicePlanId":"97f29a83-1a20-44ff-bf48-5e4ad11f3e51"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"fe47a034-ab6d-4cb4-bdb4-9551354b177e"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"2d589a15-b171-4e61-9b5f-31d15eeb2872"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"59231cdf-b40d-4534-a93e-14d0cd31d27e"},{"assignedTimestamp":"2021-04-15T15:12:57Z","capabilityStatus":"Deleted","service":"MIPExchangeSolutions","servicePlanId":"cd31b152-6326-4d1b-ae1b-997b625182e6"},{"assignedTimestamp":"2020-12-22T01:12:21Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"2f442157-a11c-46b9-ae5b-6e39ff4e5849"},{"assignedTimestamp":"2020-11-03T16:30:18Z","capabilityStatus":"Deleted","service":"M365CommunicationCompliance","servicePlanId":"a413a9ff-720c-4822-98ef-2f37c2a21f4c"},{"assignedTimestamp":"2020-08-14T15:32:15Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2019-11-04T20:01:59Z","capabilityStatus":"Enabled","service":"WhiteboardServices","servicePlanId":"4a51bca5-1eff-43f5-878c-177680f191af"},{"assignedTimestamp":"2019-10-14T20:43:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"5136a095-5cf0-4aff-bec3-e84448b38ea5"},{"assignedTimestamp":"2019-10-14T20:43:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb0351d-3b08-4503-993d-383af8de41e3"},{"assignedTimestamp":"2019-03-27T23:17:23Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"50e68c76-46c6-4674-81f9-75456511b170"},{"assignedTimestamp":"2019-03-27T23:17:23Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"17ab22cd-a0b3-4536-910a-cb6eb12696c0"},{"assignedTimestamp":"2018-11-30T00:32:45Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"4828c8ec-dc2e-4779-b502-87ac9ce28ab7"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"5a10155d-f5c1-411a-a8ec-e99aae125390"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"159f4cd6-e380-449f-a816-af1a9ef76344"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"2125cfd7-2110-4567-83c4-c1cd5275163d"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"c4048e79-4474-4c74-ba9b-c31ff225e511"},{"assignedTimestamp":"2018-03-20T02:14:40Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"acffdce6-c30f-4dc2-81c0-372e33c515ec"},{"assignedTimestamp":"2018-01-09T10:35:29Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2017-12-31T03:27:36Z","capabilityStatus":"Deleted","service":"Adallom","servicePlanId":"932ad362-64a8-4783-9106-97849a1a30b9"},{"assignedTimestamp":"2017-12-17T18:29:20Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"ProcessSimple","servicePlanId":"76846ad7-7776-4c40-a281-a386362dd1b9"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"PowerAppsService","servicePlanId":"c68f8d98-5534-41c8-bf36-22fa496fa792"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"9e700747-8b1d-45e5-ab8d-ef187ceec156"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"2789c901-c14e-48ab-a76a-be334d9d793a"},{"assignedTimestamp":"2017-07-06T19:19:57Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2017-06-12T08:23:48Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2017-05-12T23:33:35Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"8e0c0a52-6a6c-4d40-8370-dd62790dcd70"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Deleted","service":"AzureAnalysis","servicePlanId":"2049e525-b859-401b-b2a0-e0a31c4b1fe4"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2016-12-19T03:16:33Z","capabilityStatus":"Deleted","service":"PowerBI","servicePlanId":"fc0a60aa-feee-4746-a0e3-aecfe81a38dd"},{"assignedTimestamp":"2016-11-18T18:51:08Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2016-11-18T18:51:08Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2012-10-10T07:21:11Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"},{"assignedTimestamp":"2015-07-30T06:17:13Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"27216c54-caf8-4d0d-97e2-517afb5c08f6"}],"city":"REDMOND","companyName":"Microsoft","consentProvidedForMinor":null,"country":null,"createdDateTime":null,"creationType":null,"department":"Azure Dev Exp","dirSyncEnabled":true,"displayName":"Yugang Wang","employeeId":null,"facsimileTelephoneNumber":null,"givenName":"Yugang","immutableId":"138058","isCompromised":null,"jobTitle":"PRINCIPAL - SWE MGR","lastDirSyncTime":"2022-07-30T02:00:31Z","legalAgeGroupClassification":null,"mail":"example@example.com","mailNickname":"yugangw","mobile":null,"onPremisesDistinguishedName":"CN=Yugang - Wang,OU=MSE,OU=Users,OU=CoreIdentity,DC=redmond,DC=corp,DC=microsoft,DC=com","onPremisesSecurityIdentifier":"S-1-5-21-2127521184-1604012920-1887927527-415191","otherMails":[],"passwordPolicies":"DisablePasswordExpiration","passwordProfile":null,"physicalDeliveryOfficeName":"18/3700FL","postalCode":null,"preferredLanguage":null,"provisionedPlans":[{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"Netbreeze"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"}],"provisioningErrors":[],"proxyAddresses":["X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yugangw","X500:/o=SDF/ou=Exchange + SWE MANAGER","lastDirSyncTime":"2022-09-29T00:42:51Z","legalAgeGroupClassification":null,"mail":"example@example.com","mailNickname":"yugangw","mobile":null,"onPremisesDistinguishedName":"CN=Yugang + Wang,OU=MSE,OU=Users,OU=CoreIdentity,DC=redmond,DC=corp,DC=microsoft,DC=com","onPremisesSecurityIdentifier":"S-1-5-21-2127521184-1604012920-1887927527-415191","otherMails":[],"passwordPolicies":"DisablePasswordExpiration","passwordProfile":null,"physicalDeliveryOfficeName":"18/3700FL","postalCode":null,"preferredLanguage":null,"provisionedPlans":[{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"Netbreeze"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"}],"provisioningErrors":[],"proxyAddresses":["X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yugangw","X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yugang Wang (Volt)e3d6fb0c","X500:/o=microsoft/ou=northamerica/cn=Recipients/cn=572513","X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yugangw","X500:/o=microsoft/ou=External @@ -563,25 +747,25 @@ interactions: cache-control: - no-cache content-length: - - '23104' + - '24836' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Sat, 06 Aug 2022 04:55:21 GMT + - Sat, 03 Dec 2022 18:03:57 GMT duration: - - '4106078' + - '1541093' expires: - '-1' ocp-aad-diagnostics-server-name: - - 1zZD+QG4TfLMztBergYr4rMwS+maxuQmrhImOucvvj8= + - /gOF437Hmda72mglZqa21Wk3NmHUXajt44ZBZOm7aK4= ocp-aad-session-key: - - S9bIogM3Htg_Afs3YTlxUjjG_-prheKRZ-3-PFg1Uzt-olTg3BC3FVD26cmAMHXRod4xPxFqyTWQGce9q1BiKzIv0042mnxkZXgU342Wgwlv_7h6257ntdf0uGkv9JTS.utE86Uk2tZepmgIKRHQbm1RvDeBQsBR5alD2TRBJ6D8 + - CQr65m0gLAofBmH9Splt1tq3q_rjwYnAjYfT1gw0MnjIZQsyJPsSyflVN-kSbzqjsdxUaoGKgfR1qYS6KKurPU9MndSQDb19LOqOXVOeruIHfdshuzJNJCXGDMZQA8bz.AZuygfd-0xLA2XeKQQ6pwBkcVfjYF86x80xfAfntfkc pragma: - no-cache request-id: - - 4e80ce01-7f96-4014-ac40-cee025174ec9 + - cbe3bf02-b5b4-4f2f-953e-5f95b5d42983 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -609,8 +793,8 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - python/3.8.8 (Windows-10-10.0.22000-SP0) msrest/0.7.0 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.39.0 (MSI) + - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) accept-language: - en-US method: GET @@ -627,7 +811,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 04:55:22 GMT + - Sat, 03 Dec 2022 18:03:57 GMT expires: - '-1' pragma: @@ -664,15 +848,15 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - python/3.8.8 (Windows-10-10.0.22000-SP0) msrest/0.7.0 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.39.0 (MSI) + - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","condition":null,"conditionVersion":null,"createdOn":"2022-08-06T04:55:25.1679090Z","updatedOn":"2022-08-06T04:55:25.5116717Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","condition":null,"conditionVersion":null,"createdOn":"2022-12-03T18:04:00.0719685Z","updatedOn":"2022-12-03T18:04:00.5563548Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -681,7 +865,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 04:55:29 GMT + - Sat, 03 Dec 2022 18:04:04 GMT expires: - '-1' pragma: @@ -711,8 +895,8 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - python/3.8.8 (Windows-10-10.0.22000-SP0) msrest/0.7.0 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.39.0 (MSI) + - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) accept-language: - en-US method: GET @@ -720,16 +904,16 @@ interactions: response: body: string: '{"value":[{"properties":{"roleName":"Monitoring Reader","type":"BuiltInRole","description":"Can - read all monitoring data.","assignableScopes":["/"],"permissions":[{"actions":["*/read","Microsoft.OperationalInsights/workspaces/search/action","Microsoft.Support/*"],"notActions":[],"dataActions":["Microsoft.Monitor/accounts/data/metrics/read"],"notDataActions":[]}],"createdOn":"2016-09-21T19:19:52.4939376Z","updatedOn":"2022-07-07T00:23:17.8373589Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","type":"Microsoft.Authorization/roleDefinitions","name":"43d0d8ad-25c7-4714-9337-8ba259a9fe05"}]}' + read all monitoring data.","assignableScopes":["/"],"permissions":[{"actions":["*/read","Microsoft.OperationalInsights/workspaces/search/action","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2016-09-21T19:19:52.4939376Z","updatedOn":"2022-09-06T15:18:41.7429165Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","type":"Microsoft.Authorization/roleDefinitions","name":"43d0d8ad-25c7-4714-9337-8ba259a9fe05"}]}' headers: cache-control: - no-cache content-length: - - '729' + - '683' content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 04:55:29 GMT + - Sat, 03 Dec 2022 18:04:04 GMT expires: - '-1' pragma: @@ -749,7 +933,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05", - "principalId": "c977fab6-1d15-477a-b53c-14dc093cae36"}}' + "principalId": "3fcb21e0-a296-453c-a37b-3d24559f92d6"}}' headers: Accept: - application/json @@ -766,15 +950,15 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - python/3.8.8 (Windows-10-10.0.22000-SP0) msrest/0.7.0 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.39.0 (MSI) + - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"c977fab6-1d15-477a-b53c-14dc093cae36","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-06T04:55:30.5535438Z","updatedOn":"2022-08-06T04:55:30.8817273Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"3fcb21e0-a296-453c-a37b-3d24559f92d6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-03T18:04:04.9732371Z","updatedOn":"2022-12-03T18:04:05.3951131Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' headers: cache-control: - no-cache @@ -783,7 +967,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 04:55:32 GMT + - Sat, 03 Dec 2022 18:04:06 GMT expires: - '-1' pragma: @@ -813,21 +997,21 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana?api-version=2022-08-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-08-06T04:50:44.9413885Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-06T04:50:44.9413885Z"},"identity":{"principalId":"c977fab6-1d15-477a-b53c-14dc093cae36","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-12-03T17:57:19.8480165Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T17:57:19.8480165Z"},"identity":{"principalId":"3fcb21e0-a296-453c-a37b-3d24559f92d6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.1.8.1","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}]}' headers: cache-control: - no-cache content-length: - - '963' + - '1028' content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 04:55:33 GMT + - Sat, 03 Dec 2022 18:04:08 GMT expires: - '-1' pragma: @@ -839,12 +1023,15 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - e4fc81d5-204c-4366-80f6-07c20cc600e9 - - 9157d821-ef8f-462d-a4de-2dac0b3dd12e - - 648f87df-3226-4fc3-8f7a-e74f5bda84f3 - - b1f21cb7-3f5b-47ff-8976-11e7681e8d58 - - ab398cb5-63d9-48f4-aabe-e4ee46b64926 - - d0e8ae42-42a7-4c26-be0b-2bc12a4d63af + - d6f3384f-1134-441a-883d-193529ed8393 + - 36ce4ce3-18b1-43a0-8cd1-74dbafba39ae + - 3726d68a-f392-4237-9c4f-37b12f2bfb46 + - da46a09e-16a2-424d-8449-7aadbcaa7ea7 + - 42f9bf6b-f27d-41ef-8c04-5fccabf33b3a + - 1f115185-b7bb-4133-a3ce-5dd3d8762a2d + - 365ed4a5-1b54-440f-80b2-bba2e89c1660 + - 148fa6b9-2eb1-4fdc-9ba6-884d6edda896 + - 2bf9971a-c4d5-4db3-bdbf-eee65a991f62 status: code: 200 message: OK @@ -860,21 +1047,21 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Dashboard/grafana?api-version=2022-08-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-08-06T04:50:44.9413885Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-06T04:50:44.9413885Z"},"identity":{"principalId":"c977fab6-1d15-477a-b53c-14dc093cae36","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/peqitest/providers/Microsoft.Dashboard/grafana/peqitest0","name":"peqitest0","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"peqi@microsoft.com","createdByType":"User","createdAt":"2022-06-22T20:08:33.7472212Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2022-07-22T23:22:52.1164326Z"},"identity":{"principalId":"54deaee2-407c-4aeb-9793-57f7e325ca00","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://peqitest0-bwh5d8f4hybnd6ad.eus.grafana.azure.com","zoneRedundancy":"Disabled","autoGeneratedDomainNameLabelScope":"TenantReuse","publicNetworkAccess":"Enabled","apiKey":"Disabled","deterministicOutboundIP":"Disabled"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-01T06:13:14.848094Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"grafanaVersion":"9.1.8.1","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","provisioningState":"Succeeded","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg3ungkidy4o3wdvnefew2wlzo3bvfzthxrprre4lxmare6tgzllanrybcfxpbyug/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-12-03T17:57:15.9785031Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T18:03:56.708138Z"},"identity":{"principalId":"68eecfc1-0715-46dd-b195-5a962b3662cc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Deleting","grafanaVersion":"9.1.8.1","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-12-03T17:57:19.8480165Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T17:57:19.8480165Z"},"identity":{"principalId":"3fcb21e0-a296-453c-a37b-3d24559f92d6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.1.8.1","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}]}' headers: cache-control: - no-cache content-length: - - '1910' + - '3209' content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 04:55:34 GMT + - Sat, 03 Dec 2022 18:04:09 GMT expires: - '-1' pragma: @@ -886,12 +1073,15 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - caad6842-577a-4e04-b9d3-3bf5ee01972b - - b963084e-071b-4734-ae9b-05d6463df515 - - 628f8822-63c8-48c4-9b64-e70883b3ce1e - - b24e9c89-8dfe-43d3-a2aa-11b39d5b85b3 - - 37715b04-7711-4940-bd58-6aea8ae612f0 - - dcb10097-8d0e-493b-b833-fe2d957c1243 + - 1f45f27b-b7f2-494c-b999-4e60289ebcbb + - 4119cde9-5e62-44df-ba9c-e0009454a2ab + - b34f5da0-bcdb-494f-b002-058a3d414ff1 + - f68f5901-173c-4db1-af7f-e2a73f5bd329 + - dc73916f-7df5-4389-80ed-d8374ede5e8e + - 6759da65-fe7c-44a6-91d7-e3f1d73ec486 + - 010f6c66-e1b0-47ec-84c7-f613138552d9 + - 85e61cdb-bdc9-4dfe-b07d-4ea3603481fb + - 780dc200-ed70-47dc-9b6c-be0afbd0e2cb status: code: 200 message: OK @@ -909,23 +1099,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-08-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-08-06T04:50:44.9413885Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-06T04:50:44.9413885Z"},"identity":{"principalId":"c977fab6-1d15-477a-b53c-14dc093cae36","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-12-03T17:57:19.8480165Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T17:57:19.8480165Z"},"identity":{"principalId":"3fcb21e0-a296-453c-a37b-3d24559f92d6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.1.8.1","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}' headers: cache-control: - no-cache content-length: - - '951' + - '1016' content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 04:55:36 GMT + - Sat, 03 Dec 2022 18:04:10 GMT etag: - - '"07003b9b-0000-0d00-0000-62edf42a0000"' + - '"7e0238ba-0000-0d00-0000-638b8f7a0000"' expires: - '-1' pragma: @@ -957,23 +1147,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-08-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-08-06T04:50:44.9413885Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-06T04:50:44.9413885Z"},"identity":{"principalId":"c977fab6-1d15-477a-b53c-14dc093cae36","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-12-03T17:57:19.8480165Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T17:57:19.8480165Z"},"identity":{"principalId":"3fcb21e0-a296-453c-a37b-3d24559f92d6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.1.8.1","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}' headers: cache-control: - no-cache content-length: - - '951' + - '1016' content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 04:55:36 GMT + - Sat, 03 Dec 2022 18:04:12 GMT etag: - - '"07003b9b-0000-0d00-0000-62edf42a0000"' + - '"7e0238ba-0000-0d00-0000-638b8f7a0000"' expires: - '-1' pragma: @@ -1008,7 +1198,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/org/users response: body: - string: '[{"orgId":1,"userId":2,"email":"example@example.com","name":"example@example.com","avatarUrl":"/avatar/3d063897fed105833776e2dba66ec90b","login":"example@example.com","role":"Admin","lastSeenAt":"2022-08-06T04:55:39Z","lastSeenAtAge":"\u003c + string: '[{"orgId":1,"userId":2,"email":"example@example.com","name":"example@example.com","avatarUrl":"/avatar/3d063897fed105833776e2dba66ec90b","login":"example@example.com","role":"Admin","lastSeenAt":"2022-12-03T18:04:13Z","lastSeenAtAge":"\u003c 1 minute"}]' headers: cache-control: @@ -1022,7 +1212,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:55:39 GMT + - Sat, 03 Dec 2022 18:04:13 GMT expires: - '-1' pragma: @@ -1030,8 +1220,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761740.168.36.663288|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090654.458.307.733464|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1060,7 +1250,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/user response: body: - string: '{"id":2,"email":"example@example.com","name":"example@example.com","login":"example@example.com","theme":"","orgId":1,"isGrafanaAdmin":false,"isDisabled":false,"isExternal":true,"authLabels":["OAuth"],"updatedAt":"2022-08-06T04:55:39Z","createdAt":"2022-08-06T04:55:39Z","avatarUrl":"/avatar/3d063897fed105833776e2dba66ec90b"}' + string: '{"id":2,"email":"example@example.com","name":"example@example.com","login":"example@example.com","theme":"","orgId":1,"isGrafanaAdmin":false,"isDisabled":false,"isExternal":true,"authLabels":["OAuth"],"updatedAt":"2022-12-03T18:04:13Z","createdAt":"2022-12-03T18:04:13Z","avatarUrl":"/avatar/3d063897fed105833776e2dba66ec90b"}' headers: cache-control: - no-cache @@ -1073,7 +1263,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:55:40 GMT + - Sat, 03 Dec 2022 18:04:14 GMT expires: - '-1' pragma: @@ -1081,8 +1271,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761741.412.34.155829|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090655.592.315.939776|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1113,7 +1303,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders response: body: - string: '{"id":47,"uid":"BJr5Auz4z","title":"Test Folder","url":"/dashboards/f/BJr5Auz4z/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2022-08-06T04:55:41Z","updatedBy":"example@example.com","updated":"2022-08-06T04:55:41Z","version":1}' + string: '{"id":49,"uid":"2yO_doKVk","title":"Test Folder","url":"/dashboards/f/2yO_doKVk/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2022-12-03T18:04:15Z","updatedBy":"example@example.com","updated":"2022-12-03T18:04:15Z","version":1}' headers: cache-control: - no-cache @@ -1126,7 +1316,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:55:41 GMT + - Sat, 03 Dec 2022 18:04:15 GMT expires: - '-1' pragma: @@ -1134,8 +1324,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761742.158.34.936363|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090656.435.307.312245|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1164,22 +1354,18 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/id/Test%20Folder response: body: - string: '{"accessErrorId":"ACE7161873304","message":"You''ll need additional - permissions to perform this action. Permissions needed: folders:read","title":"Access - denied"} - - ' + string: '{"message":"id is invalid","traceID":"0a94a825112ce447829a09edb3a25181"}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '162' + - '72' content-type: - - application/json; charset=UTF-8 + - application/json date: - - Sat, 06 Aug 2022 04:55:42 GMT + - Sat, 03 Dec 2022 18:04:16 GMT expires: - '-1' pragma: @@ -1187,7 +1373,7 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761743.077.34.923519|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1670090657.112.307.49641|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1198,8 +1384,8 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 403 - message: Forbidden + code: 400 + message: Bad Request - request: body: null headers: @@ -1228,7 +1414,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:55:42 GMT + - Sat, 03 Dec 2022 18:04:16 GMT expires: - '-1' pragma: @@ -1236,7 +1422,7 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761743.641.34.340367|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1670090657.68.315.419440|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1266,8 +1452,8 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":23,"uid":"PrometheusMDM","title":"Azure - Monitor Container Insights"},{"id":11,"uid":"geneva","title":"Geneva"},{"id":47,"uid":"BJr5Auz4z","title":"Test + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":25,"uid":"PrometheusMDM","title":"Azure + Monitor Container Insights"},{"id":13,"uid":"geneva","title":"Geneva"},{"id":49,"uid":"2yO_doKVk","title":"Test Folder"}]' headers: cache-control: @@ -1281,7 +1467,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:55:43 GMT + - Sat, 03 Dec 2022 18:04:17 GMT expires: - '-1' pragma: @@ -1289,8 +1475,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761744.221.37.468508|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090658.396.307.573453|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1316,25 +1502,21 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/id/BJr5Auz4z + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/id/2yO_doKVk response: body: - string: '{"accessErrorId":"ACE1479386962","message":"You''ll need additional - permissions to perform this action. Permissions needed: folders:read","title":"Access - denied"} - - ' + string: '{"message":"id is invalid","traceID":"5d052e865161054a98ecc75433539107"}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '162' + - '72' content-type: - - application/json; charset=UTF-8 + - application/json date: - - Sat, 06 Aug 2022 04:55:43 GMT + - Sat, 03 Dec 2022 18:04:18 GMT expires: - '-1' pragma: @@ -1342,8 +1524,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761744.878.34.42288|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090659.067.308.979193|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1353,8 +1535,8 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 403 - message: Forbidden + code: 400 + message: Bad Request - request: body: null headers: @@ -1369,10 +1551,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/BJr5Auz4z + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/2yO_doKVk response: body: - string: '{"id":47,"uid":"BJr5Auz4z","title":"Test Folder","url":"/dashboards/f/BJr5Auz4z/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2022-08-06T04:55:41Z","updatedBy":"example@example.com","updated":"2022-08-06T04:55:41Z","version":1}' + string: '{"id":49,"uid":"2yO_doKVk","title":"Test Folder","url":"/dashboards/f/2yO_doKVk/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2022-12-03T18:04:15Z","updatedBy":"example@example.com","updated":"2022-12-03T18:04:15Z","version":1}' headers: cache-control: - no-cache @@ -1385,7 +1567,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:55:44 GMT + - Sat, 03 Dec 2022 18:04:18 GMT expires: - '-1' pragma: @@ -1393,8 +1575,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761745.448.37.562254|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090659.654.318.960502|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1422,10 +1604,10 @@ interactions: content-type: - application/json method: PUT - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/BJr5Auz4z + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/2yO_doKVk response: body: - string: '{"id":47,"uid":"BJr5Auz4z","title":"Test Folder Update","url":"/dashboards/f/BJr5Auz4z/test-folder-update","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2022-08-06T04:55:41Z","updatedBy":"example@example.com","updated":"2022-08-06T04:55:45Z","version":2}' + string: '{"id":49,"uid":"2yO_doKVk","title":"Test Folder Update","url":"/dashboards/f/2yO_doKVk/test-folder-update","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2022-12-03T18:04:15Z","updatedBy":"example@example.com","updated":"2022-12-03T18:04:19Z","version":2}' headers: cache-control: - no-cache @@ -1438,7 +1620,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:55:45 GMT + - Sat, 03 Dec 2022 18:04:19 GMT expires: - '-1' pragma: @@ -1446,8 +1628,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761746.019.36.53794|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090660.244.307.794951|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1476,8 +1658,8 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":23,"uid":"PrometheusMDM","title":"Azure - Monitor Container Insights"},{"id":11,"uid":"geneva","title":"Geneva"},{"id":47,"uid":"BJr5Auz4z","title":"Test + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":25,"uid":"PrometheusMDM","title":"Azure + Monitor Container Insights"},{"id":13,"uid":"geneva","title":"Geneva"},{"id":49,"uid":"2yO_doKVk","title":"Test Folder Update"}]' headers: cache-control: @@ -1491,7 +1673,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:55:45 GMT + - Sat, 03 Dec 2022 18:04:19 GMT expires: - '-1' pragma: @@ -1499,8 +1681,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761746.702.37.997951|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090660.947.310.603649|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1529,22 +1711,18 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/id/Test%20Folder%20Update response: body: - string: '{"accessErrorId":"ACE1545787499","message":"You''ll need additional - permissions to perform this action. Permissions needed: folders:read","title":"Access - denied"} - - ' + string: '{"message":"id is invalid","traceID":"2c6c5ecb9dc78a44a2dae28ed2261709"}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '162' + - '72' content-type: - - application/json; charset=UTF-8 + - application/json date: - - Sat, 06 Aug 2022 04:55:46 GMT + - Sat, 03 Dec 2022 18:04:20 GMT expires: - '-1' pragma: @@ -1552,8 +1730,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761747.353.35.822831|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090661.603.317.307112|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1563,8 +1741,8 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 403 - message: Forbidden + code: 400 + message: Bad Request - request: body: null headers: @@ -1593,7 +1771,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:55:46 GMT + - Sat, 03 Dec 2022 18:04:21 GMT expires: - '-1' pragma: @@ -1601,8 +1779,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761747.923.37.757994|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090662.167.307.691925|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1631,8 +1809,8 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":23,"uid":"PrometheusMDM","title":"Azure - Monitor Container Insights"},{"id":11,"uid":"geneva","title":"Geneva"},{"id":47,"uid":"BJr5Auz4z","title":"Test + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":25,"uid":"PrometheusMDM","title":"Azure + Monitor Container Insights"},{"id":13,"uid":"geneva","title":"Geneva"},{"id":49,"uid":"2yO_doKVk","title":"Test Folder Update"}]' headers: cache-control: @@ -1646,7 +1824,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:55:47 GMT + - Sat, 03 Dec 2022 18:04:21 GMT expires: - '-1' pragma: @@ -1654,8 +1832,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761748.515.36.982389|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090662.716.310.529168|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1683,10 +1861,10 @@ interactions: content-type: - application/json method: DELETE - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/BJr5Auz4z + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/2yO_doKVk response: body: - string: '{"id":47,"message":"Folder Test Folder Update deleted","title":"Test + string: '{"id":49,"message":"Folder Test Folder Update deleted","title":"Test Folder Update"}' headers: cache-control: @@ -1700,7 +1878,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:55:48 GMT + - Sat, 03 Dec 2022 18:04:22 GMT expires: - '-1' pragma: @@ -1708,8 +1886,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761749.088.35.681155|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090663.311.315.716745|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1738,8 +1916,8 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":23,"uid":"PrometheusMDM","title":"Azure - Monitor Container Insights"},{"id":11,"uid":"geneva","title":"Geneva"}]' + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":25,"uid":"PrometheusMDM","title":"Azure + Monitor Container Insights"},{"id":13,"uid":"geneva","title":"Geneva"}]' headers: cache-control: - no-cache @@ -1752,7 +1930,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:55:48 GMT + - Sat, 03 Dec 2022 18:04:23 GMT expires: - '-1' pragma: @@ -1760,8 +1938,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761749.817.34.731287|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090664.058.307.630003|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1793,7 +1971,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources response: body: - string: '{"datasource":{"id":4,"uid":"B0MtAuz4z","orgId":1,"name":"Test Azure + string: '{"datasource":{"id":4,"uid":"YlblOTK4z","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false},"id":4,"message":"Datasource added","name":"Test Azure Monitor Data Source"}' headers: @@ -1808,7 +1986,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:55:49 GMT + - Sat, 03 Dec 2022 18:04:23 GMT expires: - '-1' pragma: @@ -1816,8 +1994,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761750.483.34.487322|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090664.728.310.889686|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1846,7 +2024,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source response: body: - string: '{"id":4,"uid":"B0MtAuz4z","orgId":1,"name":"Test Azure Monitor Data + string: '{"id":4,"uid":"YlblOTK4z","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false}' headers: cache-control: @@ -1860,7 +2038,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:55:50 GMT + - Sat, 03 Dec 2022 18:04:24 GMT expires: - '-1' pragma: @@ -1868,8 +2046,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761751.224.37.139492|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090665.408.318.135372|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1898,7 +2076,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source response: body: - string: '{"id":4,"uid":"B0MtAuz4z","orgId":1,"name":"Test Azure Monitor Data + string: '{"id":4,"uid":"YlblOTK4z","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false}' headers: cache-control: @@ -1912,7 +2090,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:55:50 GMT + - Sat, 03 Dec 2022 18:04:25 GMT expires: - '-1' pragma: @@ -1920,8 +2098,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761751.877.34.764446|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090666.049.307.246032|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1953,7 +2131,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources/4 response: body: - string: '{"datasource":{"id":4,"uid":"B0MtAuz4z","orgId":1,"name":"Test Azure + string: '{"datasource":{"id":4,"uid":"YlblOTK4z","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false},"id":4,"message":"Datasource updated","name":"Test Azure Monitor Data Source"}' headers: @@ -1968,7 +2146,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:55:51 GMT + - Sat, 03 Dec 2022 18:04:25 GMT expires: - '-1' pragma: @@ -1976,8 +2154,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761752.444.36.388734|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090666.614.309.485336|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2007,9 +2185,9 @@ interactions: response: body: string: '[{"id":1,"uid":"azure-monitor-oob","orgId":1,"name":"Azure Monitor","type":"grafana-azure-monitor-datasource","typeName":"Azure - Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":"3A7EDF7D-1488-4017-A908-E50D0A1642A6"},"readOnly":false},{"id":2,"uid":"prometheus-mdm","orgId":1,"name":"Azure - Monitor Container Insights","type":"prometheus","typeName":"Prometheus","typeLogoUrl":"public/app/plugins/datasource/prometheus/img/prometheus_logo.svg","access":"proxy","url":"https://az-ncus.prod.prometheusmetrics.trafficmanager.net","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuth":true,"azureCredentials":{"authType":"msi"},"azureEndpointResourceId":"https://management.azure.com","httpHeaderName1":"mdmAccountName","httpMethod":"POST"},"readOnly":false},{"id":3,"uid":"Geneva","orgId":1,"name":"Geneva - Datasource","type":"geneva-datasource","typeName":"Geneva Datasource","typeLogoUrl":"public/plugins/geneva-datasource/img/logo.svg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuth":true,"azureCredentials":{"authType":"msi"},"azureEndpointResourceId":"https://monitor.core.windows.net"},"readOnly":false},{"id":4,"uid":"B0MtAuz4z","orgId":1,"name":"Test + Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":"2462343E-2B86-44E6-A7CE-6FF5E5C3E2E7"},"readOnly":false},{"id":2,"uid":"prometheus-mdm","orgId":1,"name":"Azure + Monitor Container Insights","type":"prometheus","typeName":"Prometheus","typeLogoUrl":"public/app/plugins/datasource/prometheus/img/prometheus_logo.svg","access":"proxy","url":"https://az-ncus.prod.prometheusmetrics.trafficmanager.net","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureCredentials":{"authType":"msi"},"httpHeaderName1":"mdmAccountName","httpMethod":"POST","manageAlerts":false,"timeInterval":"30s"},"readOnly":false},{"id":3,"uid":"Geneva","orgId":1,"name":"Geneva + Datasource","type":"geneva-datasource","typeName":"Geneva Datasource","typeLogoUrl":"public/plugins/geneva-datasource/img/logo.svg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureCredentials":{"authType":"msi"}},"readOnly":false},{"id":4,"uid":"YlblOTK4z","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeName":"Azure Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"readOnly":false}]' headers: @@ -2018,13 +2196,13 @@ interactions: connection: - keep-alive content-length: - - '1782' + - '1672' content-security-policy: - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' content-type: - application/json date: - - Sat, 06 Aug 2022 04:55:52 GMT + - Sat, 03 Dec 2022 18:04:26 GMT expires: - '-1' pragma: @@ -2032,8 +2210,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761753.143.35.821907|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090667.304.310.628153|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2062,7 +2240,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source response: body: - string: '{"id":4,"uid":"B0MtAuz4z","orgId":1,"name":"Test Azure Monitor Data + string: '{"id":4,"uid":"YlblOTK4z","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false}' headers: cache-control: @@ -2076,7 +2254,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:55:52 GMT + - Sat, 03 Dec 2022 18:04:26 GMT expires: - '-1' pragma: @@ -2084,7 +2262,7 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761753.8.33.900683|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1670090667.966.309.51062|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2113,7 +2291,7 @@ interactions: content-type: - application/json method: DELETE - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources/uid/B0MtAuz4z + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources/uid/YlblOTK4z response: body: string: '{"id":4,"message":"Data source deleted"}' @@ -2129,7 +2307,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:55:53 GMT + - Sat, 03 Dec 2022 18:04:27 GMT expires: - '-1' pragma: @@ -2137,8 +2315,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761754.372.36.458678|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090668.532.316.820718|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2168,22 +2346,22 @@ interactions: response: body: string: '[{"id":1,"uid":"azure-monitor-oob","orgId":1,"name":"Azure Monitor","type":"grafana-azure-monitor-datasource","typeName":"Azure - Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":"3A7EDF7D-1488-4017-A908-E50D0A1642A6"},"readOnly":false},{"id":2,"uid":"prometheus-mdm","orgId":1,"name":"Azure - Monitor Container Insights","type":"prometheus","typeName":"Prometheus","typeLogoUrl":"public/app/plugins/datasource/prometheus/img/prometheus_logo.svg","access":"proxy","url":"https://az-ncus.prod.prometheusmetrics.trafficmanager.net","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuth":true,"azureCredentials":{"authType":"msi"},"azureEndpointResourceId":"https://management.azure.com","httpHeaderName1":"mdmAccountName","httpMethod":"POST"},"readOnly":false},{"id":3,"uid":"Geneva","orgId":1,"name":"Geneva - Datasource","type":"geneva-datasource","typeName":"Geneva Datasource","typeLogoUrl":"public/plugins/geneva-datasource/img/logo.svg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuth":true,"azureCredentials":{"authType":"msi"},"azureEndpointResourceId":"https://monitor.core.windows.net"},"readOnly":false}]' + Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":"2462343E-2B86-44E6-A7CE-6FF5E5C3E2E7"},"readOnly":false},{"id":2,"uid":"prometheus-mdm","orgId":1,"name":"Azure + Monitor Container Insights","type":"prometheus","typeName":"Prometheus","typeLogoUrl":"public/app/plugins/datasource/prometheus/img/prometheus_logo.svg","access":"proxy","url":"https://az-ncus.prod.prometheusmetrics.trafficmanager.net","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureCredentials":{"authType":"msi"},"httpHeaderName1":"mdmAccountName","httpMethod":"POST","manageAlerts":false,"timeInterval":"30s"},"readOnly":false},{"id":3,"uid":"Geneva","orgId":1,"name":"Geneva + Datasource","type":"geneva-datasource","typeName":"Geneva Datasource","typeLogoUrl":"public/plugins/geneva-datasource/img/logo.svg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureCredentials":{"authType":"msi"}},"readOnly":false}]' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '1386' + - '1276' content-security-policy: - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' content-type: - application/json date: - - Sat, 06 Aug 2022 04:55:54 GMT + - Sat, 03 Dec 2022 18:04:28 GMT expires: - '-1' pragma: @@ -2191,8 +2369,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761755.055.34.204592|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090669.245.307.376329|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2224,7 +2402,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications response: body: - string: '{"id":1,"uid":"GfDtAuzVk","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2022-08-06T04:55:54.759974268Z","updated":"2022-08-06T04:55:54.759976268Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' + string: '{"id":1,"uid":"KCs_OoFVz","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2022-12-03T18:04:28.975173369Z","updated":"2022-12-03T18:04:28.975173469Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' headers: cache-control: - no-cache @@ -2237,7 +2415,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:55:54 GMT + - Sat, 03 Dec 2022 18:04:28 GMT expires: - '-1' pragma: @@ -2245,8 +2423,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761755.724.33.883117|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090669.931.309.338535|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2272,10 +2450,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/GfDtAuzVk + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/KCs_OoFVz response: body: - string: '{"message":"notificationId is invalid","traceID":"1cb8abfe09f8fbbb23ab223b84d0e250"}' + string: '{"message":"notificationId is invalid","traceID":"b4eae41f03dc614d9662201cfc639f9f"}' headers: cache-control: - no-cache @@ -2286,7 +2464,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:55:55 GMT + - Sat, 03 Dec 2022 18:04:29 GMT expires: - '-1' pragma: @@ -2294,7 +2472,7 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761756.389.35.677232|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1670090670.64.309.21793|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2321,10 +2499,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/uid/GfDtAuzVk + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/uid/KCs_OoFVz response: body: - string: '{"id":1,"uid":"GfDtAuzVk","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2022-08-06T04:55:54Z","updated":"2022-08-06T04:55:54Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' + string: '{"id":1,"uid":"KCs_OoFVz","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2022-12-03T18:04:28Z","updated":"2022-12-03T18:04:28Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' headers: cache-control: - no-cache @@ -2337,7 +2515,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:55:56 GMT + - Sat, 03 Dec 2022 18:04:30 GMT expires: - '-1' pragma: @@ -2345,8 +2523,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761756.962.37.830525|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090671.204.307.766068|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2372,10 +2550,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/GfDtAuzVk + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/KCs_OoFVz response: body: - string: '{"message":"notificationId is invalid","traceID":"5264d4b8d8f151a63973a9a8f6d72eee"}' + string: '{"message":"notificationId is invalid","traceID":"a8ef4effd20fc244905e1579b2ccbfe6"}' headers: cache-control: - no-cache @@ -2386,7 +2564,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:55:56 GMT + - Sat, 03 Dec 2022 18:04:30 GMT expires: - '-1' pragma: @@ -2394,8 +2572,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761757.662.34.816004|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090671.865.317.982847|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2421,10 +2599,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/uid/GfDtAuzVk + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/uid/KCs_OoFVz response: body: - string: '{"id":1,"uid":"GfDtAuzVk","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2022-08-06T04:55:54Z","updated":"2022-08-06T04:55:54Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' + string: '{"id":1,"uid":"KCs_OoFVz","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2022-12-03T18:04:28Z","updated":"2022-12-03T18:04:28Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' headers: cache-control: - no-cache @@ -2437,7 +2615,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:55:57 GMT + - Sat, 03 Dec 2022 18:04:31 GMT expires: - '-1' pragma: @@ -2445,8 +2623,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761758.23.37.530272|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090672.431.308.250890|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2478,7 +2656,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/1 response: body: - string: '{"id":1,"uid":"GfDtAuzVk","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2022-08-06T04:55:54Z","updated":"2022-08-06T04:55:57Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' + string: '{"id":1,"uid":"KCs_OoFVz","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2022-12-03T18:04:28Z","updated":"2022-12-03T18:04:32Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' headers: cache-control: - no-cache @@ -2491,7 +2669,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:55:57 GMT + - Sat, 03 Dec 2022 18:04:32 GMT expires: - '-1' pragma: @@ -2499,8 +2677,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761758.806.35.97610|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090672.997.307.388092|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2529,7 +2707,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications response: body: - string: '[{"id":1,"uid":"GfDtAuzVk","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2022-08-06T04:55:54Z","updated":"2022-08-06T04:55:57Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}]' + string: '[{"id":1,"uid":"KCs_OoFVz","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2022-12-03T18:04:28Z","updated":"2022-12-03T18:04:32Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}]' headers: cache-control: - no-cache @@ -2542,7 +2720,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:55:58 GMT + - Sat, 03 Dec 2022 18:04:32 GMT expires: - '-1' pragma: @@ -2550,7 +2728,7 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761759.506.34.922163|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1670090673.671.308.63979|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2577,10 +2755,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/GfDtAuzVk + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/KCs_OoFVz response: body: - string: '{"message":"notificationId is invalid","traceID":"4f02ee145c76e5f93975969d03f80994"}' + string: '{"message":"notificationId is invalid","traceID":"0b05674cbdf60240a34f9f585250ff32"}' headers: cache-control: - no-cache @@ -2591,7 +2769,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:55:59 GMT + - Sat, 03 Dec 2022 18:04:33 GMT expires: - '-1' pragma: @@ -2599,8 +2777,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761760.187.37.441436|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090674.373.308.578060|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2626,10 +2804,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/uid/GfDtAuzVk + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/uid/KCs_OoFVz response: body: - string: '{"id":1,"uid":"GfDtAuzVk","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2022-08-06T04:55:54Z","updated":"2022-08-06T04:55:57Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' + string: '{"id":1,"uid":"KCs_OoFVz","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2022-12-03T18:04:28Z","updated":"2022-12-03T18:04:32Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' headers: cache-control: - no-cache @@ -2642,7 +2820,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:55:59 GMT + - Sat, 03 Dec 2022 18:04:33 GMT expires: - '-1' pragma: @@ -2650,7 +2828,7 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761760.76.36.913423|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1670090674.95.315.419504|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2695,7 +2873,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:56:00 GMT + - Sat, 03 Dec 2022 18:04:34 GMT expires: - '-1' pragma: @@ -2703,8 +2881,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761761.358.35.748658|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090675.531.310.535877|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2746,7 +2924,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:56:01 GMT + - Sat, 03 Dec 2022 18:04:35 GMT expires: - '-1' pragma: @@ -2754,8 +2932,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761762.027.34.625437|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090676.201.308.521077|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2786,7 +2964,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/dashboards/db response: body: - string: '{"id":48,"slug":"test-dashboard","status":"success","uid":"i2ApAXkVz","url":"/d/i2ApAXkVz/test-dashboard","version":1}' + string: '{"id":50,"slug":"test-dashboard","status":"success","uid":"RPqldTKVz","url":"/d/RPqldTKVz/test-dashboard","version":1}' headers: cache-control: - no-cache @@ -2799,7 +2977,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:56:01 GMT + - Sat, 03 Dec 2022 18:04:35 GMT expires: - '-1' pragma: @@ -2807,8 +2985,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761762.696.34.734982|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090676.869.315.719553|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2834,24 +3012,24 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/dashboards/uid/i2ApAXkVz + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/dashboards/uid/RPqldTKVz response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/i2ApAXkVz/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2022-08-06T04:56:01Z","updated":"2022-08-06T04:56:01Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":0,"folderUid":"","folderTitle":"General","folderUrl":"","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":true,"canEdit":true,"canDelete":true},"organization":{"canAdd":true,"canEdit":true,"canDelete":true}},"isPublic":false},"dashboard":{"id":48,"title":"Test - Dashboard","uid":"i2ApAXkVz","version":1}}' + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/RPqldTKVz/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2022-12-03T18:04:35Z","updated":"2022-12-03T18:04:35Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":0,"folderUid":"","folderTitle":"General","folderUrl":"","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"publicDashboardAccessToken":"","publicDashboardEnabled":false},"dashboard":{"id":50,"title":"Test + Dashboard","uid":"RPqldTKVz","version":1}}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '729' + - '781' content-security-policy: - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' content-type: - application/json date: - - Sat, 06 Aug 2022 04:56:02 GMT + - Sat, 03 Dec 2022 18:04:36 GMT expires: - '-1' pragma: @@ -2859,8 +3037,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761763.404.33.905723|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090677.545.317.599515|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2873,7 +3051,7 @@ interactions: code: 200 message: OK - request: - body: '{"dashboard": {"title": "Test Dashboard", "uid": "i2ApAXkVz", "version": + body: '{"dashboard": {"title": "Test Dashboard", "uid": "RPqldTKVz", "version": 1}, "overwrite": true}' headers: Accept: @@ -2892,7 +3070,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/dashboards/db response: body: - string: '{"id":48,"slug":"test-dashboard","status":"success","uid":"i2ApAXkVz","url":"/d/i2ApAXkVz/test-dashboard","version":2}' + string: '{"id":50,"slug":"test-dashboard","status":"success","uid":"RPqldTKVz","url":"/d/RPqldTKVz/test-dashboard","version":2}' headers: cache-control: - no-cache @@ -2905,7 +3083,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:56:03 GMT + - Sat, 03 Dec 2022 18:04:37 GMT expires: - '-1' pragma: @@ -2913,7 +3091,7 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761764.068.36.540277|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1670090678.21.310.743629|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2943,83 +3121,85 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/search?type=dash-db response: body: - string: '[{"id":21,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"54KhiZ7nz","title":"AKS - Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":17,"uid":"6uRDjTNnz","title":"App - Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":2,"uid":"dyzn5SK7z","title":"Azure + string: '[{"id":24,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":23,"uid":"54KhiZ7nz","title":"AKS + Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"6uRDjTNnz","title":"App + Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":3,"uid":"dyzn5SK7z","title":"Azure / Alert Consumption","uri":"db/azure-alert-consumption","url":"/d/dyzn5SK7z/azure-alert-consumption","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"Yo38mcvnz","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"Yo38mcvnz","title":"Azure / Insights / Applications","uri":"db/azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"INH9berMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"AppInsightsAvTestGeoMap","title":"Azure + / Insights / Applications Test Availability Geo Map","uri":"db/azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"INH9berMk","title":"Azure / Insights / Cosmos DB","uri":"db/azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"8UDB1s3Gk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"8UDB1s3Gk","title":"Azure / Insights / Data Explorer Clusters","uri":"db/azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"tQZAMYrMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"tQZAMYrMk","title":"Azure / Insights / Key Vaults","uri":"db/azure-insights-key-vaults","url":"/d/tQZAMYrMk/azure-insights-key-vaults","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"3n2E8CrGk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":12,"uid":"3n2E8CrGk","title":"Azure / Insights / Storage Accounts","uri":"db/azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"AzVmInsightsByRG","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"AzVmInsightsByRG","title":"Azure / Insights / Virtual Machines by Resource Group","uri":"db/azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"AzVmInsightsByWS","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"AzVmInsightsByWS","title":"Azure / Insights / Virtual Machines by Workspace","uri":"db/azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"Mtwt2BV7k","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"Mtwt2BV7k","title":"Azure / Resources Overview","uri":"db/azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":12,"uid":"xLERdASnz","title":"Cluster - Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":24,"uid":"vkQ0UHxiddk","title":"CoreDNS","uri":"db/coredns","url":"/d/vkQ0UHxiddk/coredns","slug":"","type":"dash-db","tags":["coredns-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":13,"uid":"QTVw7iK7z","title":"Geneva - Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":22,"uid":"icm-example","title":"IcM - Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"sVKyjvpnz","title":"Incoming - Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":25,"uid":"09ec8aa1e996d6ffcd6817bbaff4db1b","title":"Kubernetes - / API server","uri":"db/kubernetes-api-server","url":"/d/09ec8aa1e996d6ffcd6817bbaff4db1b/kubernetes-api-server","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":26,"uid":"efa86fd1d0c121a26444b636a3f509a8","title":"Kubernetes - / Compute Resources / Cluster","uri":"db/kubernetes-compute-resources-cluster","url":"/d/efa86fd1d0c121a26444b636a3f509a8/kubernetes-compute-resources-cluster","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":27,"uid":"85a562078cdf77779eaa1add43ccec1e","title":"Kubernetes - / Compute Resources / Namespace (Pods)","uri":"db/kubernetes-compute-resources-namespace-pods","url":"/d/85a562078cdf77779eaa1add43ccec1e/kubernetes-compute-resources-namespace-pods","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":28,"uid":"a87fb0d919ec0ea5f6543124e16c42a5","title":"Kubernetes - / Compute Resources / Namespace (Workloads)","uri":"db/kubernetes-compute-resources-namespace-workloads","url":"/d/a87fb0d919ec0ea5f6543124e16c42a5/kubernetes-compute-resources-namespace-workloads","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":29,"uid":"200ac8fdbfbb74b39aff88118e4d1c2c","title":"Kubernetes - / Compute Resources / Node (Pods)","uri":"db/kubernetes-compute-resources-node-pods","url":"/d/200ac8fdbfbb74b39aff88118e4d1c2c/kubernetes-compute-resources-node-pods","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":30,"uid":"6581e46e4e5c7ba40a07646395ef7b23","title":"Kubernetes - / Compute Resources / Pod","uri":"db/kubernetes-compute-resources-pod","url":"/d/6581e46e4e5c7ba40a07646395ef7b23/kubernetes-compute-resources-pod","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":31,"uid":"a164a7f0339f99e89cea5cb47e9be617","title":"Kubernetes - / Compute Resources / Workload","uri":"db/kubernetes-compute-resources-workload","url":"/d/a164a7f0339f99e89cea5cb47e9be617/kubernetes-compute-resources-workload","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":32,"uid":"3138fa155d5915769fbded898ac09ff9","title":"Kubernetes - / Kubelet","uri":"db/kubernetes-kubelet","url":"/d/3138fa155d5915769fbded898ac09ff9/kubernetes-kubelet","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":33,"uid":"ff635a025bcfea7bc3dd4f508990a3e9","title":"Kubernetes - / Networking / Cluster","uri":"db/kubernetes-networking-cluster","url":"/d/ff635a025bcfea7bc3dd4f508990a3e9/kubernetes-networking-cluster","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":34,"uid":"8b7a8b326d7a6f1f04244066368c67af","title":"Kubernetes - / Networking / Namespace (Pods)","uri":"db/kubernetes-networking-namespace-pods","url":"/d/8b7a8b326d7a6f1f04244066368c67af/kubernetes-networking-namespace-pods","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":35,"uid":"bbb2a765a623ae38130206c7d94a160f","title":"Kubernetes - / Networking / Namespace (Workload)","uri":"db/kubernetes-networking-namespace-workload","url":"/d/bbb2a765a623ae38130206c7d94a160f/kubernetes-networking-namespace-workload","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":36,"uid":"7a18067ce943a40ae25454675c19ff5c","title":"Kubernetes - / Networking / Pod","uri":"db/kubernetes-networking-pod","url":"/d/7a18067ce943a40ae25454675c19ff5c/kubernetes-networking-pod","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":37,"uid":"728bf77cc1166d2f3133bf25846876cc","title":"Kubernetes - / Networking / Workload","uri":"db/kubernetes-networking-workload","url":"/d/728bf77cc1166d2f3133bf25846876cc/kubernetes-networking-workload","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":38,"uid":"919b92a8e8041bd567af9edab12c840c","title":"Kubernetes - / Persistent Volumes","uri":"db/kubernetes-persistent-volumes","url":"/d/919b92a8e8041bd567af9edab12c840c/kubernetes-persistent-volumes","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":39,"uid":"632e265de029684c40b21cb76bca4f94","title":"Kubernetes - / Proxy","uri":"db/kubernetes-proxy","url":"/d/632e265de029684c40b21cb76bca4f94/kubernetes-proxy","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":40,"uid":"F4bizNZ7k","title":"Kubernetes - / StatefulSets","uri":"db/kubernetes-statefulsets","url":"/d/F4bizNZ7k/kubernetes-statefulsets","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":44,"uid":"VESDBJS7k","title":"Kubernetes - / USE Method / Cluster(Windows)","uri":"db/kubernetes-use-method-cluster-windows","url":"/d/VESDBJS7k/kubernetes-use-method-cluster-windows","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":45,"uid":"YCBDf1I7k","title":"Kubernetes - / USE Method / Node(Windows)","uri":"db/kubernetes-use-method-node-windows","url":"/d/YCBDf1I7k/kubernetes-use-method-node-windows","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":19,"uid":"_sKhXTH7z","title":"Node - Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":41,"uid":"D4pVsnCGz","title":"Nodes + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":14,"uid":"xLERdASnz","title":"Cluster + Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":26,"uid":"vkQ0UHxiddk","title":"CoreDNS","uri":"db/coredns","url":"/d/vkQ0UHxiddk/coredns","slug":"","type":"dash-db","tags":["coredns-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":15,"uid":"QTVw7iK7z","title":"Geneva + Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"icm-example","title":"IcM + Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":22,"uid":"sVKyjvpnz","title":"Incoming + Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":27,"uid":"09ec8aa1e996d6ffcd6817bbaff4db1b","title":"Kubernetes + / API server","uri":"db/kubernetes-api-server","url":"/d/09ec8aa1e996d6ffcd6817bbaff4db1b/kubernetes-api-server","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":28,"uid":"efa86fd1d0c121a26444b636a3f509a8","title":"Kubernetes + / Compute Resources / Cluster","uri":"db/kubernetes-compute-resources-cluster","url":"/d/efa86fd1d0c121a26444b636a3f509a8/kubernetes-compute-resources-cluster","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":29,"uid":"85a562078cdf77779eaa1add43ccec1e","title":"Kubernetes + / Compute Resources / Namespace (Pods)","uri":"db/kubernetes-compute-resources-namespace-pods","url":"/d/85a562078cdf77779eaa1add43ccec1e/kubernetes-compute-resources-namespace-pods","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":30,"uid":"a87fb0d919ec0ea5f6543124e16c42a5","title":"Kubernetes + / Compute Resources / Namespace (Workloads)","uri":"db/kubernetes-compute-resources-namespace-workloads","url":"/d/a87fb0d919ec0ea5f6543124e16c42a5/kubernetes-compute-resources-namespace-workloads","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":31,"uid":"200ac8fdbfbb74b39aff88118e4d1c2c","title":"Kubernetes + / Compute Resources / Node (Pods)","uri":"db/kubernetes-compute-resources-node-pods","url":"/d/200ac8fdbfbb74b39aff88118e4d1c2c/kubernetes-compute-resources-node-pods","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":32,"uid":"6581e46e4e5c7ba40a07646395ef7b23","title":"Kubernetes + / Compute Resources / Pod","uri":"db/kubernetes-compute-resources-pod","url":"/d/6581e46e4e5c7ba40a07646395ef7b23/kubernetes-compute-resources-pod","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":33,"uid":"a164a7f0339f99e89cea5cb47e9be617","title":"Kubernetes + / Compute Resources / Workload","uri":"db/kubernetes-compute-resources-workload","url":"/d/a164a7f0339f99e89cea5cb47e9be617/kubernetes-compute-resources-workload","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":34,"uid":"3138fa155d5915769fbded898ac09ff9","title":"Kubernetes + / Kubelet","uri":"db/kubernetes-kubelet","url":"/d/3138fa155d5915769fbded898ac09ff9/kubernetes-kubelet","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":35,"uid":"ff635a025bcfea7bc3dd4f508990a3e9","title":"Kubernetes + / Networking / Cluster","uri":"db/kubernetes-networking-cluster","url":"/d/ff635a025bcfea7bc3dd4f508990a3e9/kubernetes-networking-cluster","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":36,"uid":"8b7a8b326d7a6f1f04244066368c67af","title":"Kubernetes + / Networking / Namespace (Pods)","uri":"db/kubernetes-networking-namespace-pods","url":"/d/8b7a8b326d7a6f1f04244066368c67af/kubernetes-networking-namespace-pods","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":37,"uid":"bbb2a765a623ae38130206c7d94a160f","title":"Kubernetes + / Networking / Namespace (Workload)","uri":"db/kubernetes-networking-namespace-workload","url":"/d/bbb2a765a623ae38130206c7d94a160f/kubernetes-networking-namespace-workload","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":38,"uid":"7a18067ce943a40ae25454675c19ff5c","title":"Kubernetes + / Networking / Pod","uri":"db/kubernetes-networking-pod","url":"/d/7a18067ce943a40ae25454675c19ff5c/kubernetes-networking-pod","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":39,"uid":"728bf77cc1166d2f3133bf25846876cc","title":"Kubernetes + / Networking / Workload","uri":"db/kubernetes-networking-workload","url":"/d/728bf77cc1166d2f3133bf25846876cc/kubernetes-networking-workload","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":40,"uid":"919b92a8e8041bd567af9edab12c840c","title":"Kubernetes + / Persistent Volumes","uri":"db/kubernetes-persistent-volumes","url":"/d/919b92a8e8041bd567af9edab12c840c/kubernetes-persistent-volumes","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":41,"uid":"632e265de029684c40b21cb76bca4f94","title":"Kubernetes + / Proxy","uri":"db/kubernetes-proxy","url":"/d/632e265de029684c40b21cb76bca4f94/kubernetes-proxy","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":42,"uid":"F4bizNZ7k","title":"Kubernetes + / StatefulSets","uri":"db/kubernetes-statefulsets","url":"/d/F4bizNZ7k/kubernetes-statefulsets","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":46,"uid":"VESDBJS7k","title":"Kubernetes + / USE Method / Cluster(Windows)","uri":"db/kubernetes-use-method-cluster-windows","url":"/d/VESDBJS7k/kubernetes-use-method-cluster-windows","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":47,"uid":"YCBDf1I7k","title":"Kubernetes + / USE Method / Node(Windows)","uri":"db/kubernetes-use-method-node-windows","url":"/d/YCBDf1I7k/kubernetes-use-method-node-windows","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":16,"uid":"_sKhXTH7z","title":"Node + Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":43,"uid":"D4pVsnCGz","title":"Nodes (Node exporter)","uri":"db/nodes-node-exporter","url":"/d/D4pVsnCGz/nodes-node-exporter","slug":"","type":"dash-db","tags":["node - exporter"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":20,"uid":"6naEwcp7z","title":"Outgoing - Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":46,"uid":"UskST-Snz","title":"Prometheus-Collector - Health","uri":"db/prometheus-collector-health","url":"/d/UskST-Snz/prometheus-collector-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":14,"uid":"GIgvhSV7z","title":"Service - Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":48,"uid":"i2ApAXkVz","title":"Test - Dashboard","uri":"db/test-dashboard","url":"/d/i2ApAXkVz/test-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"sortMeta":0},{"id":42,"uid":"VdrOA7jGz","title":"USE + exporter"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":17,"uid":"6naEwcp7z","title":"Outgoing + Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":48,"uid":"UskST-Snz","title":"Prometheus-Collector + Health","uri":"db/prometheus-collector-health","url":"/d/UskST-Snz/prometheus-collector-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":20,"uid":"GIgvhSV7z","title":"Service + Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":50,"uid":"RPqldTKVz","title":"Test + Dashboard","uri":"db/test-dashboard","url":"/d/RPqldTKVz/test-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"sortMeta":0},{"id":44,"uid":"VdrOA7jGz","title":"USE Method / Cluster (Node exporter)","uri":"db/use-method-cluster-node-exporter","url":"/d/VdrOA7jGz/use-method-cluster-node-exporter","slug":"","type":"dash-db","tags":["node - exporter"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":43,"uid":"t5ajanjMk","title":"USE + exporter"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":45,"uid":"t5ajanjMk","title":"USE Method / Node (Node exporter)","uri":"db/use-method-node-node-exporter","url":"/d/t5ajanjMk/use-method-node-node-exporter","slug":"","type":"dash-db","tags":["node - exporter"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":15,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' + exporter"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":18,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' headers: cache-control: - no-cache @@ -3030,7 +3210,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:56:03 GMT + - Sat, 03 Dec 2022 18:04:37 GMT expires: - '-1' pragma: @@ -3038,7 +3218,7 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761764.762.35.573555|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1670090678.9.307.106756|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3069,10 +3249,10 @@ interactions: content-type: - application/json method: DELETE - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/dashboards/uid/i2ApAXkVz + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/dashboards/uid/RPqldTKVz response: body: - string: '{"id":48,"message":"Dashboard Test Dashboard deleted","title":"Test + string: '{"id":50,"message":"Dashboard Test Dashboard deleted","title":"Test Dashboard"}' headers: cache-control: @@ -3086,7 +3266,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:56:04 GMT + - Sat, 03 Dec 2022 18:04:38 GMT expires: - '-1' pragma: @@ -3094,8 +3274,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761765.606.33.60884|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090679.724.316.643832|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -3124,82 +3304,84 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/search?type=dash-db response: body: - string: '[{"id":21,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"54KhiZ7nz","title":"AKS - Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":17,"uid":"6uRDjTNnz","title":"App - Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":2,"uid":"dyzn5SK7z","title":"Azure + string: '[{"id":24,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":23,"uid":"54KhiZ7nz","title":"AKS + Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"6uRDjTNnz","title":"App + Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":3,"uid":"dyzn5SK7z","title":"Azure / Alert Consumption","uri":"db/azure-alert-consumption","url":"/d/dyzn5SK7z/azure-alert-consumption","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"Yo38mcvnz","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"Yo38mcvnz","title":"Azure / Insights / Applications","uri":"db/azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"INH9berMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"AppInsightsAvTestGeoMap","title":"Azure + / Insights / Applications Test Availability Geo Map","uri":"db/azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"INH9berMk","title":"Azure / Insights / Cosmos DB","uri":"db/azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"8UDB1s3Gk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"8UDB1s3Gk","title":"Azure / Insights / Data Explorer Clusters","uri":"db/azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"tQZAMYrMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"tQZAMYrMk","title":"Azure / Insights / Key Vaults","uri":"db/azure-insights-key-vaults","url":"/d/tQZAMYrMk/azure-insights-key-vaults","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"3n2E8CrGk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":12,"uid":"3n2E8CrGk","title":"Azure / Insights / Storage Accounts","uri":"db/azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"AzVmInsightsByRG","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"AzVmInsightsByRG","title":"Azure / Insights / Virtual Machines by Resource Group","uri":"db/azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"AzVmInsightsByWS","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"AzVmInsightsByWS","title":"Azure / Insights / Virtual Machines by Workspace","uri":"db/azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"Mtwt2BV7k","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"Mtwt2BV7k","title":"Azure / Resources Overview","uri":"db/azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":12,"uid":"xLERdASnz","title":"Cluster - Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":24,"uid":"vkQ0UHxiddk","title":"CoreDNS","uri":"db/coredns","url":"/d/vkQ0UHxiddk/coredns","slug":"","type":"dash-db","tags":["coredns-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":13,"uid":"QTVw7iK7z","title":"Geneva - Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":22,"uid":"icm-example","title":"IcM - Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"sVKyjvpnz","title":"Incoming - Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":25,"uid":"09ec8aa1e996d6ffcd6817bbaff4db1b","title":"Kubernetes - / API server","uri":"db/kubernetes-api-server","url":"/d/09ec8aa1e996d6ffcd6817bbaff4db1b/kubernetes-api-server","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":26,"uid":"efa86fd1d0c121a26444b636a3f509a8","title":"Kubernetes - / Compute Resources / Cluster","uri":"db/kubernetes-compute-resources-cluster","url":"/d/efa86fd1d0c121a26444b636a3f509a8/kubernetes-compute-resources-cluster","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":27,"uid":"85a562078cdf77779eaa1add43ccec1e","title":"Kubernetes - / Compute Resources / Namespace (Pods)","uri":"db/kubernetes-compute-resources-namespace-pods","url":"/d/85a562078cdf77779eaa1add43ccec1e/kubernetes-compute-resources-namespace-pods","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":28,"uid":"a87fb0d919ec0ea5f6543124e16c42a5","title":"Kubernetes - / Compute Resources / Namespace (Workloads)","uri":"db/kubernetes-compute-resources-namespace-workloads","url":"/d/a87fb0d919ec0ea5f6543124e16c42a5/kubernetes-compute-resources-namespace-workloads","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":29,"uid":"200ac8fdbfbb74b39aff88118e4d1c2c","title":"Kubernetes - / Compute Resources / Node (Pods)","uri":"db/kubernetes-compute-resources-node-pods","url":"/d/200ac8fdbfbb74b39aff88118e4d1c2c/kubernetes-compute-resources-node-pods","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":30,"uid":"6581e46e4e5c7ba40a07646395ef7b23","title":"Kubernetes - / Compute Resources / Pod","uri":"db/kubernetes-compute-resources-pod","url":"/d/6581e46e4e5c7ba40a07646395ef7b23/kubernetes-compute-resources-pod","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":31,"uid":"a164a7f0339f99e89cea5cb47e9be617","title":"Kubernetes - / Compute Resources / Workload","uri":"db/kubernetes-compute-resources-workload","url":"/d/a164a7f0339f99e89cea5cb47e9be617/kubernetes-compute-resources-workload","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":32,"uid":"3138fa155d5915769fbded898ac09ff9","title":"Kubernetes - / Kubelet","uri":"db/kubernetes-kubelet","url":"/d/3138fa155d5915769fbded898ac09ff9/kubernetes-kubelet","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":33,"uid":"ff635a025bcfea7bc3dd4f508990a3e9","title":"Kubernetes - / Networking / Cluster","uri":"db/kubernetes-networking-cluster","url":"/d/ff635a025bcfea7bc3dd4f508990a3e9/kubernetes-networking-cluster","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":34,"uid":"8b7a8b326d7a6f1f04244066368c67af","title":"Kubernetes - / Networking / Namespace (Pods)","uri":"db/kubernetes-networking-namespace-pods","url":"/d/8b7a8b326d7a6f1f04244066368c67af/kubernetes-networking-namespace-pods","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":35,"uid":"bbb2a765a623ae38130206c7d94a160f","title":"Kubernetes - / Networking / Namespace (Workload)","uri":"db/kubernetes-networking-namespace-workload","url":"/d/bbb2a765a623ae38130206c7d94a160f/kubernetes-networking-namespace-workload","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":36,"uid":"7a18067ce943a40ae25454675c19ff5c","title":"Kubernetes - / Networking / Pod","uri":"db/kubernetes-networking-pod","url":"/d/7a18067ce943a40ae25454675c19ff5c/kubernetes-networking-pod","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":37,"uid":"728bf77cc1166d2f3133bf25846876cc","title":"Kubernetes - / Networking / Workload","uri":"db/kubernetes-networking-workload","url":"/d/728bf77cc1166d2f3133bf25846876cc/kubernetes-networking-workload","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":38,"uid":"919b92a8e8041bd567af9edab12c840c","title":"Kubernetes - / Persistent Volumes","uri":"db/kubernetes-persistent-volumes","url":"/d/919b92a8e8041bd567af9edab12c840c/kubernetes-persistent-volumes","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":39,"uid":"632e265de029684c40b21cb76bca4f94","title":"Kubernetes - / Proxy","uri":"db/kubernetes-proxy","url":"/d/632e265de029684c40b21cb76bca4f94/kubernetes-proxy","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":40,"uid":"F4bizNZ7k","title":"Kubernetes - / StatefulSets","uri":"db/kubernetes-statefulsets","url":"/d/F4bizNZ7k/kubernetes-statefulsets","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":44,"uid":"VESDBJS7k","title":"Kubernetes - / USE Method / Cluster(Windows)","uri":"db/kubernetes-use-method-cluster-windows","url":"/d/VESDBJS7k/kubernetes-use-method-cluster-windows","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":45,"uid":"YCBDf1I7k","title":"Kubernetes - / USE Method / Node(Windows)","uri":"db/kubernetes-use-method-node-windows","url":"/d/YCBDf1I7k/kubernetes-use-method-node-windows","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":19,"uid":"_sKhXTH7z","title":"Node - Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":41,"uid":"D4pVsnCGz","title":"Nodes + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":14,"uid":"xLERdASnz","title":"Cluster + Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":26,"uid":"vkQ0UHxiddk","title":"CoreDNS","uri":"db/coredns","url":"/d/vkQ0UHxiddk/coredns","slug":"","type":"dash-db","tags":["coredns-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":15,"uid":"QTVw7iK7z","title":"Geneva + Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"icm-example","title":"IcM + Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":22,"uid":"sVKyjvpnz","title":"Incoming + Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":27,"uid":"09ec8aa1e996d6ffcd6817bbaff4db1b","title":"Kubernetes + / API server","uri":"db/kubernetes-api-server","url":"/d/09ec8aa1e996d6ffcd6817bbaff4db1b/kubernetes-api-server","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":28,"uid":"efa86fd1d0c121a26444b636a3f509a8","title":"Kubernetes + / Compute Resources / Cluster","uri":"db/kubernetes-compute-resources-cluster","url":"/d/efa86fd1d0c121a26444b636a3f509a8/kubernetes-compute-resources-cluster","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":29,"uid":"85a562078cdf77779eaa1add43ccec1e","title":"Kubernetes + / Compute Resources / Namespace (Pods)","uri":"db/kubernetes-compute-resources-namespace-pods","url":"/d/85a562078cdf77779eaa1add43ccec1e/kubernetes-compute-resources-namespace-pods","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":30,"uid":"a87fb0d919ec0ea5f6543124e16c42a5","title":"Kubernetes + / Compute Resources / Namespace (Workloads)","uri":"db/kubernetes-compute-resources-namespace-workloads","url":"/d/a87fb0d919ec0ea5f6543124e16c42a5/kubernetes-compute-resources-namespace-workloads","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":31,"uid":"200ac8fdbfbb74b39aff88118e4d1c2c","title":"Kubernetes + / Compute Resources / Node (Pods)","uri":"db/kubernetes-compute-resources-node-pods","url":"/d/200ac8fdbfbb74b39aff88118e4d1c2c/kubernetes-compute-resources-node-pods","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":32,"uid":"6581e46e4e5c7ba40a07646395ef7b23","title":"Kubernetes + / Compute Resources / Pod","uri":"db/kubernetes-compute-resources-pod","url":"/d/6581e46e4e5c7ba40a07646395ef7b23/kubernetes-compute-resources-pod","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":33,"uid":"a164a7f0339f99e89cea5cb47e9be617","title":"Kubernetes + / Compute Resources / Workload","uri":"db/kubernetes-compute-resources-workload","url":"/d/a164a7f0339f99e89cea5cb47e9be617/kubernetes-compute-resources-workload","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":34,"uid":"3138fa155d5915769fbded898ac09ff9","title":"Kubernetes + / Kubelet","uri":"db/kubernetes-kubelet","url":"/d/3138fa155d5915769fbded898ac09ff9/kubernetes-kubelet","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":35,"uid":"ff635a025bcfea7bc3dd4f508990a3e9","title":"Kubernetes + / Networking / Cluster","uri":"db/kubernetes-networking-cluster","url":"/d/ff635a025bcfea7bc3dd4f508990a3e9/kubernetes-networking-cluster","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":36,"uid":"8b7a8b326d7a6f1f04244066368c67af","title":"Kubernetes + / Networking / Namespace (Pods)","uri":"db/kubernetes-networking-namespace-pods","url":"/d/8b7a8b326d7a6f1f04244066368c67af/kubernetes-networking-namespace-pods","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":37,"uid":"bbb2a765a623ae38130206c7d94a160f","title":"Kubernetes + / Networking / Namespace (Workload)","uri":"db/kubernetes-networking-namespace-workload","url":"/d/bbb2a765a623ae38130206c7d94a160f/kubernetes-networking-namespace-workload","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":38,"uid":"7a18067ce943a40ae25454675c19ff5c","title":"Kubernetes + / Networking / Pod","uri":"db/kubernetes-networking-pod","url":"/d/7a18067ce943a40ae25454675c19ff5c/kubernetes-networking-pod","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":39,"uid":"728bf77cc1166d2f3133bf25846876cc","title":"Kubernetes + / Networking / Workload","uri":"db/kubernetes-networking-workload","url":"/d/728bf77cc1166d2f3133bf25846876cc/kubernetes-networking-workload","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":40,"uid":"919b92a8e8041bd567af9edab12c840c","title":"Kubernetes + / Persistent Volumes","uri":"db/kubernetes-persistent-volumes","url":"/d/919b92a8e8041bd567af9edab12c840c/kubernetes-persistent-volumes","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":41,"uid":"632e265de029684c40b21cb76bca4f94","title":"Kubernetes + / Proxy","uri":"db/kubernetes-proxy","url":"/d/632e265de029684c40b21cb76bca4f94/kubernetes-proxy","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":42,"uid":"F4bizNZ7k","title":"Kubernetes + / StatefulSets","uri":"db/kubernetes-statefulsets","url":"/d/F4bizNZ7k/kubernetes-statefulsets","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":46,"uid":"VESDBJS7k","title":"Kubernetes + / USE Method / Cluster(Windows)","uri":"db/kubernetes-use-method-cluster-windows","url":"/d/VESDBJS7k/kubernetes-use-method-cluster-windows","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":47,"uid":"YCBDf1I7k","title":"Kubernetes + / USE Method / Node(Windows)","uri":"db/kubernetes-use-method-node-windows","url":"/d/YCBDf1I7k/kubernetes-use-method-node-windows","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":16,"uid":"_sKhXTH7z","title":"Node + Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":43,"uid":"D4pVsnCGz","title":"Nodes (Node exporter)","uri":"db/nodes-node-exporter","url":"/d/D4pVsnCGz/nodes-node-exporter","slug":"","type":"dash-db","tags":["node - exporter"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":20,"uid":"6naEwcp7z","title":"Outgoing - Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":46,"uid":"UskST-Snz","title":"Prometheus-Collector - Health","uri":"db/prometheus-collector-health","url":"/d/UskST-Snz/prometheus-collector-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":14,"uid":"GIgvhSV7z","title":"Service - Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":42,"uid":"VdrOA7jGz","title":"USE + exporter"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":17,"uid":"6naEwcp7z","title":"Outgoing + Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":48,"uid":"UskST-Snz","title":"Prometheus-Collector + Health","uri":"db/prometheus-collector-health","url":"/d/UskST-Snz/prometheus-collector-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":20,"uid":"GIgvhSV7z","title":"Service + Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":44,"uid":"VdrOA7jGz","title":"USE Method / Cluster (Node exporter)","uri":"db/use-method-cluster-node-exporter","url":"/d/VdrOA7jGz/use-method-cluster-node-exporter","slug":"","type":"dash-db","tags":["node - exporter"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":43,"uid":"t5ajanjMk","title":"USE + exporter"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":45,"uid":"t5ajanjMk","title":"USE Method / Node (Node exporter)","uri":"db/use-method-node-node-exporter","url":"/d/t5ajanjMk/use-method-node-node-exporter","slug":"","type":"dash-db","tags":["node - exporter"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":15,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' + exporter"],"isStarred":false,"folderId":25,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":18,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' headers: cache-control: - no-cache @@ -3210,7 +3392,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 04:56:05 GMT + - Sat, 03 Dec 2022 18:04:39 GMT expires: - '-1' pragma: @@ -3218,8 +3400,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659761766.294.36.544848|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670090680.398.309.623082|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains transfer-encoding: @@ -3247,23 +3429,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-08-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-08-06T04:50:44.9413885Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-06T04:50:44.9413885Z"},"identity":{"principalId":"c977fab6-1d15-477a-b53c-14dc093cae36","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-12-03T17:57:19.8480165Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T17:57:19.8480165Z"},"identity":{"principalId":"3fcb21e0-a296-453c-a37b-3d24559f92d6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.1.8.1","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}' headers: cache-control: - no-cache content-length: - - '951' + - '1016' content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 04:56:05 GMT + - Sat, 03 Dec 2022 18:04:40 GMT etag: - - '"07003b9b-0000-0d00-0000-62edf42a0000"' + - '"7e0238ba-0000-0d00-0000-638b8f7a0000"' expires: - '-1' pragma: @@ -3297,7 +3479,7 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-08-01 response: @@ -3305,9 +3487,9 @@ interactions: string: 'null' headers: api-supported-versions: - - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01 + - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62?api-version=2022-08-01 cache-control: - no-cache content-length: @@ -3315,13 +3497,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 04:56:08 GMT + - Sat, 03 Dec 2022 18:04:42 GMT etag: - - '"0700899b-0000-0d00-0000-62edf4680000"' + - '"7e028bba-0000-0d00-0000-638b8fbb0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62?api-version=2022-08-01 pragma: - no-cache request-context: @@ -3351,54 +3533,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","name":"c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-08-06T04:56:08.2396776Z","error":{}}' - headers: - cache-control: - - no-cache - content-length: - - '515' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 06 Aug 2022 04:56:38 GMT - etag: - - '"7a004d9b-0000-0d00-0000-62edf46f0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - grafana delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --yes - User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","name":"c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-08-06T04:56:08.2396776Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","name":"0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-12-03T18:04:42.6645016Z","error":{}}' headers: cache-control: - no-cache @@ -3407,9 +3547,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 04:57:08 GMT + - Sat, 03 Dec 2022 18:05:12 GMT etag: - - '"7a004d9b-0000-0d00-0000-62edf46f0000"' + - '"90036222-0000-0d00-0000-638b8fbe0000"' expires: - '-1' pragma: @@ -3435,12 +3575,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","name":"c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-08-06T04:56:08.2396776Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","name":"0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-12-03T18:04:42.6645016Z","error":{}}' headers: cache-control: - no-cache @@ -3449,9 +3589,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 04:57:39 GMT + - Sat, 03 Dec 2022 18:05:43 GMT etag: - - '"7a004d9b-0000-0d00-0000-62edf46f0000"' + - '"90036222-0000-0d00-0000-638b8fbe0000"' expires: - '-1' pragma: @@ -3477,12 +3617,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","name":"c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-08-06T04:56:08.2396776Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","name":"0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-12-03T18:04:42.6645016Z","error":{}}' headers: cache-control: - no-cache @@ -3491,9 +3631,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 04:58:09 GMT + - Sat, 03 Dec 2022 18:06:13 GMT etag: - - '"7a004d9b-0000-0d00-0000-62edf46f0000"' + - '"90036222-0000-0d00-0000-638b8fbe0000"' expires: - '-1' pragma: @@ -3519,12 +3659,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","name":"c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-08-06T04:56:08.2396776Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","name":"0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-12-03T18:04:42.6645016Z","error":{}}' headers: cache-control: - no-cache @@ -3533,9 +3673,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 04:58:39 GMT + - Sat, 03 Dec 2022 18:06:43 GMT etag: - - '"7a004d9b-0000-0d00-0000-62edf46f0000"' + - '"90036222-0000-0d00-0000-638b8fbe0000"' expires: - '-1' pragma: @@ -3561,12 +3701,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","name":"c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-08-06T04:56:08.2396776Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","name":"0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-12-03T18:04:42.6645016Z","error":{}}' headers: cache-control: - no-cache @@ -3575,9 +3715,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 04:59:09 GMT + - Sat, 03 Dec 2022 18:07:13 GMT etag: - - '"7a004d9b-0000-0d00-0000-62edf46f0000"' + - '"90036222-0000-0d00-0000-638b8fbe0000"' expires: - '-1' pragma: @@ -3603,12 +3743,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","name":"c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-08-06T04:56:08.2396776Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","name":"0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-12-03T18:04:42.6645016Z","error":{}}' headers: cache-control: - no-cache @@ -3617,9 +3757,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 04:59:39 GMT + - Sat, 03 Dec 2022 18:07:43 GMT etag: - - '"7a004d9b-0000-0d00-0000-62edf46f0000"' + - '"90036222-0000-0d00-0000-638b8fbe0000"' expires: - '-1' pragma: @@ -3645,12 +3785,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","name":"c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-08-06T04:56:08.2396776Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","name":"0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-12-03T18:04:42.6645016Z","error":{}}' headers: cache-control: - no-cache @@ -3659,9 +3799,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 05:00:10 GMT + - Sat, 03 Dec 2022 18:08:13 GMT etag: - - '"7a004d9b-0000-0d00-0000-62edf46f0000"' + - '"90036222-0000-0d00-0000-638b8fbe0000"' expires: - '-1' pragma: @@ -3687,12 +3827,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","name":"c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-08-06T04:56:08.2396776Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","name":"0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-12-03T18:04:42.6645016Z","error":{}}' headers: cache-control: - no-cache @@ -3701,9 +3841,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 05:00:40 GMT + - Sat, 03 Dec 2022 18:08:43 GMT etag: - - '"7a004d9b-0000-0d00-0000-62edf46f0000"' + - '"90036222-0000-0d00-0000-638b8fbe0000"' expires: - '-1' pragma: @@ -3729,12 +3869,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","name":"c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-08-06T04:56:08.2396776Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","name":"0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-12-03T18:04:42.6645016Z","error":{}}' headers: cache-control: - no-cache @@ -3743,9 +3883,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 05:01:11 GMT + - Sat, 03 Dec 2022 18:09:14 GMT etag: - - '"7a004d9b-0000-0d00-0000-62edf46f0000"' + - '"90036222-0000-0d00-0000-638b8fbe0000"' expires: - '-1' pragma: @@ -3771,12 +3911,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","name":"c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-08-06T04:56:08.2396776Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","name":"0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-12-03T18:04:42.6645016Z","error":{}}' headers: cache-control: - no-cache @@ -3785,9 +3925,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 05:01:41 GMT + - Sat, 03 Dec 2022 18:09:44 GMT etag: - - '"7a004d9b-0000-0d00-0000-62edf46f0000"' + - '"90036222-0000-0d00-0000-638b8fbe0000"' expires: - '-1' pragma: @@ -3813,12 +3953,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","name":"c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-08-06T04:56:08.2396776Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","name":"0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-12-03T18:04:42.6645016Z","error":{}}' headers: cache-control: - no-cache @@ -3827,9 +3967,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 05:02:11 GMT + - Sat, 03 Dec 2022 18:10:15 GMT etag: - - '"7a004d9b-0000-0d00-0000-62edf46f0000"' + - '"90036222-0000-0d00-0000-638b8fbe0000"' expires: - '-1' pragma: @@ -3855,12 +3995,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","name":"c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-08-06T04:56:08.2396776Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","name":"0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-12-03T18:04:42.6645016Z","error":{}}' headers: cache-control: - no-cache @@ -3869,9 +4009,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 05:02:41 GMT + - Sat, 03 Dec 2022 18:10:45 GMT etag: - - '"7a004d9b-0000-0d00-0000-62edf46f0000"' + - '"90036222-0000-0d00-0000-638b8fbe0000"' expires: - '-1' pragma: @@ -3897,12 +4037,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","name":"c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Succeeded","startTime":"2022-08-06T04:56:08.2396776Z","endTime":"2022-08-06T05:02:50.6379553Z","error":{},"properties":null}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","name":"0252ac0a-0f5d-4dea-b33e-d0ee4c88680f*F67BC401989A8BA0125A4020E3ECFE2F1F1CCA8BBD0C6D6619EFF53847A09C62","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Succeeded","startTime":"2022-12-03T18:04:42.6645016Z","endTime":"2022-12-03T18:11:05.0045057Z","error":{},"properties":null}' headers: cache-control: - no-cache @@ -3911,9 +4051,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 05:03:11 GMT + - Sat, 03 Dec 2022 18:11:15 GMT etag: - - '"7a002dab-0000-0d00-0000-62edf5fa0000"' + - '"90039b22-0000-0d00-0000-638b91390000"' expires: - '-1' pragma: @@ -3943,15 +4083,15 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.8.8 (Windows-10-10.0.22000-SP0) msrest/0.7.0 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.39.0 (MSI) + - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20%27c977fab6-1d15-477a-b53c-14dc093cae36%27&api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20%273fcb21e0-a296-453c-a37b-3d24559f92d6%27&api-version=2020-04-01-preview response: body: - string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"c977fab6-1d15-477a-b53c-14dc093cae36","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-06T04:55:31.2879909Z","updatedOn":"2022-08-06T04:55:31.2879909Z","createdBy":"a30db067-cde1-49be-95bb-9619a8cc8617","updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}]}' + string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"3fcb21e0-a296-453c-a37b-3d24559f92d6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-03T18:04:05.6919919Z","updatedOn":"2022-12-03T18:04:05.6919919Z","createdBy":"a30db067-cde1-49be-95bb-9619a8cc8617","updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}]}' headers: cache-control: - no-cache @@ -3960,7 +4100,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 05:03:12 GMT + - Sat, 03 Dec 2022 18:11:16 GMT expires: - '-1' pragma: @@ -3996,15 +4136,15 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.8.8 (Windows-10-10.0.22000-SP0) msrest/0.7.0 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.39.0 (MSI) + - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) accept-language: - en-US method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"c977fab6-1d15-477a-b53c-14dc093cae36","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-06T04:55:31.2879909Z","updatedOn":"2022-08-06T04:55:31.2879909Z","createdBy":"a30db067-cde1-49be-95bb-9619a8cc8617","updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"3fcb21e0-a296-453c-a37b-3d24559f92d6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-03T18:04:05.6919919Z","updatedOn":"2022-12-03T18:04:05.6919919Z","createdBy":"a30db067-cde1-49be-95bb-9619a8cc8617","updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' headers: cache-control: - no-cache @@ -4013,13 +4153,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 05:03:14 GMT + - Sat, 03 Dec 2022 18:11:19 GMT expires: - '-1' pragma: - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4045,21 +4183,21 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Dashboard/grafana?api-version=2022-08-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/peqitest/providers/Microsoft.Dashboard/grafana/peqitest0","name":"peqitest0","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"peqi@microsoft.com","createdByType":"User","createdAt":"2022-06-22T20:08:33.7472212Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2022-07-22T23:22:52.1164326Z"},"identity":{"principalId":"54deaee2-407c-4aeb-9793-57f7e325ca00","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://peqitest0-bwh5d8f4hybnd6ad.eus.grafana.azure.com","zoneRedundancy":"Disabled","autoGeneratedDomainNameLabelScope":"TenantReuse","publicNetworkAccess":"Enabled","apiKey":"Disabled","deterministicOutboundIP":"Disabled"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-01T06:13:14.848094Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"grafanaVersion":"9.1.8.1","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","provisioningState":"Succeeded","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}]}' headers: cache-control: - no-cache content-length: - - '958' + - '1096' content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 05:03:15 GMT + - Sat, 03 Dec 2022 18:11:20 GMT expires: - '-1' pragma: @@ -4071,12 +4209,15 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 9ad67305-788b-4bdb-866e-83140121c306 - - e9ccf07d-8f78-49ee-84e5-2542ad4e6980 - - 06dc780e-7fd5-4838-9ec0-3423f801a905 - - a082214b-d218-4b81-bfa8-267d1f121492 - - c1a25ed1-d6b1-4d58-b202-ce1fbf463a40 - - ccd0bdf0-bb0e-4c34-9c32-2ea514379bb7 + - 0da9716f-53ed-433a-b808-c3f26f32e86d + - d42837d7-20db-4361-a335-863756b4f8b9 + - 443be483-e350-44e4-9af3-691d7fa8b06b + - 187da709-7e70-4fa7-91f9-c570a8ee776e + - 2ff41f81-c4fe-4de3-a746-6c89e9b61b52 + - 997b8e12-c24d-469c-b6bc-477d2f13b0ef + - 71c36b42-d056-41d2-8bcb-3589cb4c1a8c + - 82ff3667-fe05-4772-a4b4-47c06e00ed3c + - 36a6cb53-40d6-4b68-b9ac-021815291940 status: code: 200 message: OK diff --git a/src/amg/azext_amg/tests/latest/recordings/test_api_key_e2e.yaml b/src/amg/azext_amg/tests/latest/recordings/test_api_key_e2e.yaml index e4901b97c67..4607cdbb8bb 100644 --- a/src/amg/azext_amg/tests/latest/recordings/test_api_key_e2e.yaml +++ b/src/amg/azext_amg/tests/latest/recordings/test_api_key_e2e.yaml @@ -18,31 +18,31 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey?api-version=2022-08-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-08-06T05:09:17.8073666Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-06T05:09:17.8073666Z"},"identity":{"principalId":"cb0d1bae-d01a-4697-9121-f7ab63036aea","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-12-03T18:31:07.5041083Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T18:31:07.5041083Z"},"identity":{"principalId":"317480eb-b616-4fa7-941b-c0156e74a463","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}' headers: api-supported-versions: - - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01 + - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E?api-version=2022-08-01 + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64?api-version=2022-08-01 cache-control: - no-cache content-length: - - '1001' + - '1074' content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 05:09:18 GMT + - Sat, 03 Dec 2022 18:31:08 GMT etag: - - '"fd00a878-0000-0600-0000-62edf77f0000"' + - '"0000343a-0000-0600-0000-638b95ec0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E?api-version=2022-08-01 + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64?api-version=2022-08-01 pragma: - no-cache request-context: @@ -72,12 +72,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E","name":"bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2022-08-06T05:09:19.1046067Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64","name":"66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2022-12-03T18:31:08.6837205Z"}' headers: cache-control: - no-cache @@ -86,9 +86,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 05:09:48 GMT + - Sat, 03 Dec 2022 18:31:38 GMT etag: - - '"3101e8b2-0000-0600-0000-62edf77f0000"' + - '"0000330a-0000-0600-0000-638b95ec0000"' expires: - '-1' pragma: @@ -118,12 +118,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E","name":"bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2022-08-06T05:09:19.1046067Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64","name":"66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2022-12-03T18:31:08.6837205Z"}' headers: cache-control: - no-cache @@ -132,9 +132,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 05:10:19 GMT + - Sat, 03 Dec 2022 18:32:08 GMT etag: - - '"3101e8b2-0000-0600-0000-62edf77f0000"' + - '"0000330a-0000-0600-0000-638b95ec0000"' expires: - '-1' pragma: @@ -164,12 +164,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E","name":"bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2022-08-06T05:09:19.1046067Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64","name":"66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2022-12-03T18:31:08.6837205Z"}' headers: cache-control: - no-cache @@ -178,9 +178,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 05:10:49 GMT + - Sat, 03 Dec 2022 18:32:39 GMT etag: - - '"3101e8b2-0000-0600-0000-62edf77f0000"' + - '"0000330a-0000-0600-0000-638b95ec0000"' expires: - '-1' pragma: @@ -210,12 +210,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E","name":"bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2022-08-06T05:09:19.1046067Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64","name":"66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2022-12-03T18:31:08.6837205Z"}' headers: cache-control: - no-cache @@ -224,9 +224,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 05:11:19 GMT + - Sat, 03 Dec 2022 18:33:09 GMT etag: - - '"3101e8b2-0000-0600-0000-62edf77f0000"' + - '"0000330a-0000-0600-0000-638b95ec0000"' expires: - '-1' pragma: @@ -256,12 +256,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E","name":"bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2022-08-06T05:09:19.1046067Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64","name":"66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2022-12-03T18:31:08.6837205Z"}' headers: cache-control: - no-cache @@ -270,9 +270,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 05:11:49 GMT + - Sat, 03 Dec 2022 18:33:39 GMT etag: - - '"3101e8b2-0000-0600-0000-62edf77f0000"' + - '"0000330a-0000-0600-0000-638b95ec0000"' expires: - '-1' pragma: @@ -302,12 +302,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E","name":"bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2022-08-06T05:09:19.1046067Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64","name":"66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2022-12-03T18:31:08.6837205Z"}' headers: cache-control: - no-cache @@ -316,9 +316,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 05:12:19 GMT + - Sat, 03 Dec 2022 18:34:09 GMT etag: - - '"3101e8b2-0000-0600-0000-62edf77f0000"' + - '"0000330a-0000-0600-0000-638b95ec0000"' expires: - '-1' pragma: @@ -348,12 +348,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E","name":"bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2022-08-06T05:09:19.1046067Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64","name":"66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2022-12-03T18:31:08.6837205Z"}' headers: cache-control: - no-cache @@ -362,9 +362,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 05:12:49 GMT + - Sat, 03 Dec 2022 18:34:39 GMT etag: - - '"3101e8b2-0000-0600-0000-62edf77f0000"' + - '"0000330a-0000-0600-0000-638b95ec0000"' expires: - '-1' pragma: @@ -394,12 +394,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E","name":"bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2022-08-06T05:09:19.1046067Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64","name":"66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2022-12-03T18:31:08.6837205Z"}' headers: cache-control: - no-cache @@ -408,9 +408,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 05:13:19 GMT + - Sat, 03 Dec 2022 18:35:09 GMT etag: - - '"3101e8b2-0000-0600-0000-62edf77f0000"' + - '"0000330a-0000-0600-0000-638b95ec0000"' expires: - '-1' pragma: @@ -440,12 +440,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E","name":"bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2022-08-06T05:09:19.1046067Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64","name":"66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2022-12-03T18:31:08.6837205Z"}' headers: cache-control: - no-cache @@ -454,9 +454,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 05:13:49 GMT + - Sat, 03 Dec 2022 18:35:39 GMT etag: - - '"3101e8b2-0000-0600-0000-62edf77f0000"' + - '"0000330a-0000-0600-0000-638b95ec0000"' expires: - '-1' pragma: @@ -486,12 +486,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E","name":"bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2022-08-06T05:09:19.1046067Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64","name":"66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2022-12-03T18:31:08.6837205Z"}' headers: cache-control: - no-cache @@ -500,9 +500,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 05:14:19 GMT + - Sat, 03 Dec 2022 18:36:09 GMT etag: - - '"3101e8b2-0000-0600-0000-62edf77f0000"' + - '"0000330a-0000-0600-0000-638b95ec0000"' expires: - '-1' pragma: @@ -532,12 +532,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E","name":"bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2022-08-06T05:09:19.1046067Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64","name":"66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2022-12-03T18:31:08.6837205Z"}' headers: cache-control: - no-cache @@ -546,9 +546,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 05:14:50 GMT + - Sat, 03 Dec 2022 18:36:40 GMT etag: - - '"3101e8b2-0000-0600-0000-62edf77f0000"' + - '"0000330a-0000-0600-0000-638b95ec0000"' expires: - '-1' pragma: @@ -578,12 +578,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E?api-version=2022-08-01 + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E","name":"bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Succeeded","startTime":"2022-08-06T05:09:19.1046067Z","endTime":"2022-08-06T05:14:55.5876249Z","error":{},"properties":null}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64","name":"66246874-d7ff-4c49-a632-021d32fd20e6*08891A29A8E823E2FB9B22CB9FBB10685F4BD5BB64FE28CAC83E69CD600A2B64","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Succeeded","startTime":"2022-12-03T18:31:08.6837205Z","endTime":"2022-12-03T18:37:03.7964664Z","error":{},"properties":null}' headers: cache-control: - no-cache @@ -592,9 +592,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 05:15:20 GMT + - Sat, 03 Dec 2022 18:37:10 GMT etag: - - '"310174d5-0000-0600-0000-62edf8cf0000"' + - '"0000340a-0000-0600-0000-638b974f0000"' expires: - '-1' pragma: @@ -624,23 +624,23 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey?api-version=2022-08-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-08-06T05:09:17.8073666Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-06T05:09:17.8073666Z"},"identity":{"principalId":"cb0d1bae-d01a-4697-9121-f7ab63036aea","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-12-03T18:31:07.5041083Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T18:31:07.5041083Z"},"identity":{"principalId":"317480eb-b616-4fa7-941b-c0156e74a463","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.1.8.1","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}' headers: cache-control: - no-cache content-length: - - '952' + - '1027' content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 05:15:20 GMT + - Sat, 03 Dec 2022 18:37:10 GMT etag: - - '"fd00ef85-0000-0600-0000-62edf8cf0000"' + - '"00004d3a-0000-0600-0000-638b974f0000"' expires: - '-1' pragma: @@ -668,7 +668,7 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.8 (Windows-10-10.0.22000-SP0) msrest/0.7.0 msrest_azure/0.6.4 azure-graphrbac/0.60.0 + - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-graphrbac/0.60.0 Azure-SDK-For-Python accept-language: - en-US @@ -676,10 +676,10 @@ interactions: uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/me?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"a30db067-cde1-49be-95bb-9619a8cc8617","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[{"disabledPlans":["b76fb638-6ba6-402a-b9f9-83d28acb3d86","cd31b152-6326-4d1b-ae1b-997b625182e6","a413a9ff-720c-4822-98ef-2f37c2a21f4c","a6520331-d7d4-4276-95f5-15c0933bc757","ded3d325-1bdc-453e-8432-5bac26d7a014","afa73018-811e-46e9-988f-f75d2b1b8430","b21a6b06-1988-436e-a07b-51ec6d9f52ad","531ee2f8-b1cb-453b-9c21-d2180d014ca5","bf28f719-7844-4079-9c78-c1307898e192","28b0fa46-c39a-4188-89e2-58e979a6b014","199a5c09-e0ca-4e37-8f7c-b05d533e1ea2","65cc641f-cccd-4643-97e0-a17e3045e541","e26c2fcc-ab91-4a61-b35c-03cdc8dddf66","46129a58-a698-46f0-aa5b-17f6586297d9","6db1f1db-2b46-403f-be40-e39395f08dbb","6dc145d6-95dd-4191-b9c3-185575ee6f6b","41fcdd7d-4733-4863-9cf4-c65b83ce2df4","c4801e8a-cb58-4c35-aca6-f2dcc106f287","0898bdbb-73b0-471a-81e5-20f1fe4dd66e","617b097b-4b93-4ede-83de-5f075bb5fb2f","33c4f319-9bdd-48d6-9c4d-410b750a4a5a","4828c8ec-dc2e-4779-b502-87ac9ce28ab7","3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"],"skuId":"c7df2760-2c81-4ef7-b578-5b5392b571df"},{"disabledPlans":["b622badb-1b45-48d5-920f-4b27a2c0996c"],"skuId":"3d957427-ecdc-4df2-aacd-01cc9d519da8"},{"disabledPlans":[],"skuId":"85aae730-b3d1-4f99-bb28-c9f81b05137c"},{"disabledPlans":[],"skuId":"9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"f30db892-07e9-47e9-837c-80727f46fd3d"},{"disabledPlans":[],"skuId":"34715a50-7d92-426f-99e9-f815e0ae1de5"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":[],"skuId":"488ba24a-39a9-4473-8ee5-19291e71b002"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"disabledPlans":["0b03f40b-c404-40c3-8651-2aceb74365fa","b650d915-9886-424b-a08d-633cede56f57","e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72","fe71d6c3-a2ea-4499-9778-da042bf08063","fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"],"skuId":"ea126fc5-a19e-42e2-a731-da9d437bffcf"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"}],"assignedPlans":[{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WindowsUpdateforBusinessCloudExtensions","servicePlanId":"7bf960f6-2cd9-443a-8046-5dbff9558365"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"18fa3aba-b085-4105-87d7-55617b8585e6"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ERP","servicePlanId":"69f07c66-bee4-4222-b051-195095efee5b"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"0a05d977-a21a-45b2-91ce-61c240dbafa2"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"7e6d7d78-73de-46ba-83b1-6d25117334ba"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WorkplaceAnalytics","servicePlanId":"f477b0f0-3bb1-4890-940c-40fcee6ce05f"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"f3d5636e-ddc2-41bf-bba6-ca6fadece269"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftPrint","servicePlanId":"795f6fe0-cc4d-4773-b050-5dde4dc704c9"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftFormsProTest","servicePlanId":"97f29a83-1a20-44ff-bf48-5e4ad11f3e51"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"fe47a034-ab6d-4cb4-bdb4-9551354b177e"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"2d589a15-b171-4e61-9b5f-31d15eeb2872"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"59231cdf-b40d-4534-a93e-14d0cd31d27e"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b622badb-1b45-48d5-920f-4b27a2c0996c"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2021-04-15T15:12:57Z","capabilityStatus":"Deleted","service":"MIPExchangeSolutions","servicePlanId":"cd31b152-6326-4d1b-ae1b-997b625182e6"},{"assignedTimestamp":"2020-12-22T01:12:21Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"2f442157-a11c-46b9-ae5b-6e39ff4e5849"},{"assignedTimestamp":"2020-11-03T16:30:18Z","capabilityStatus":"Deleted","service":"M365CommunicationCompliance","servicePlanId":"a413a9ff-720c-4822-98ef-2f37c2a21f4c"},{"assignedTimestamp":"2020-08-14T15:32:15Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2019-11-04T20:01:59Z","capabilityStatus":"Enabled","service":"WhiteboardServices","servicePlanId":"4a51bca5-1eff-43f5-878c-177680f191af"},{"assignedTimestamp":"2019-10-14T20:43:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"5136a095-5cf0-4aff-bec3-e84448b38ea5"},{"assignedTimestamp":"2019-10-14T20:43:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb0351d-3b08-4503-993d-383af8de41e3"},{"assignedTimestamp":"2019-03-27T23:17:23Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"50e68c76-46c6-4674-81f9-75456511b170"},{"assignedTimestamp":"2019-03-27T23:17:23Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"17ab22cd-a0b3-4536-910a-cb6eb12696c0"},{"assignedTimestamp":"2018-11-30T00:32:45Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"4828c8ec-dc2e-4779-b502-87ac9ce28ab7"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"5a10155d-f5c1-411a-a8ec-e99aae125390"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"159f4cd6-e380-449f-a816-af1a9ef76344"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"2125cfd7-2110-4567-83c4-c1cd5275163d"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"c4048e79-4474-4c74-ba9b-c31ff225e511"},{"assignedTimestamp":"2018-03-20T02:14:40Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"acffdce6-c30f-4dc2-81c0-372e33c515ec"},{"assignedTimestamp":"2018-01-09T10:35:29Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2017-12-31T03:27:36Z","capabilityStatus":"Deleted","service":"Adallom","servicePlanId":"932ad362-64a8-4783-9106-97849a1a30b9"},{"assignedTimestamp":"2017-12-17T18:29:20Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"ProcessSimple","servicePlanId":"76846ad7-7776-4c40-a281-a386362dd1b9"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"PowerAppsService","servicePlanId":"c68f8d98-5534-41c8-bf36-22fa496fa792"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"9e700747-8b1d-45e5-ab8d-ef187ceec156"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"2789c901-c14e-48ab-a76a-be334d9d793a"},{"assignedTimestamp":"2017-07-06T19:19:57Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2017-06-12T08:23:48Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2017-05-12T23:33:35Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"8e0c0a52-6a6c-4d40-8370-dd62790dcd70"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Deleted","service":"AzureAnalysis","servicePlanId":"2049e525-b859-401b-b2a0-e0a31c4b1fe4"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2016-12-19T03:16:33Z","capabilityStatus":"Deleted","service":"PowerBI","servicePlanId":"fc0a60aa-feee-4746-a0e3-aecfe81a38dd"},{"assignedTimestamp":"2016-11-18T18:51:08Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2016-11-18T18:51:08Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2012-10-10T07:21:11Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"},{"assignedTimestamp":"2015-07-30T06:17:13Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"27216c54-caf8-4d0d-97e2-517afb5c08f6"}],"city":"REDMOND","companyName":"Microsoft","consentProvidedForMinor":null,"country":null,"createdDateTime":null,"creationType":null,"department":"Azure + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"a30db067-cde1-49be-95bb-9619a8cc8617","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[{"disabledPlans":[],"skuId":"b30411f5-fea1-4a59-9ad9-3db7c7ead579"},{"disabledPlans":[],"skuId":"4a51bf65-409c-4a91-b845-1121b571cc9d"},{"disabledPlans":["c815c93d-0759-4bb8-b857-bc921a71be83","7162bd38-edae-4022-83a7-c5837f951759","b622badb-1b45-48d5-920f-4b27a2c0996c","b74d57b2-58e9-484a-9731-aeccbba954f0"],"skuId":"61902246-d7cb-453e-85cd-53ee28eec138"},{"disabledPlans":["b76fb638-6ba6-402a-b9f9-83d28acb3d86","cd31b152-6326-4d1b-ae1b-997b625182e6","a413a9ff-720c-4822-98ef-2f37c2a21f4c","a6520331-d7d4-4276-95f5-15c0933bc757","ded3d325-1bdc-453e-8432-5bac26d7a014","afa73018-811e-46e9-988f-f75d2b1b8430","b21a6b06-1988-436e-a07b-51ec6d9f52ad","531ee2f8-b1cb-453b-9c21-d2180d014ca5","bf28f719-7844-4079-9c78-c1307898e192","28b0fa46-c39a-4188-89e2-58e979a6b014","199a5c09-e0ca-4e37-8f7c-b05d533e1ea2","65cc641f-cccd-4643-97e0-a17e3045e541","e26c2fcc-ab91-4a61-b35c-03cdc8dddf66","46129a58-a698-46f0-aa5b-17f6586297d9","6db1f1db-2b46-403f-be40-e39395f08dbb","6dc145d6-95dd-4191-b9c3-185575ee6f6b","41fcdd7d-4733-4863-9cf4-c65b83ce2df4","c4801e8a-cb58-4c35-aca6-f2dcc106f287","0898bdbb-73b0-471a-81e5-20f1fe4dd66e","617b097b-4b93-4ede-83de-5f075bb5fb2f","33c4f319-9bdd-48d6-9c4d-410b750a4a5a","4828c8ec-dc2e-4779-b502-87ac9ce28ab7","3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"],"skuId":"c7df2760-2c81-4ef7-b578-5b5392b571df"},{"disabledPlans":["b622badb-1b45-48d5-920f-4b27a2c0996c"],"skuId":"3d957427-ecdc-4df2-aacd-01cc9d519da8"},{"disabledPlans":[],"skuId":"85aae730-b3d1-4f99-bb28-c9f81b05137c"},{"disabledPlans":[],"skuId":"9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"f30db892-07e9-47e9-837c-80727f46fd3d"},{"disabledPlans":[],"skuId":"34715a50-7d92-426f-99e9-f815e0ae1de5"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":[],"skuId":"488ba24a-39a9-4473-8ee5-19291e71b002"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"disabledPlans":["0b03f40b-c404-40c3-8651-2aceb74365fa","b650d915-9886-424b-a08d-633cede56f57","e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72","fe71d6c3-a2ea-4499-9778-da042bf08063","fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"],"skuId":"ea126fc5-a19e-42e2-a731-da9d437bffcf"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"}],"assignedPlans":[{"assignedTimestamp":"2022-11-23T02:23:51Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2022-11-23T02:23:51Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2022-11-23T02:23:51Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2022-11-23T02:23:51Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2022-11-23T02:23:51Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2022-11-23T02:23:51Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2022-11-23T02:23:51Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2022-11-23T02:23:51Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b622badb-1b45-48d5-920f-4b27a2c0996c"},{"assignedTimestamp":"2022-11-23T02:23:51Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"6ea4c1ef-c259-46df-bce2-943342cd3cb2"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"74d93933-6f22-436e-9441-66d205435abb"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"91f50f7b-2204-4803-acac-5cf5668b8b39"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"dc789ed8-0170-4b65-a415-eb77d5bb350a"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"ea2cf03b-ac60-46ae-9c1d-eeaeb63cec86"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"c5002c70-f725-4367-b409-f0eff4fee6c0"},{"assignedTimestamp":"2022-11-09T23:14:02Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"60bf28f9-2b70-4522-96f7-335f5e06c941"},{"assignedTimestamp":"2022-08-07T02:18:34Z","capabilityStatus":"Enabled","service":"Viva-Goals","servicePlanId":"b44c6eaf-5c9f-478c-8f16-8cea26353bfb"},{"assignedTimestamp":"2022-08-07T02:18:34Z","capabilityStatus":"Enabled","service":"Modern-Workplace-Core-ITaas","servicePlanId":"9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WindowsUpdateforBusinessCloudExtensions","servicePlanId":"7bf960f6-2cd9-443a-8046-5dbff9558365"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"18fa3aba-b085-4105-87d7-55617b8585e6"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ERP","servicePlanId":"69f07c66-bee4-4222-b051-195095efee5b"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"0a05d977-a21a-45b2-91ce-61c240dbafa2"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"7e6d7d78-73de-46ba-83b1-6d25117334ba"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WorkplaceAnalytics","servicePlanId":"f477b0f0-3bb1-4890-940c-40fcee6ce05f"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"f3d5636e-ddc2-41bf-bba6-ca6fadece269"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftPrint","servicePlanId":"795f6fe0-cc4d-4773-b050-5dde4dc704c9"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftFormsProTest","servicePlanId":"97f29a83-1a20-44ff-bf48-5e4ad11f3e51"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"fe47a034-ab6d-4cb4-bdb4-9551354b177e"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"2d589a15-b171-4e61-9b5f-31d15eeb2872"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"59231cdf-b40d-4534-a93e-14d0cd31d27e"},{"assignedTimestamp":"2021-04-15T15:12:57Z","capabilityStatus":"Deleted","service":"MIPExchangeSolutions","servicePlanId":"cd31b152-6326-4d1b-ae1b-997b625182e6"},{"assignedTimestamp":"2020-12-22T01:12:21Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"2f442157-a11c-46b9-ae5b-6e39ff4e5849"},{"assignedTimestamp":"2020-11-03T16:30:18Z","capabilityStatus":"Deleted","service":"M365CommunicationCompliance","servicePlanId":"a413a9ff-720c-4822-98ef-2f37c2a21f4c"},{"assignedTimestamp":"2020-08-14T15:32:15Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2019-11-04T20:01:59Z","capabilityStatus":"Enabled","service":"WhiteboardServices","servicePlanId":"4a51bca5-1eff-43f5-878c-177680f191af"},{"assignedTimestamp":"2019-10-14T20:43:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"5136a095-5cf0-4aff-bec3-e84448b38ea5"},{"assignedTimestamp":"2019-10-14T20:43:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb0351d-3b08-4503-993d-383af8de41e3"},{"assignedTimestamp":"2019-03-27T23:17:23Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"50e68c76-46c6-4674-81f9-75456511b170"},{"assignedTimestamp":"2019-03-27T23:17:23Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"17ab22cd-a0b3-4536-910a-cb6eb12696c0"},{"assignedTimestamp":"2018-11-30T00:32:45Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"4828c8ec-dc2e-4779-b502-87ac9ce28ab7"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"5a10155d-f5c1-411a-a8ec-e99aae125390"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"159f4cd6-e380-449f-a816-af1a9ef76344"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"2125cfd7-2110-4567-83c4-c1cd5275163d"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"c4048e79-4474-4c74-ba9b-c31ff225e511"},{"assignedTimestamp":"2018-03-20T02:14:40Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"acffdce6-c30f-4dc2-81c0-372e33c515ec"},{"assignedTimestamp":"2018-01-09T10:35:29Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2017-12-31T03:27:36Z","capabilityStatus":"Deleted","service":"Adallom","servicePlanId":"932ad362-64a8-4783-9106-97849a1a30b9"},{"assignedTimestamp":"2017-12-17T18:29:20Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"ProcessSimple","servicePlanId":"76846ad7-7776-4c40-a281-a386362dd1b9"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"PowerAppsService","servicePlanId":"c68f8d98-5534-41c8-bf36-22fa496fa792"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"9e700747-8b1d-45e5-ab8d-ef187ceec156"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"2789c901-c14e-48ab-a76a-be334d9d793a"},{"assignedTimestamp":"2017-07-06T19:19:57Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2017-06-12T08:23:48Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2017-05-12T23:33:35Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"8e0c0a52-6a6c-4d40-8370-dd62790dcd70"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Deleted","service":"AzureAnalysis","servicePlanId":"2049e525-b859-401b-b2a0-e0a31c4b1fe4"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2016-12-19T03:16:33Z","capabilityStatus":"Deleted","service":"PowerBI","servicePlanId":"fc0a60aa-feee-4746-a0e3-aecfe81a38dd"},{"assignedTimestamp":"2016-11-18T18:51:08Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2016-11-18T18:51:08Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2012-10-10T07:21:11Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"},{"assignedTimestamp":"2015-07-30T06:17:13Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"27216c54-caf8-4d0d-97e2-517afb5c08f6"}],"city":"REDMOND","companyName":"Microsoft","consentProvidedForMinor":null,"country":null,"createdDateTime":null,"creationType":null,"department":"Azure Dev Exp","dirSyncEnabled":true,"displayName":"Yugang Wang","employeeId":null,"facsimileTelephoneNumber":null,"givenName":"Yugang","immutableId":"138058","isCompromised":null,"jobTitle":"PRINCIPAL - SWE MGR","lastDirSyncTime":"2022-07-30T02:00:31Z","legalAgeGroupClassification":null,"mail":"example@example.com","mailNickname":"yugangw","mobile":null,"onPremisesDistinguishedName":"CN=Yugang - Wang,OU=MSE,OU=Users,OU=CoreIdentity,DC=redmond,DC=corp,DC=microsoft,DC=com","onPremisesSecurityIdentifier":"S-1-5-21-2127521184-1604012920-1887927527-415191","otherMails":[],"passwordPolicies":"DisablePasswordExpiration","passwordProfile":null,"physicalDeliveryOfficeName":"18/3700FL","postalCode":null,"preferredLanguage":null,"provisionedPlans":[{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"Netbreeze"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"}],"provisioningErrors":[],"proxyAddresses":["X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yugangw","X500:/o=SDF/ou=Exchange + SWE MANAGER","lastDirSyncTime":"2022-09-29T00:42:51Z","legalAgeGroupClassification":null,"mail":"example@example.com","mailNickname":"yugangw","mobile":null,"onPremisesDistinguishedName":"CN=Yugang + Wang,OU=MSE,OU=Users,OU=CoreIdentity,DC=redmond,DC=corp,DC=microsoft,DC=com","onPremisesSecurityIdentifier":"S-1-5-21-2127521184-1604012920-1887927527-415191","otherMails":[],"passwordPolicies":"DisablePasswordExpiration","passwordProfile":null,"physicalDeliveryOfficeName":"18/3700FL","postalCode":null,"preferredLanguage":null,"provisionedPlans":[{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"Netbreeze"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"}],"provisioningErrors":[],"proxyAddresses":["X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yugangw","X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yugang Wang (Volt)e3d6fb0c","X500:/o=microsoft/ou=northamerica/cn=Recipients/cn=572513","X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yugangw","X500:/o=microsoft/ou=External @@ -701,25 +701,25 @@ interactions: cache-control: - no-cache content-length: - - '23104' + - '24836' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Sat, 06 Aug 2022 05:15:20 GMT + - Sat, 03 Dec 2022 18:37:10 GMT duration: - - '4538492' + - '1794688' expires: - '-1' ocp-aad-diagnostics-server-name: - - yyuJ/12Nv6hG1eilgn+xNPmvhFCAufkz5XdpfLtVshc= + - QtHkfRY3qvzCTvXrtqU2VI1Vnl7QlDUsK/8TdqSeb+g= ocp-aad-session-key: - - QzlrksXUmO2tuNUMcoEbHl-mE-HT-1i8-iDGP8G--42QW1r6GgDxKtaP1WIuAoH62GpY1zXHKFBkCBE1GMTSBic-QcpqEeAD7M0Y37wQdzPs3A9URG8u7OJMkDHbP0Hn.C9xwRooouDfZpMCYIQ5eOZAjy3nkg_1NvUzbJqkLjMY + - weQZ8juLNBIIB2hC9X6GauQO9Pio6VE4_hiF-4YP8wuTGmsI5Vad1C8Ge4ynXVNKbYFbivUpAT7910EN5O-uLZhmevUiYoKuIoxsqQqqRKM1i5jX6OhLwSihOAXkcQzI.LyQdM-93B__9GWWDEtDok-rRlAfeMbBPcmj7G4LlBXA pragma: - no-cache request-id: - - 94c63643-3b1e-4dd6-9c85-74edb0f54dbd + - 6cbe7d0b-f870-471b-b86c-0ded43e8afbb strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -747,8 +747,8 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - python/3.8.8 (Windows-10-10.0.22000-SP0) msrest/0.7.0 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.39.0 (MSI) + - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) accept-language: - en-US method: GET @@ -765,7 +765,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 05:15:21 GMT + - Sat, 03 Dec 2022 18:37:10 GMT expires: - '-1' pragma: @@ -802,15 +802,15 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - python/3.8.8 (Windows-10-10.0.22000-SP0) msrest/0.7.0 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.39.0 (MSI) + - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","condition":null,"conditionVersion":null,"createdOn":"2022-08-06T05:15:22.4304708Z","updatedOn":"2022-08-06T05:15:22.7429837Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","condition":null,"conditionVersion":null,"createdOn":"2022-12-03T18:37:11.6348467Z","updatedOn":"2022-12-03T18:37:12.0567372Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -819,7 +819,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 05:15:24 GMT + - Sat, 03 Dec 2022 18:37:13 GMT expires: - '-1' pragma: @@ -849,8 +849,8 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - python/3.8.8 (Windows-10-10.0.22000-SP0) msrest/0.7.0 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.39.0 (MSI) + - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) accept-language: - en-US method: GET @@ -858,16 +858,16 @@ interactions: response: body: string: '{"value":[{"properties":{"roleName":"Monitoring Reader","type":"BuiltInRole","description":"Can - read all monitoring data.","assignableScopes":["/"],"permissions":[{"actions":["*/read","Microsoft.OperationalInsights/workspaces/search/action","Microsoft.Support/*"],"notActions":[],"dataActions":["Microsoft.Monitor/accounts/data/metrics/read"],"notDataActions":[]}],"createdOn":"2016-09-21T19:19:52.4939376Z","updatedOn":"2022-07-07T00:23:17.8373589Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","type":"Microsoft.Authorization/roleDefinitions","name":"43d0d8ad-25c7-4714-9337-8ba259a9fe05"}]}' + read all monitoring data.","assignableScopes":["/"],"permissions":[{"actions":["*/read","Microsoft.OperationalInsights/workspaces/search/action","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2016-09-21T19:19:52.4939376Z","updatedOn":"2022-09-06T15:18:41.7429165Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","type":"Microsoft.Authorization/roleDefinitions","name":"43d0d8ad-25c7-4714-9337-8ba259a9fe05"}]}' headers: cache-control: - no-cache content-length: - - '729' + - '683' content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 05:15:24 GMT + - Sat, 03 Dec 2022 18:37:13 GMT expires: - '-1' pragma: @@ -887,7 +887,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05", - "principalId": "cb0d1bae-d01a-4697-9121-f7ab63036aea"}}' + "principalId": "317480eb-b616-4fa7-941b-c0156e74a463"}}' headers: Accept: - application/json @@ -904,15 +904,15 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - python/3.8.8 (Windows-10-10.0.22000-SP0) msrest/0.7.0 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.39.0 (MSI) + - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"cb0d1bae-d01a-4697-9121-f7ab63036aea","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-06T05:15:25.7382063Z","updatedOn":"2022-08-06T05:15:26.0506367Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"317480eb-b616-4fa7-941b-c0156e74a463","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-03T18:37:14.8180571Z","updatedOn":"2022-12-03T18:37:15.4274962Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' headers: cache-control: - no-cache @@ -921,7 +921,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 05:15:27 GMT + - Sat, 03 Dec 2022 18:37:20 GMT expires: - '-1' pragma: @@ -951,23 +951,23 @@ interactions: ParameterSetName: - -g -n --api-key User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey?api-version=2022-08-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-08-06T05:09:17.8073666Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-06T05:09:17.8073666Z"},"identity":{"principalId":"cb0d1bae-d01a-4697-9121-f7ab63036aea","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-12-03T18:31:07.5041083Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T18:31:07.5041083Z"},"identity":{"principalId":"317480eb-b616-4fa7-941b-c0156e74a463","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.1.8.1","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}' headers: cache-control: - no-cache content-length: - - '952' + - '1027' content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 05:15:28 GMT + - Sat, 03 Dec 2022 18:37:20 GMT etag: - - '"fd00ef85-0000-0600-0000-62edf8cf0000"' + - '"00004d3a-0000-0600-0000-638b974f0000"' expires: - '-1' pragma: @@ -989,7 +989,7 @@ interactions: body: '{"sku": {"name": "Standard"}, "properties": {"publicNetworkAccess": "Enabled", "zoneRedundancy": "Disabled", "apiKey": "Enabled", "deterministicOutboundIP": "Disabled", "autoGeneratedDomainNameLabelScope": "TenantReuse"}, "identity": - {"type": "SystemAssigned"}, "location": "westcentralus"}' + {"type": "SystemAssigned"}, "tags": {}, "location": "westcentralus"}' headers: Accept: - application/json @@ -1000,31 +1000,31 @@ interactions: Connection: - keep-alive Content-Length: - - '290' + - '302' Content-Type: - application/json ParameterSetName: - -g -n --api-key User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey?api-version=2022-08-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-08-06T05:09:17.8073666Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-06T05:15:29.6271775Z"},"identity":{"principalId":"cb0d1bae-d01a-4697-9121-f7ab63036aea","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-12-03T18:31:07.5041083Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T18:37:21.4017072Z"},"identity":{"principalId":"317480eb-b616-4fa7-941b-c0156e74a463","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.1.8.1","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":null}}' headers: api-supported-versions: - - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01 + - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview cache-control: - no-cache content-length: - - '1004' + - '1043' content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 05:15:29 GMT + - Sat, 03 Dec 2022 18:37:23 GMT etag: - - '"fd003587-0000-0600-0000-62edf8f20000"' + - '"0000583a-0000-0600-0000-638b97620000"' expires: - '-1' pragma: @@ -1060,23 +1060,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey?api-version=2022-08-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-08-06T05:09:17.8073666Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-06T05:15:29.6271775Z"},"identity":{"principalId":"cb0d1bae-d01a-4697-9121-f7ab63036aea","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-12-03T18:31:07.5041083Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T18:37:21.4017072Z"},"identity":{"principalId":"317480eb-b616-4fa7-941b-c0156e74a463","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.1.8.1","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":null}}' headers: cache-control: - no-cache content-length: - - '1004' + - '1043' content-type: - application/json; charset=utf-8 date: - - Sat, 06 Aug 2022 05:15:30 GMT + - Sat, 03 Dec 2022 18:37:23 GMT etag: - - '"fd003587-0000-0600-0000-62edf8f20000"' + - '"0000583a-0000-0600-0000-638b97620000"' expires: - '-1' pragma: @@ -1124,7 +1124,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 05:15:33 GMT + - Sat, 03 Dec 2022 18:37:26 GMT expires: - '-1' pragma: @@ -1132,8 +1132,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659762932.711.35.962692|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670092645.902.309.969929|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1164,7 +1164,7 @@ interactions: uri: https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com/api/auth/keys response: body: - string: '{"id":1,"name":"apikey1","key":"eyJrIjoiVFBzM2hQZENtTWRpc2g3MGZYUDE0T29xVVh4RFFxaXciLCJuIjoiYXBpa2V5MSIsImlkIjoxfQ=="}' + string: '{"id":1,"name":"apikey1","key":"eyJrIjoiNzA3RmhLSHNadnFCbG5kdnBQTXNyMWRnWUVWOXlLaUIiLCJuIjoiYXBpa2V5MSIsImlkIjoxfQ=="}' headers: cache-control: - no-cache @@ -1177,7 +1177,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 05:15:34 GMT + - Sat, 03 Dec 2022 18:37:27 GMT expires: - '-1' pragma: @@ -1185,8 +1185,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659762934.833.35.705058|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670092647.791.316.806162|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1217,7 +1217,7 @@ interactions: uri: https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com/api/auth/keys response: body: - string: '{"id":2,"name":"apikey2","key":"eyJrIjoiSGFSVFVBVWthMkRTMHlVUkNWa1Y3M0YxdmlhRzFQa3EiLCJuIjoiYXBpa2V5MiIsImlkIjoxfQ=="}' + string: '{"id":2,"name":"apikey2","key":"eyJrIjoiejJ5UzJQR3dNbkxuWG1GOXRoM1hqZVJhR2YzWGI1aHQiLCJuIjoiYXBpa2V5MiIsImlkIjoxfQ=="}' headers: cache-control: - no-cache @@ -1230,7 +1230,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 05:15:35 GMT + - Sat, 03 Dec 2022 18:37:27 GMT expires: - '-1' pragma: @@ -1238,8 +1238,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659762935.57.36.688564|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670092648.687.307.109219|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1268,20 +1268,20 @@ interactions: uri: https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com/api/auth/keys?includedExpired=false&accesscontrol=true response: body: - string: '[{"id":1,"name":"apikey1","role":"Admin","expiration":"2022-08-09T05:15:34Z","accessControl":{"apikeys:delete":true,"apikeys:read":true}},{"id":2,"name":"apikey2","role":"Viewer","expiration":"2022-08-07T05:15:35Z","accessControl":{"apikeys:delete":true,"apikeys:read":true}}]' + string: '[{"id":1,"name":"apikey1","role":"Admin","expiration":"2022-12-06T18:37:27Z"},{"id":2,"name":"apikey2","role":"Viewer","expiration":"2022-12-04T18:37:27Z"}]' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '276' + - '156' content-security-policy: - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' content-type: - application/json date: - - Sat, 06 Aug 2022 05:15:35 GMT + - Sat, 03 Dec 2022 18:37:28 GMT expires: - '-1' pragma: @@ -1289,8 +1289,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659762936.281.36.218540|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670092648.988.310.569867|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1319,20 +1319,20 @@ interactions: uri: https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com/api/auth/keys?includedExpired=false&accesscontrol=true response: body: - string: '[{"id":1,"name":"apikey1","role":"Admin","expiration":"2022-08-09T05:15:34Z","accessControl":{"apikeys:delete":true,"apikeys:read":true}},{"id":2,"name":"apikey2","role":"Viewer","expiration":"2022-08-07T05:15:35Z","accessControl":{"apikeys:delete":true,"apikeys:read":true}}]' + string: '[{"id":1,"name":"apikey1","role":"Admin","expiration":"2022-12-06T18:37:27Z"},{"id":2,"name":"apikey2","role":"Viewer","expiration":"2022-12-04T18:37:27Z"}]' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '276' + - '156' content-security-policy: - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' content-type: - application/json date: - - Sat, 06 Aug 2022 05:15:35 GMT + - Sat, 03 Dec 2022 18:37:28 GMT expires: - '-1' pragma: @@ -1340,7 +1340,7 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659762936.56.36.459470|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1670092649.257.313.21154|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1385,7 +1385,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 05:15:35 GMT + - Sat, 03 Dec 2022 18:37:29 GMT expires: - '-1' pragma: @@ -1393,7 +1393,7 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659762936.748.34.11301|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1670092649.97.307.936503|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1423,82 +1423,84 @@ interactions: uri: https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com/api/search?type=dash-db response: body: - string: '[{"id":21,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"54KhiZ7nz","title":"AKS - Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"6uRDjTNnz","title":"App - Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":2,"uid":"dyzn5SK7z","title":"Azure + string: '[{"id":17,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"54KhiZ7nz","title":"AKS + Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":14,"uid":"6uRDjTNnz","title":"App + Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":10,"uid":"dyzn5SK7z","title":"Azure / Alert Consumption","uri":"db/azure-alert-consumption","url":"/d/dyzn5SK7z/azure-alert-consumption","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"Yo38mcvnz","title":"Azure / Insights / Applications","uri":"db/azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"INH9berMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"AppInsightsAvTestGeoMap","title":"Azure + / Insights / Applications Test Availability Geo Map","uri":"db/azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"INH9berMk","title":"Azure / Insights / Cosmos DB","uri":"db/azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"8UDB1s3Gk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"8UDB1s3Gk","title":"Azure / Insights / Data Explorer Clusters","uri":"db/azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"tQZAMYrMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"tQZAMYrMk","title":"Azure / Insights / Key Vaults","uri":"db/azure-insights-key-vaults","url":"/d/tQZAMYrMk/azure-insights-key-vaults","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"3n2E8CrGk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"3n2E8CrGk","title":"Azure / Insights / Storage Accounts","uri":"db/azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"AzVmInsightsByRG","title":"Azure / Insights / Virtual Machines by Resource Group","uri":"db/azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"AzVmInsightsByWS","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"AzVmInsightsByWS","title":"Azure / Insights / Virtual Machines by Workspace","uri":"db/azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"Mtwt2BV7k","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"Mtwt2BV7k","title":"Azure / Resources Overview","uri":"db/azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":17,"uid":"xLERdASnz","title":"Cluster - Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":24,"uid":"vkQ0UHxiddk","title":"CoreDNS","uri":"db/coredns","url":"/d/vkQ0UHxiddk/coredns","slug":"","type":"dash-db","tags":["coredns-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":18,"uid":"QTVw7iK7z","title":"Geneva - Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":22,"uid":"icm-example","title":"IcM - Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"sVKyjvpnz","title":"Incoming - Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":25,"uid":"09ec8aa1e996d6ffcd6817bbaff4db1b","title":"Kubernetes - / API server","uri":"db/kubernetes-api-server","url":"/d/09ec8aa1e996d6ffcd6817bbaff4db1b/kubernetes-api-server","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":26,"uid":"efa86fd1d0c121a26444b636a3f509a8","title":"Kubernetes - / Compute Resources / Cluster","uri":"db/kubernetes-compute-resources-cluster","url":"/d/efa86fd1d0c121a26444b636a3f509a8/kubernetes-compute-resources-cluster","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":27,"uid":"85a562078cdf77779eaa1add43ccec1e","title":"Kubernetes - / Compute Resources / Namespace (Pods)","uri":"db/kubernetes-compute-resources-namespace-pods","url":"/d/85a562078cdf77779eaa1add43ccec1e/kubernetes-compute-resources-namespace-pods","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":28,"uid":"a87fb0d919ec0ea5f6543124e16c42a5","title":"Kubernetes - / Compute Resources / Namespace (Workloads)","uri":"db/kubernetes-compute-resources-namespace-workloads","url":"/d/a87fb0d919ec0ea5f6543124e16c42a5/kubernetes-compute-resources-namespace-workloads","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":29,"uid":"200ac8fdbfbb74b39aff88118e4d1c2c","title":"Kubernetes - / Compute Resources / Node (Pods)","uri":"db/kubernetes-compute-resources-node-pods","url":"/d/200ac8fdbfbb74b39aff88118e4d1c2c/kubernetes-compute-resources-node-pods","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":30,"uid":"6581e46e4e5c7ba40a07646395ef7b23","title":"Kubernetes - / Compute Resources / Pod","uri":"db/kubernetes-compute-resources-pod","url":"/d/6581e46e4e5c7ba40a07646395ef7b23/kubernetes-compute-resources-pod","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":31,"uid":"a164a7f0339f99e89cea5cb47e9be617","title":"Kubernetes - / Compute Resources / Workload","uri":"db/kubernetes-compute-resources-workload","url":"/d/a164a7f0339f99e89cea5cb47e9be617/kubernetes-compute-resources-workload","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":32,"uid":"3138fa155d5915769fbded898ac09ff9","title":"Kubernetes - / Kubelet","uri":"db/kubernetes-kubelet","url":"/d/3138fa155d5915769fbded898ac09ff9/kubernetes-kubelet","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":33,"uid":"ff635a025bcfea7bc3dd4f508990a3e9","title":"Kubernetes - / Networking / Cluster","uri":"db/kubernetes-networking-cluster","url":"/d/ff635a025bcfea7bc3dd4f508990a3e9/kubernetes-networking-cluster","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":34,"uid":"8b7a8b326d7a6f1f04244066368c67af","title":"Kubernetes - / Networking / Namespace (Pods)","uri":"db/kubernetes-networking-namespace-pods","url":"/d/8b7a8b326d7a6f1f04244066368c67af/kubernetes-networking-namespace-pods","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":35,"uid":"bbb2a765a623ae38130206c7d94a160f","title":"Kubernetes - / Networking / Namespace (Workload)","uri":"db/kubernetes-networking-namespace-workload","url":"/d/bbb2a765a623ae38130206c7d94a160f/kubernetes-networking-namespace-workload","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":36,"uid":"7a18067ce943a40ae25454675c19ff5c","title":"Kubernetes - / Networking / Pod","uri":"db/kubernetes-networking-pod","url":"/d/7a18067ce943a40ae25454675c19ff5c/kubernetes-networking-pod","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":37,"uid":"728bf77cc1166d2f3133bf25846876cc","title":"Kubernetes - / Networking / Workload","uri":"db/kubernetes-networking-workload","url":"/d/728bf77cc1166d2f3133bf25846876cc/kubernetes-networking-workload","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":38,"uid":"919b92a8e8041bd567af9edab12c840c","title":"Kubernetes - / Persistent Volumes","uri":"db/kubernetes-persistent-volumes","url":"/d/919b92a8e8041bd567af9edab12c840c/kubernetes-persistent-volumes","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":39,"uid":"632e265de029684c40b21cb76bca4f94","title":"Kubernetes - / Proxy","uri":"db/kubernetes-proxy","url":"/d/632e265de029684c40b21cb76bca4f94/kubernetes-proxy","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":40,"uid":"F4bizNZ7k","title":"Kubernetes - / StatefulSets","uri":"db/kubernetes-statefulsets","url":"/d/F4bizNZ7k/kubernetes-statefulsets","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":44,"uid":"VESDBJS7k","title":"Kubernetes - / USE Method / Cluster(Windows)","uri":"db/kubernetes-use-method-cluster-windows","url":"/d/VESDBJS7k/kubernetes-use-method-cluster-windows","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":45,"uid":"YCBDf1I7k","title":"Kubernetes - / USE Method / Node(Windows)","uri":"db/kubernetes-use-method-node-windows","url":"/d/YCBDf1I7k/kubernetes-use-method-node-windows","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":20,"uid":"_sKhXTH7z","title":"Node - Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":41,"uid":"D4pVsnCGz","title":"Nodes + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":21,"uid":"xLERdASnz","title":"Cluster + Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":25,"uid":"vkQ0UHxiddk","title":"CoreDNS","uri":"db/coredns","url":"/d/vkQ0UHxiddk/coredns","slug":"","type":"dash-db","tags":["coredns-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":22,"uid":"QTVw7iK7z","title":"Geneva + Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":13,"uid":"icm-example","title":"IcM + Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"sVKyjvpnz","title":"Incoming + Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":26,"uid":"09ec8aa1e996d6ffcd6817bbaff4db1b","title":"Kubernetes + / API server","uri":"db/kubernetes-api-server","url":"/d/09ec8aa1e996d6ffcd6817bbaff4db1b/kubernetes-api-server","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":27,"uid":"efa86fd1d0c121a26444b636a3f509a8","title":"Kubernetes + / Compute Resources / Cluster","uri":"db/kubernetes-compute-resources-cluster","url":"/d/efa86fd1d0c121a26444b636a3f509a8/kubernetes-compute-resources-cluster","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":28,"uid":"85a562078cdf77779eaa1add43ccec1e","title":"Kubernetes + / Compute Resources / Namespace (Pods)","uri":"db/kubernetes-compute-resources-namespace-pods","url":"/d/85a562078cdf77779eaa1add43ccec1e/kubernetes-compute-resources-namespace-pods","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":29,"uid":"a87fb0d919ec0ea5f6543124e16c42a5","title":"Kubernetes + / Compute Resources / Namespace (Workloads)","uri":"db/kubernetes-compute-resources-namespace-workloads","url":"/d/a87fb0d919ec0ea5f6543124e16c42a5/kubernetes-compute-resources-namespace-workloads","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":30,"uid":"200ac8fdbfbb74b39aff88118e4d1c2c","title":"Kubernetes + / Compute Resources / Node (Pods)","uri":"db/kubernetes-compute-resources-node-pods","url":"/d/200ac8fdbfbb74b39aff88118e4d1c2c/kubernetes-compute-resources-node-pods","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":31,"uid":"6581e46e4e5c7ba40a07646395ef7b23","title":"Kubernetes + / Compute Resources / Pod","uri":"db/kubernetes-compute-resources-pod","url":"/d/6581e46e4e5c7ba40a07646395ef7b23/kubernetes-compute-resources-pod","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":32,"uid":"a164a7f0339f99e89cea5cb47e9be617","title":"Kubernetes + / Compute Resources / Workload","uri":"db/kubernetes-compute-resources-workload","url":"/d/a164a7f0339f99e89cea5cb47e9be617/kubernetes-compute-resources-workload","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":33,"uid":"3138fa155d5915769fbded898ac09ff9","title":"Kubernetes + / Kubelet","uri":"db/kubernetes-kubelet","url":"/d/3138fa155d5915769fbded898ac09ff9/kubernetes-kubelet","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":34,"uid":"ff635a025bcfea7bc3dd4f508990a3e9","title":"Kubernetes + / Networking / Cluster","uri":"db/kubernetes-networking-cluster","url":"/d/ff635a025bcfea7bc3dd4f508990a3e9/kubernetes-networking-cluster","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":35,"uid":"8b7a8b326d7a6f1f04244066368c67af","title":"Kubernetes + / Networking / Namespace (Pods)","uri":"db/kubernetes-networking-namespace-pods","url":"/d/8b7a8b326d7a6f1f04244066368c67af/kubernetes-networking-namespace-pods","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":36,"uid":"bbb2a765a623ae38130206c7d94a160f","title":"Kubernetes + / Networking / Namespace (Workload)","uri":"db/kubernetes-networking-namespace-workload","url":"/d/bbb2a765a623ae38130206c7d94a160f/kubernetes-networking-namespace-workload","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":37,"uid":"7a18067ce943a40ae25454675c19ff5c","title":"Kubernetes + / Networking / Pod","uri":"db/kubernetes-networking-pod","url":"/d/7a18067ce943a40ae25454675c19ff5c/kubernetes-networking-pod","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":38,"uid":"728bf77cc1166d2f3133bf25846876cc","title":"Kubernetes + / Networking / Workload","uri":"db/kubernetes-networking-workload","url":"/d/728bf77cc1166d2f3133bf25846876cc/kubernetes-networking-workload","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":39,"uid":"919b92a8e8041bd567af9edab12c840c","title":"Kubernetes + / Persistent Volumes","uri":"db/kubernetes-persistent-volumes","url":"/d/919b92a8e8041bd567af9edab12c840c/kubernetes-persistent-volumes","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":40,"uid":"632e265de029684c40b21cb76bca4f94","title":"Kubernetes + / Proxy","uri":"db/kubernetes-proxy","url":"/d/632e265de029684c40b21cb76bca4f94/kubernetes-proxy","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":41,"uid":"F4bizNZ7k","title":"Kubernetes + / StatefulSets","uri":"db/kubernetes-statefulsets","url":"/d/F4bizNZ7k/kubernetes-statefulsets","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":45,"uid":"VESDBJS7k","title":"Kubernetes + / USE Method / Cluster(Windows)","uri":"db/kubernetes-use-method-cluster-windows","url":"/d/VESDBJS7k/kubernetes-use-method-cluster-windows","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":46,"uid":"YCBDf1I7k","title":"Kubernetes + / USE Method / Node(Windows)","uri":"db/kubernetes-use-method-node-windows","url":"/d/YCBDf1I7k/kubernetes-use-method-node-windows","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":16,"uid":"_sKhXTH7z","title":"Node + Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":42,"uid":"D4pVsnCGz","title":"Nodes (Node exporter)","uri":"db/nodes-node-exporter","url":"/d/D4pVsnCGz/nodes-node-exporter","slug":"","type":"dash-db","tags":["node - exporter"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":12,"uid":"6naEwcp7z","title":"Outgoing - Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":46,"uid":"UskST-Snz","title":"Prometheus-Collector - Health","uri":"db/prometheus-collector-health","url":"/d/UskST-Snz/prometheus-collector-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":13,"uid":"GIgvhSV7z","title":"Service - Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":42,"uid":"VdrOA7jGz","title":"USE + exporter"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":23,"uid":"6naEwcp7z","title":"Outgoing + Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":47,"uid":"UskST-Snz","title":"Prometheus-Collector + Health","uri":"db/prometheus-collector-health","url":"/d/UskST-Snz/prometheus-collector-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":18,"uid":"GIgvhSV7z","title":"Service + Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":43,"uid":"VdrOA7jGz","title":"USE Method / Cluster (Node exporter)","uri":"db/use-method-cluster-node-exporter","url":"/d/VdrOA7jGz/use-method-cluster-node-exporter","slug":"","type":"dash-db","tags":["node - exporter"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":43,"uid":"t5ajanjMk","title":"USE + exporter"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":44,"uid":"t5ajanjMk","title":"USE Method / Node (Node exporter)","uri":"db/use-method-node-node-exporter","url":"/d/t5ajanjMk/use-method-node-node-exporter","slug":"","type":"dash-db","tags":["node - exporter"],"isStarred":false,"folderId":23,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":14,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":11,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' + exporter"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":19,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' headers: cache-control: - no-cache @@ -1509,7 +1511,7 @@ interactions: content-type: - application/json date: - - Sat, 06 Aug 2022 05:15:36 GMT + - Sat, 03 Dec 2022 18:37:29 GMT expires: - '-1' pragma: @@ -1517,8 +1519,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1659762937.03.33.585126|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1670092650.273.311.433276|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains transfer-encoding: diff --git a/src/amg/azext_amg/tests/latest/recordings/test_service_account_e2e.yaml b/src/amg/azext_amg/tests/latest/recordings/test_service_account_e2e.yaml new file mode 100644 index 00000000000..b6a8c3a449b --- /dev/null +++ b/src/amg/azext_amg/tests/latest/recordings/test_service_account_e2e.yaml @@ -0,0 +1,2204 @@ +interactions: +- request: + body: '{"sku": {"name": "Standard"}, "properties": {}, "identity": {"type": "SystemAssigned"}, + "location": "westcentralus"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + Content-Length: + - '116' + Content-Type: + - application/json + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount?api-version=2022-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-12-03T17:14:35.6262799Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T17:14:35.6262799Z"},"identity":{"principalId":"334fb75f-aec3-4e29-b5dc-672ed69e5d6d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}' + headers: + api-supported-versions: + - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview + azure-asyncoperation: + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0?api-version=2022-08-01 + cache-control: + - no-cache + content-length: + - '1089' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 17:14:37 GMT + etag: + - '"0000a739-0000-0600-0000-638b83fd0000"' + expires: + - '-1' + location: + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0?api-version=2022-08-01 + pragma: + - no-cache + request-context: + - appId=cid-v1:54fcb76e-7bac-4b3e-96f8-8868676d3826 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0?api-version=2022-08-01 + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0","name":"83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2022-12-03T17:14:36.8084779Z"}' + headers: + cache-control: + - no-cache + content-length: + - '518' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 17:15:07 GMT + etag: + - '"0000030a-0000-0600-0000-638b83fc0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0?api-version=2022-08-01 + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0","name":"83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2022-12-03T17:14:36.8084779Z"}' + headers: + cache-control: + - no-cache + content-length: + - '518' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 17:15:37 GMT + etag: + - '"0000030a-0000-0600-0000-638b83fc0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0?api-version=2022-08-01 + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0","name":"83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2022-12-03T17:14:36.8084779Z"}' + headers: + cache-control: + - no-cache + content-length: + - '518' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 17:16:07 GMT + etag: + - '"0000030a-0000-0600-0000-638b83fc0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0?api-version=2022-08-01 + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0","name":"83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2022-12-03T17:14:36.8084779Z"}' + headers: + cache-control: + - no-cache + content-length: + - '518' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 17:16:37 GMT + etag: + - '"0000030a-0000-0600-0000-638b83fc0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0?api-version=2022-08-01 + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0","name":"83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2022-12-03T17:14:36.8084779Z"}' + headers: + cache-control: + - no-cache + content-length: + - '518' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 17:17:07 GMT + etag: + - '"0000030a-0000-0600-0000-638b83fc0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0?api-version=2022-08-01 + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0","name":"83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2022-12-03T17:14:36.8084779Z"}' + headers: + cache-control: + - no-cache + content-length: + - '518' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 17:17:37 GMT + etag: + - '"0000030a-0000-0600-0000-638b83fc0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0?api-version=2022-08-01 + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0","name":"83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2022-12-03T17:14:36.8084779Z"}' + headers: + cache-control: + - no-cache + content-length: + - '518' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 17:18:07 GMT + etag: + - '"0000030a-0000-0600-0000-638b83fc0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0?api-version=2022-08-01 + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0","name":"83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2022-12-03T17:14:36.8084779Z"}' + headers: + cache-control: + - no-cache + content-length: + - '518' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 17:18:38 GMT + etag: + - '"0000030a-0000-0600-0000-638b83fc0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0?api-version=2022-08-01 + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0","name":"83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2022-12-03T17:14:36.8084779Z"}' + headers: + cache-control: + - no-cache + content-length: + - '518' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 17:19:08 GMT + etag: + - '"0000030a-0000-0600-0000-638b83fc0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0?api-version=2022-08-01 + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0","name":"83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2022-12-03T17:14:36.8084779Z"}' + headers: + cache-control: + - no-cache + content-length: + - '518' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 17:19:38 GMT + etag: + - '"0000030a-0000-0600-0000-638b83fc0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0?api-version=2022-08-01 + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0","name":"83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2022-12-03T17:14:36.8084779Z"}' + headers: + cache-control: + - no-cache + content-length: + - '518' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 17:20:08 GMT + etag: + - '"0000030a-0000-0600-0000-638b83fc0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0?api-version=2022-08-01 + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0","name":"83993adb-ebb8-4053-932a-05462f7c437f*EEEB6B9C4A564B6D12DC41EEAC410E4DD2F230309B5064102CE2B8902F56FBB0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Succeeded","startTime":"2022-12-03T17:14:36.8084779Z","endTime":"2022-12-03T17:20:26.8516775Z","error":{},"properties":null}' + headers: + cache-control: + - no-cache + content-length: + - '589' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 17:20:38 GMT + etag: + - '"0000060a-0000-0600-0000-638b855a0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount?api-version=2022-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-12-03T17:14:35.6262799Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T17:14:35.6262799Z"},"identity":{"principalId":"334fb75f-aec3-4e29-b5dc-672ed69e5d6d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.1.8.1","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}' + headers: + cache-control: + - no-cache + content-length: + - '1042' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 17:20:38 GMT + etag: + - '"0000b139-0000-0600-0000-638b855a0000"' + 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-providerhub-traffic: + - 'True' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-graphrbac/0.60.0 + Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/me?api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"a30db067-cde1-49be-95bb-9619a8cc8617","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[{"disabledPlans":[],"skuId":"b30411f5-fea1-4a59-9ad9-3db7c7ead579"},{"disabledPlans":[],"skuId":"4a51bf65-409c-4a91-b845-1121b571cc9d"},{"disabledPlans":["c815c93d-0759-4bb8-b857-bc921a71be83","7162bd38-edae-4022-83a7-c5837f951759","b622badb-1b45-48d5-920f-4b27a2c0996c","b74d57b2-58e9-484a-9731-aeccbba954f0"],"skuId":"61902246-d7cb-453e-85cd-53ee28eec138"},{"disabledPlans":["b76fb638-6ba6-402a-b9f9-83d28acb3d86","cd31b152-6326-4d1b-ae1b-997b625182e6","a413a9ff-720c-4822-98ef-2f37c2a21f4c","a6520331-d7d4-4276-95f5-15c0933bc757","ded3d325-1bdc-453e-8432-5bac26d7a014","afa73018-811e-46e9-988f-f75d2b1b8430","b21a6b06-1988-436e-a07b-51ec6d9f52ad","531ee2f8-b1cb-453b-9c21-d2180d014ca5","bf28f719-7844-4079-9c78-c1307898e192","28b0fa46-c39a-4188-89e2-58e979a6b014","199a5c09-e0ca-4e37-8f7c-b05d533e1ea2","65cc641f-cccd-4643-97e0-a17e3045e541","e26c2fcc-ab91-4a61-b35c-03cdc8dddf66","46129a58-a698-46f0-aa5b-17f6586297d9","6db1f1db-2b46-403f-be40-e39395f08dbb","6dc145d6-95dd-4191-b9c3-185575ee6f6b","41fcdd7d-4733-4863-9cf4-c65b83ce2df4","c4801e8a-cb58-4c35-aca6-f2dcc106f287","0898bdbb-73b0-471a-81e5-20f1fe4dd66e","617b097b-4b93-4ede-83de-5f075bb5fb2f","33c4f319-9bdd-48d6-9c4d-410b750a4a5a","4828c8ec-dc2e-4779-b502-87ac9ce28ab7","3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"],"skuId":"c7df2760-2c81-4ef7-b578-5b5392b571df"},{"disabledPlans":["b622badb-1b45-48d5-920f-4b27a2c0996c"],"skuId":"3d957427-ecdc-4df2-aacd-01cc9d519da8"},{"disabledPlans":[],"skuId":"85aae730-b3d1-4f99-bb28-c9f81b05137c"},{"disabledPlans":[],"skuId":"9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"f30db892-07e9-47e9-837c-80727f46fd3d"},{"disabledPlans":[],"skuId":"34715a50-7d92-426f-99e9-f815e0ae1de5"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":[],"skuId":"488ba24a-39a9-4473-8ee5-19291e71b002"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"disabledPlans":["0b03f40b-c404-40c3-8651-2aceb74365fa","b650d915-9886-424b-a08d-633cede56f57","e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72","fe71d6c3-a2ea-4499-9778-da042bf08063","fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"],"skuId":"ea126fc5-a19e-42e2-a731-da9d437bffcf"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"}],"assignedPlans":[{"assignedTimestamp":"2022-11-23T02:23:51Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2022-11-23T02:23:51Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2022-11-23T02:23:51Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2022-11-23T02:23:51Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2022-11-23T02:23:51Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2022-11-23T02:23:51Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2022-11-23T02:23:51Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2022-11-23T02:23:51Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b622badb-1b45-48d5-920f-4b27a2c0996c"},{"assignedTimestamp":"2022-11-23T02:23:51Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"6ea4c1ef-c259-46df-bce2-943342cd3cb2"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"74d93933-6f22-436e-9441-66d205435abb"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"91f50f7b-2204-4803-acac-5cf5668b8b39"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"dc789ed8-0170-4b65-a415-eb77d5bb350a"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"ea2cf03b-ac60-46ae-9c1d-eeaeb63cec86"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"c5002c70-f725-4367-b409-f0eff4fee6c0"},{"assignedTimestamp":"2022-11-09T23:14:02Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"60bf28f9-2b70-4522-96f7-335f5e06c941"},{"assignedTimestamp":"2022-08-07T02:18:34Z","capabilityStatus":"Enabled","service":"Viva-Goals","servicePlanId":"b44c6eaf-5c9f-478c-8f16-8cea26353bfb"},{"assignedTimestamp":"2022-08-07T02:18:34Z","capabilityStatus":"Enabled","service":"Modern-Workplace-Core-ITaas","servicePlanId":"9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WindowsUpdateforBusinessCloudExtensions","servicePlanId":"7bf960f6-2cd9-443a-8046-5dbff9558365"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"18fa3aba-b085-4105-87d7-55617b8585e6"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ERP","servicePlanId":"69f07c66-bee4-4222-b051-195095efee5b"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"0a05d977-a21a-45b2-91ce-61c240dbafa2"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"7e6d7d78-73de-46ba-83b1-6d25117334ba"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WorkplaceAnalytics","servicePlanId":"f477b0f0-3bb1-4890-940c-40fcee6ce05f"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"f3d5636e-ddc2-41bf-bba6-ca6fadece269"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftPrint","servicePlanId":"795f6fe0-cc4d-4773-b050-5dde4dc704c9"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftFormsProTest","servicePlanId":"97f29a83-1a20-44ff-bf48-5e4ad11f3e51"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"fe47a034-ab6d-4cb4-bdb4-9551354b177e"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"2d589a15-b171-4e61-9b5f-31d15eeb2872"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"59231cdf-b40d-4534-a93e-14d0cd31d27e"},{"assignedTimestamp":"2021-04-15T15:12:57Z","capabilityStatus":"Deleted","service":"MIPExchangeSolutions","servicePlanId":"cd31b152-6326-4d1b-ae1b-997b625182e6"},{"assignedTimestamp":"2020-12-22T01:12:21Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"2f442157-a11c-46b9-ae5b-6e39ff4e5849"},{"assignedTimestamp":"2020-11-03T16:30:18Z","capabilityStatus":"Deleted","service":"M365CommunicationCompliance","servicePlanId":"a413a9ff-720c-4822-98ef-2f37c2a21f4c"},{"assignedTimestamp":"2020-08-14T15:32:15Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2019-11-04T20:01:59Z","capabilityStatus":"Enabled","service":"WhiteboardServices","servicePlanId":"4a51bca5-1eff-43f5-878c-177680f191af"},{"assignedTimestamp":"2019-10-14T20:43:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"5136a095-5cf0-4aff-bec3-e84448b38ea5"},{"assignedTimestamp":"2019-10-14T20:43:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb0351d-3b08-4503-993d-383af8de41e3"},{"assignedTimestamp":"2019-03-27T23:17:23Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"50e68c76-46c6-4674-81f9-75456511b170"},{"assignedTimestamp":"2019-03-27T23:17:23Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"17ab22cd-a0b3-4536-910a-cb6eb12696c0"},{"assignedTimestamp":"2018-11-30T00:32:45Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"4828c8ec-dc2e-4779-b502-87ac9ce28ab7"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"5a10155d-f5c1-411a-a8ec-e99aae125390"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"159f4cd6-e380-449f-a816-af1a9ef76344"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"2125cfd7-2110-4567-83c4-c1cd5275163d"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"c4048e79-4474-4c74-ba9b-c31ff225e511"},{"assignedTimestamp":"2018-03-20T02:14:40Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"acffdce6-c30f-4dc2-81c0-372e33c515ec"},{"assignedTimestamp":"2018-01-09T10:35:29Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2017-12-31T03:27:36Z","capabilityStatus":"Deleted","service":"Adallom","servicePlanId":"932ad362-64a8-4783-9106-97849a1a30b9"},{"assignedTimestamp":"2017-12-17T18:29:20Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"ProcessSimple","servicePlanId":"76846ad7-7776-4c40-a281-a386362dd1b9"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"PowerAppsService","servicePlanId":"c68f8d98-5534-41c8-bf36-22fa496fa792"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"9e700747-8b1d-45e5-ab8d-ef187ceec156"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"2789c901-c14e-48ab-a76a-be334d9d793a"},{"assignedTimestamp":"2017-07-06T19:19:57Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2017-06-12T08:23:48Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2017-05-12T23:33:35Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"8e0c0a52-6a6c-4d40-8370-dd62790dcd70"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Deleted","service":"AzureAnalysis","servicePlanId":"2049e525-b859-401b-b2a0-e0a31c4b1fe4"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2016-12-19T03:16:33Z","capabilityStatus":"Deleted","service":"PowerBI","servicePlanId":"fc0a60aa-feee-4746-a0e3-aecfe81a38dd"},{"assignedTimestamp":"2016-11-18T18:51:08Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2016-11-18T18:51:08Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2012-10-10T07:21:11Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"},{"assignedTimestamp":"2015-07-30T06:17:13Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"27216c54-caf8-4d0d-97e2-517afb5c08f6"}],"city":"REDMOND","companyName":"Microsoft","consentProvidedForMinor":null,"country":null,"createdDateTime":null,"creationType":null,"department":"Azure + Dev Exp","dirSyncEnabled":true,"displayName":"Yugang Wang","employeeId":null,"facsimileTelephoneNumber":null,"givenName":"Yugang","immutableId":"138058","isCompromised":null,"jobTitle":"PRINCIPAL + SWE MANAGER","lastDirSyncTime":"2022-09-29T00:42:51Z","legalAgeGroupClassification":null,"mail":"example@example.com","mailNickname":"yugangw","mobile":null,"onPremisesDistinguishedName":"CN=Yugang + Wang,OU=MSE,OU=Users,OU=CoreIdentity,DC=redmond,DC=corp,DC=microsoft,DC=com","onPremisesSecurityIdentifier":"S-1-5-21-2127521184-1604012920-1887927527-415191","otherMails":[],"passwordPolicies":"DisablePasswordExpiration","passwordProfile":null,"physicalDeliveryOfficeName":"18/3700FL","postalCode":null,"preferredLanguage":null,"provisionedPlans":[{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"Netbreeze"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"}],"provisioningErrors":[],"proxyAddresses":["X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yugangw","X500:/o=SDF/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yugang + Wang (Volt)e3d6fb0c","X500:/o=microsoft/ou=northamerica/cn=Recipients/cn=572513","X500:/o=microsoft/ou=First + Administrative Group/cn=Recipients/cn=yugangw","X500:/o=microsoft/ou=External + (FYDIBOHF25SPDLT)/cn=Recipients/cn=0e00e165bf5842568a693fea3aa4faad","X500:/o=SDF/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yugangw_microsoft.com","X500:/o=SDF/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yugang + Wang","X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yugangw_c50b13e019","X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yugangw","X500:/o=ExchangeLabs/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yugangw17d63dbbde","X500:/o=ExchangeLabs/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yugang + Wang (Volt)","X500:/O=Microsoft/OU=APPS-WGA/cn=Recipients/cn=yugangw","X500:/o=MMS/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yugang Wang5ec8094e-2aed-488b-a327-9baed3c38367","SMTP:example@example.com","smtp:a-ywang2@microsoft.com","smtp:yugangw@msg.microsoft.com","x500:/o=microsoft/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yugang Wang (Volt)","smtp:YUGANGW@service.microsoft.com"],"refreshTokensValidFromDateTime":"2019-08-29T00:11:39Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":"example@example.com","state":null,"streetAddress":null,"surname":"Wang","telephoneNumber":"+1 + (425) 7069936","thumbnailPhoto@odata.mediaEditLink":"directoryObjects/a30db067-cde1-49be-95bb-9619a8cc8617/Microsoft.DirectoryServices.User/thumbnailPhoto","thumbnailPhoto@odata.mediaContentType":"image/Jpeg","usageLocation":"US","userIdentities":[],"userPrincipalName":"example@example.com","userState":null,"userStateChangedOn":null,"userType":"Member","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToFullName":"Qing + Ye","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToPersonnelNbr":"128505","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToEmailName":"QINGYE","extension_18e31482d3fb4a8ea958aa96b662f508_ProfitCenterCode":"P10040929","extension_18e31482d3fb4a8ea958aa96b662f508_PositionNumber":"72580592","extension_18e31482d3fb4a8ea958aa96b662f508_CostCenterCode":"10040929","extension_18e31482d3fb4a8ea958aa96b662f508_CompanyCode":"1010","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingName":"18","extension_18e31482d3fb4a8ea958aa96b662f508_ZipCode":"98052","extension_18e31482d3fb4a8ea958aa96b662f508_StateProvinceCode":"WA","extension_18e31482d3fb4a8ea958aa96b662f508_CountryShortCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_CityName":"REDMOND","extension_18e31482d3fb4a8ea958aa96b662f508_AddressLine1":"1 + Microsoft Way","extension_18e31482d3fb4a8ea958aa96b662f508_LocationAreaCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingID":"17","extension_18e31482d3fb4a8ea958aa96b662f508_PersonnelNumber":"138058"}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '24836' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Sat, 03 Dec 2022 17:20:38 GMT + duration: + - '4469195' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - Egu1e9+kMou8n38apYzPx2J/rNr8ItujrmsIU0hPydk= + ocp-aad-session-key: + - nlHG76aplVfAY928WG-LjVHHGowvLoTSikwDLQOFzw9hTPXHu66juCiUX7xCNsx30g4lWgEdvchvA3Sthr9TYjzH0xsjRzg5RUdOHgOCcqF-TYqwp6B9Qts2tnc-qbIi.HB3bKqfmiYz6hO6xxmWrUzVDCqy8oxhPQYNe6IhvSr8 + pragma: + - no-cache + request-id: + - 00188388-794a-4984-b876-e0f1826d711a + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-ms-resource-unit: + - '1' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Grafana%20Admin%27&api-version=2018-01-01-preview + response: + body: + string: '{"value":[{"properties":{"roleName":"Grafana Admin","type":"BuiltInRole","description":"Built-in + Grafana admin role","assignableScopes":["/"],"permissions":[{"actions":[],"notActions":[],"dataActions":["Microsoft.Dashboard/grafana/ActAsGrafanaAdmin/action"],"notDataActions":[]}],"createdOn":"2021-07-15T21:32:35.3802340Z","updatedOn":"2021-11-11T20:15:14.8104670Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","type":"Microsoft.Authorization/roleDefinitions","name":"22926164-76b3-42b3-bc55-97df8dab3e41"}]}' + headers: + cache-control: + - no-cache + content-length: + - '644' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 17:20:39 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41", + "principalId": "a30db067-cde1-49be-95bb-9619a8cc8617"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + Content-Length: + - '233' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview + response: + body: + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","condition":null,"conditionVersion":null,"createdOn":"2022-12-03T17:20:40.4047067Z","updatedOn":"2022-12-03T17:20:40.8890909Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + headers: + cache-control: + - no-cache + content-length: + - '999' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 17:20:43 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Reader%27&api-version=2018-01-01-preview + response: + body: + string: '{"value":[{"properties":{"roleName":"Monitoring Reader","type":"BuiltInRole","description":"Can + read all monitoring data.","assignableScopes":["/"],"permissions":[{"actions":["*/read","Microsoft.OperationalInsights/workspaces/search/action","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2016-09-21T19:19:52.4939376Z","updatedOn":"2022-09-06T15:18:41.7429165Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","type":"Microsoft.Authorization/roleDefinitions","name":"43d0d8ad-25c7-4714-9337-8ba259a9fe05"}]}' + headers: + cache-control: + - no-cache + content-length: + - '683' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 17:20:43 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05", + "principalId": "334fb75f-aec3-4e29-b5dc-672ed69e5d6d"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + Content-Length: + - '233' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2020-04-01-preview + response: + body: + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"334fb75f-aec3-4e29-b5dc-672ed69e5d6d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-03T17:20:44.5229432Z","updatedOn":"2022-12-03T17:20:44.9759731Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' + headers: + cache-control: + - no-cache + content-length: + - '823' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 17:20:47 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana update + Connection: + - keep-alive + ParameterSetName: + - -g -n --service-account + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount?api-version=2022-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-12-03T17:14:35.6262799Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T17:14:35.6262799Z"},"identity":{"principalId":"334fb75f-aec3-4e29-b5dc-672ed69e5d6d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.1.8.1","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}' + headers: + cache-control: + - no-cache + content-length: + - '1042' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 17:20:47 GMT + etag: + - '"0000b139-0000-0600-0000-638b855a0000"' + 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-providerhub-traffic: + - 'True' + status: + code: 200 + message: OK +- request: + body: '{"sku": {"name": "Standard"}, "properties": {"publicNetworkAccess": "Enabled", + "zoneRedundancy": "Disabled", "apiKey": "Enabled", "deterministicOutboundIP": + "Disabled", "autoGeneratedDomainNameLabelScope": "TenantReuse"}, "identity": + {"type": "SystemAssigned"}, "tags": {}, "location": "westcentralus"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana update + Connection: + - keep-alive + Content-Length: + - '302' + Content-Type: + - application/json + ParameterSetName: + - -g -n --service-account + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount?api-version=2022-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-12-03T17:14:35.6262799Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T17:20:48.1391627Z"},"identity":{"principalId":"334fb75f-aec3-4e29-b5dc-672ed69e5d6d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.1.8.1","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":null}}' + headers: + api-supported-versions: + - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview + cache-control: + - no-cache + content-length: + - '1058' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 17:20:49 GMT + etag: + - '"0000b239-0000-0600-0000-638b85710000"' + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:54fcb76e-7bac-4b3e-96f8-8868676d3826 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana service-account list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount?api-version=2022-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-12-03T17:14:35.6262799Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-12-03T17:20:48.1391627Z"},"identity":{"principalId":"334fb75f-aec3-4e29-b5dc-672ed69e5d6d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.1.8.1","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":null}}' + headers: + cache-control: + - no-cache + content-length: + - '1058' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 03 Dec 2022 17:20:49 GMT + etag: + - '"0000b239-0000-0600-0000-638b85710000"' + 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-providerhub-traffic: + - 'True' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/search + response: + body: + string: '{"totalCount":0,"serviceAccounts":[],"page":1,"perPage":1000}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '61' + content-security-policy: + - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + content-type: + - application/json + date: + - Sat, 03 Dec 2022 17:20:53 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + set-cookie: + - INGRESSCOOKIE=1670088051.82.310.334969|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - deny + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: '{"name": "oldName", "role": "Viewer", "isDisabled": true}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '57' + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: POST + uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts + response: + body: + string: '{"id":3,"name":"oldName","login":"sa-oldname","orgId":-1,"isDisabled":true,"role":"Viewer","tokens":0,"avatarUrl":""}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '117' + content-security-policy: + - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + content-type: + - application/json + date: + - Sat, 03 Dec 2022 17:20:54 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + set-cookie: + - INGRESSCOOKIE=1670088054.732.310.520461|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - deny + x-xss-protection: + - 1; mode=block + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/search + response: + body: + string: '{"totalCount":1,"serviceAccounts":[{"id":3,"name":"oldName","login":"sa-oldname","orgId":1,"isDisabled":true,"role":"Viewer","tokens":0,"avatarUrl":"/avatar/9877e019df37fafd343c45f8ed0edb3e"}],"page":1,"perPage":1000}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '217' + content-security-policy: + - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + content-type: + - application/json + date: + - Sat, 03 Dec 2022 17:20:54 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + set-cookie: + - INGRESSCOOKIE=1670088055.578.307.102118|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - deny + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: '{"name": "myServiceAccount", "role": "Admin", "isDisabled": false}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '66' + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: PATCH + uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/3 + response: + body: + string: '{"id":3,"message":"Service account updated","name":"myServiceAccount","serviceaccount":{"id":3,"name":"myServiceAccount","login":"sa-oldname","orgId":1,"isDisabled":false,"createdAt":"2022-12-03T17:20:54Z","updatedAt":"2022-12-03T17:20:54Z","avatarUrl":"/avatar/2500c98b645dbb9405e34002e460d53e","role":"Admin","teams":null}}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '325' + content-security-policy: + - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + content-type: + - application/json + date: + - Sat, 03 Dec 2022 17:20:54 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + set-cookie: + - INGRESSCOOKIE=1670088055.776.310.368947|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - deny + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/search + response: + body: + string: '{"totalCount":1,"serviceAccounts":[{"id":3,"name":"myServiceAccount","login":"sa-oldname","orgId":1,"isDisabled":false,"role":"Admin","tokens":0,"avatarUrl":"/avatar/2500c98b645dbb9405e34002e460d53e"}],"page":1,"perPage":1000}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '226' + content-security-policy: + - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + content-type: + - application/json + date: + - Sat, 03 Dec 2022 17:20:55 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + set-cookie: + - INGRESSCOOKIE=1670088056.107.308.134563|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - deny + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/3 + response: + body: + string: '{"id":3,"name":"myServiceAccount","login":"sa-oldname","orgId":1,"isDisabled":false,"createdAt":"2022-12-03T17:20:54Z","updatedAt":"2022-12-03T17:20:54Z","avatarUrl":"/avatar/2500c98b645dbb9405e34002e460d53e","role":"Admin","teams":null}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '237' + content-security-policy: + - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + content-type: + - application/json + date: + - Sat, 03 Dec 2022 17:20:55 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + set-cookie: + - INGRESSCOOKIE=1670088056.28.313.439057|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - deny + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/search + response: + body: + string: '{"totalCount":1,"serviceAccounts":[{"id":3,"name":"myServiceAccount","login":"sa-oldname","orgId":1,"isDisabled":false,"role":"Admin","tokens":0,"avatarUrl":"/avatar/2500c98b645dbb9405e34002e460d53e"}],"page":1,"perPage":1000}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '226' + content-security-policy: + - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + content-type: + - application/json + date: + - Sat, 03 Dec 2022 17:20:55 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + set-cookie: + - INGRESSCOOKIE=1670088056.542.313.146865|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - deny + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/search + response: + body: + string: '{"totalCount":1,"serviceAccounts":[{"id":3,"name":"myServiceAccount","login":"sa-oldname","orgId":1,"isDisabled":false,"role":"Admin","tokens":0,"avatarUrl":"/avatar/2500c98b645dbb9405e34002e460d53e"}],"page":1,"perPage":1000}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '226' + content-security-policy: + - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + content-type: + - application/json + date: + - Sat, 03 Dec 2022 17:20:56 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + set-cookie: + - INGRESSCOOKIE=1670088056.826.307.758563|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - deny + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: '{"name": "myToken", "secondsToLive": 86400}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '43' + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: POST + uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/3/tokens + response: + body: + string: '{"id":1,"name":"myToken","key":"glsa_XEWRzinwj3XnZHzFz159x2I5DiWTcjK6_2e0e300c"}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '80' + content-security-policy: + - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + content-type: + - application/json + date: + - Sat, 03 Dec 2022 17:20:56 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + set-cookie: + - INGRESSCOOKIE=1670088057.677.310.218155|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - deny + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/search + response: + body: + string: '{"totalCount":1,"serviceAccounts":[{"id":3,"name":"myServiceAccount","login":"sa-oldname","orgId":1,"isDisabled":false,"role":"Admin","tokens":1,"avatarUrl":"/avatar/2500c98b645dbb9405e34002e460d53e"}],"page":1,"perPage":1000}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '226' + content-security-policy: + - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + content-type: + - application/json + date: + - Sat, 03 Dec 2022 17:20:57 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + set-cookie: + - INGRESSCOOKIE=1670088058.02.314.548541|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - deny + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/3/tokens + response: + body: + string: '[{"id":1,"name":"myToken","created":"2022-12-03T17:20:56Z","lastUsedAt":null,"expiration":"2022-12-04T17:20:56Z","secondsUntilExpiration":86398.764182349,"hasExpired":false}]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '174' + content-security-policy: + - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + content-type: + - application/json + date: + - Sat, 03 Dec 2022 17:20:57 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + set-cookie: + - INGRESSCOOKIE=1670088058.203.308.707616|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - deny + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/search?type=dash-db + response: + body: + string: '[{"id":23,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":14,"uid":"54KhiZ7nz","title":"AKS + Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"6uRDjTNnz","title":"App + Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":10,"uid":"dyzn5SK7z","title":"Azure + / Alert Consumption","uri":"db/azure-alert-consumption","url":"/d/dyzn5SK7z/azure-alert-consumption","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"Yo38mcvnz","title":"Azure + / Insights / Applications","uri":"db/azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"AppInsightsAvTestGeoMap","title":"Azure + / Insights / Applications Test Availability Geo Map","uri":"db/azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"INH9berMk","title":"Azure + / Insights / Cosmos DB","uri":"db/azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"8UDB1s3Gk","title":"Azure + / Insights / Data Explorer Clusters","uri":"db/azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"tQZAMYrMk","title":"Azure + / Insights / Key Vaults","uri":"db/azure-insights-key-vaults","url":"/d/tQZAMYrMk/azure-insights-key-vaults","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"3n2E8CrGk","title":"Azure + / Insights / Storage Accounts","uri":"db/azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"AzVmInsightsByRG","title":"Azure + / Insights / Virtual Machines by Resource Group","uri":"db/azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"AzVmInsightsByWS","title":"Azure + / Insights / Virtual Machines by Workspace","uri":"db/azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"Mtwt2BV7k","title":"Azure + / Resources Overview","uri":"db/azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":16,"uid":"xLERdASnz","title":"Cluster + Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":25,"uid":"vkQ0UHxiddk","title":"CoreDNS","uri":"db/coredns","url":"/d/vkQ0UHxiddk/coredns","slug":"","type":"dash-db","tags":["coredns-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":21,"uid":"QTVw7iK7z","title":"Geneva + Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":13,"uid":"icm-example","title":"IcM + Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":17,"uid":"sVKyjvpnz","title":"Incoming + Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":26,"uid":"09ec8aa1e996d6ffcd6817bbaff4db1b","title":"Kubernetes + / API server","uri":"db/kubernetes-api-server","url":"/d/09ec8aa1e996d6ffcd6817bbaff4db1b/kubernetes-api-server","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":27,"uid":"efa86fd1d0c121a26444b636a3f509a8","title":"Kubernetes + / Compute Resources / Cluster","uri":"db/kubernetes-compute-resources-cluster","url":"/d/efa86fd1d0c121a26444b636a3f509a8/kubernetes-compute-resources-cluster","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":28,"uid":"85a562078cdf77779eaa1add43ccec1e","title":"Kubernetes + / Compute Resources / Namespace (Pods)","uri":"db/kubernetes-compute-resources-namespace-pods","url":"/d/85a562078cdf77779eaa1add43ccec1e/kubernetes-compute-resources-namespace-pods","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":29,"uid":"a87fb0d919ec0ea5f6543124e16c42a5","title":"Kubernetes + / Compute Resources / Namespace (Workloads)","uri":"db/kubernetes-compute-resources-namespace-workloads","url":"/d/a87fb0d919ec0ea5f6543124e16c42a5/kubernetes-compute-resources-namespace-workloads","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":30,"uid":"200ac8fdbfbb74b39aff88118e4d1c2c","title":"Kubernetes + / Compute Resources / Node (Pods)","uri":"db/kubernetes-compute-resources-node-pods","url":"/d/200ac8fdbfbb74b39aff88118e4d1c2c/kubernetes-compute-resources-node-pods","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":31,"uid":"6581e46e4e5c7ba40a07646395ef7b23","title":"Kubernetes + / Compute Resources / Pod","uri":"db/kubernetes-compute-resources-pod","url":"/d/6581e46e4e5c7ba40a07646395ef7b23/kubernetes-compute-resources-pod","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":32,"uid":"a164a7f0339f99e89cea5cb47e9be617","title":"Kubernetes + / Compute Resources / Workload","uri":"db/kubernetes-compute-resources-workload","url":"/d/a164a7f0339f99e89cea5cb47e9be617/kubernetes-compute-resources-workload","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":33,"uid":"3138fa155d5915769fbded898ac09ff9","title":"Kubernetes + / Kubelet","uri":"db/kubernetes-kubelet","url":"/d/3138fa155d5915769fbded898ac09ff9/kubernetes-kubelet","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":34,"uid":"ff635a025bcfea7bc3dd4f508990a3e9","title":"Kubernetes + / Networking / Cluster","uri":"db/kubernetes-networking-cluster","url":"/d/ff635a025bcfea7bc3dd4f508990a3e9/kubernetes-networking-cluster","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":35,"uid":"8b7a8b326d7a6f1f04244066368c67af","title":"Kubernetes + / Networking / Namespace (Pods)","uri":"db/kubernetes-networking-namespace-pods","url":"/d/8b7a8b326d7a6f1f04244066368c67af/kubernetes-networking-namespace-pods","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":36,"uid":"bbb2a765a623ae38130206c7d94a160f","title":"Kubernetes + / Networking / Namespace (Workload)","uri":"db/kubernetes-networking-namespace-workload","url":"/d/bbb2a765a623ae38130206c7d94a160f/kubernetes-networking-namespace-workload","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":37,"uid":"7a18067ce943a40ae25454675c19ff5c","title":"Kubernetes + / Networking / Pod","uri":"db/kubernetes-networking-pod","url":"/d/7a18067ce943a40ae25454675c19ff5c/kubernetes-networking-pod","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":38,"uid":"728bf77cc1166d2f3133bf25846876cc","title":"Kubernetes + / Networking / Workload","uri":"db/kubernetes-networking-workload","url":"/d/728bf77cc1166d2f3133bf25846876cc/kubernetes-networking-workload","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":39,"uid":"919b92a8e8041bd567af9edab12c840c","title":"Kubernetes + / Persistent Volumes","uri":"db/kubernetes-persistent-volumes","url":"/d/919b92a8e8041bd567af9edab12c840c/kubernetes-persistent-volumes","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":40,"uid":"632e265de029684c40b21cb76bca4f94","title":"Kubernetes + / Proxy","uri":"db/kubernetes-proxy","url":"/d/632e265de029684c40b21cb76bca4f94/kubernetes-proxy","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":41,"uid":"F4bizNZ7k","title":"Kubernetes + / StatefulSets","uri":"db/kubernetes-statefulsets","url":"/d/F4bizNZ7k/kubernetes-statefulsets","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":45,"uid":"VESDBJS7k","title":"Kubernetes + / USE Method / Cluster(Windows)","uri":"db/kubernetes-use-method-cluster-windows","url":"/d/VESDBJS7k/kubernetes-use-method-cluster-windows","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":46,"uid":"YCBDf1I7k","title":"Kubernetes + / USE Method / Node(Windows)","uri":"db/kubernetes-use-method-node-windows","url":"/d/YCBDf1I7k/kubernetes-use-method-node-windows","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":18,"uid":"_sKhXTH7z","title":"Node + Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":42,"uid":"D4pVsnCGz","title":"Nodes + (Node exporter)","uri":"db/nodes-node-exporter","url":"/d/D4pVsnCGz/nodes-node-exporter","slug":"","type":"dash-db","tags":["node + exporter"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":19,"uid":"6naEwcp7z","title":"Outgoing + Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":47,"uid":"UskST-Snz","title":"Prometheus-Collector + Health","uri":"db/prometheus-collector-health","url":"/d/UskST-Snz/prometheus-collector-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":22,"uid":"GIgvhSV7z","title":"Service + Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":43,"uid":"VdrOA7jGz","title":"USE + Method / Cluster (Node exporter)","uri":"db/use-method-cluster-node-exporter","url":"/d/VdrOA7jGz/use-method-cluster-node-exporter","slug":"","type":"dash-db","tags":["node + exporter"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":44,"uid":"t5ajanjMk","title":"USE + Method / Node (Node exporter)","uri":"db/use-method-node-node-exporter","url":"/d/t5ajanjMk/use-method-node-node-exporter","slug":"","type":"dash-db","tags":["node + exporter"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure + Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":20,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-security-policy: + - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + content-type: + - application/json + date: + - Sat, 03 Dec 2022 17:20:57 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + set-cookie: + - INGRESSCOOKIE=1670088058.485.312.898271|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + x-frame-options: + - deny + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/search + response: + body: + string: '{"totalCount":1,"serviceAccounts":[{"id":3,"name":"myServiceAccount","login":"sa-oldname","orgId":1,"isDisabled":false,"role":"Admin","tokens":1,"avatarUrl":"/avatar/2500c98b645dbb9405e34002e460d53e"}],"page":1,"perPage":1000}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '226' + content-security-policy: + - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + content-type: + - application/json + date: + - Sat, 03 Dec 2022 17:20:57 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + set-cookie: + - INGRESSCOOKIE=1670088058.827.313.648711|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - deny + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/search + response: + body: + string: '{"totalCount":1,"serviceAccounts":[{"id":3,"name":"myServiceAccount","login":"sa-oldname","orgId":1,"isDisabled":false,"role":"Admin","tokens":1,"avatarUrl":"/avatar/2500c98b645dbb9405e34002e460d53e"}],"page":1,"perPage":1000}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '226' + content-security-policy: + - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + content-type: + - application/json + date: + - Sat, 03 Dec 2022 17:20:58 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + set-cookie: + - INGRESSCOOKIE=1670088059.011.307.706014|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - deny + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/3/tokens + response: + body: + string: '[{"id":1,"name":"myToken","created":"2022-12-03T17:20:56Z","lastUsedAt":"2022-12-03T17:20:57Z","expiration":"2022-12-04T17:20:56Z","secondsUntilExpiration":86397.736716692,"hasExpired":false}]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '192' + content-security-policy: + - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + content-type: + - application/json + date: + - Sat, 03 Dec 2022 17:20:58 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + set-cookie: + - INGRESSCOOKIE=1670088059.214.313.186046|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - deny + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: DELETE + uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/3/tokens/1 + response: + body: + string: '{"message":"Service account token deleted"}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '43' + content-security-policy: + - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + content-type: + - application/json + date: + - Sat, 03 Dec 2022 17:20:58 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + set-cookie: + - INGRESSCOOKIE=1670088059.428.313.726400|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - deny + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/search + response: + body: + string: '{"totalCount":1,"serviceAccounts":[{"id":3,"name":"myServiceAccount","login":"sa-oldname","orgId":1,"isDisabled":false,"role":"Admin","tokens":0,"avatarUrl":"/avatar/2500c98b645dbb9405e34002e460d53e"}],"page":1,"perPage":1000}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '226' + content-security-policy: + - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + content-type: + - application/json + date: + - Sat, 03 Dec 2022 17:20:58 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + set-cookie: + - INGRESSCOOKIE=1670088059.745.310.945666|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - deny + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/3/tokens + response: + body: + string: '[]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '2' + content-security-policy: + - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + content-type: + - application/json + date: + - Sat, 03 Dec 2022 17:20:58 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + set-cookie: + - INGRESSCOOKIE=1670088059.959.311.595654|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - deny + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/search + response: + body: + string: '{"totalCount":1,"serviceAccounts":[{"id":3,"name":"myServiceAccount","login":"sa-oldname","orgId":1,"isDisabled":false,"role":"Admin","tokens":0,"avatarUrl":"/avatar/2500c98b645dbb9405e34002e460d53e"}],"page":1,"perPage":1000}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '226' + content-security-policy: + - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + content-type: + - application/json + date: + - Sat, 03 Dec 2022 17:20:59 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + set-cookie: + - INGRESSCOOKIE=1670088060.243.316.440887|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - deny + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: DELETE + uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/3 + response: + body: + string: '{"message":"Service account deleted"}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '37' + content-security-policy: + - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + content-type: + - application/json + date: + - Sat, 03 Dec 2022 17:20:59 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + set-cookie: + - INGRESSCOOKIE=1670088060.436.310.399502|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - deny + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +version: 1 diff --git a/src/amg/azext_amg/tests/latest/test_amg_scenario.py b/src/amg/azext_amg/tests/latest/test_amg_scenario.py index b7c5679a138..0757d2bd8ec 100644 --- a/src/amg/azext_amg/tests/latest/test_amg_scenario.py +++ b/src/amg/azext_amg/tests/latest/test_amg_scenario.py @@ -88,6 +88,45 @@ def test_api_key_e2e(self, resource_group): number = len(self.cmd('grafana dashboard list -g {rg} -n {name} --api-key ' + api_key).get_output_in_json()) self.assertTrue(number > 0) + @ResourceGroupPreparer(name_prefix='cli_test_amg') + def test_service_account_e2e(self, resource_group): + + self.kwargs.update({ + 'name': 'clitestserviceaccount', + 'location': 'westcentralus', + "account": "myServiceAccount", + "token": "myToken" + }) + + owner = self._get_signed_in_user() + self.recording_processors.append(MSGraphNameReplacer(owner, MOCKED_USER_NAME)) + + with unittest.mock.patch('azext_amg.custom._gen_guid', side_effect=self.create_guid): + self.cmd('grafana create -g {rg} -n {name} -l {location}') + self.cmd('grafana update -g {rg} -n {name} --service-account Enabled') + self.cmd('grafana service-account list -g {rg} -n {name}', checks=[ + self.check('length([])', 0) + ]) + self.cmd('grafana service-account create -g {rg} -n {name} --service-account oldName --role viewer --is-disabled true', checks=[ + self.check('isDisabled', True) + ]) + self.cmd('grafana service-account update -g {rg} -n {name} --service-account oldName --new-name {account} --role Admin --is-disabled false', checks=[ + # self.check('isDisabled', False) + ]) + self.cmd('grafana service-account show -g {rg} -n {name} --service-account {account}') + self.cmd('grafana service-account list -g {rg} -n {name}') + result = self.cmd('grafana service-account token create -g {rg} -n {name} --service-account {account} --token {token} --time-to-live 1d').get_output_in_json() + key = result["key"] + self.cmd('grafana service-account token list -g {rg} -n {name} --service-account {account}', checks=[ + self.check('length([])', 1) + ]) + number = len(self.cmd('grafana dashboard list -g {rg} -n {name} --token ' + key).get_output_in_json()) + self.assertTrue(number > 0) + self.cmd('grafana service-account token delete -g {rg} -n {name} --service-account {account} --token {token}') + self.cmd('grafana service-account token list -g {rg} -n {name} --service-account {account}', checks=[ + self.check('length([])', 0) + ]) + self.cmd('grafana service-account delete -g {rg} -n {name} --service-account {account}') @AllowLargeResponse(size_kb=3072) @ResourceGroupPreparer(name_prefix='cli_test_amg', location='westeurope') From 70bf163c33ff4b9f745f79811ec9dee16047555b Mon Sep 17 00:00:00 2001 From: Yugang Wang Date: Sat, 3 Dec 2022 10:49:46 -0800 Subject: [PATCH 4/8] update release doc --- src/amg/HISTORY.rst | 11 ++++++++++- src/amg/setup.py | 2 +- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/src/amg/HISTORY.rst b/src/amg/HISTORY.rst index a1a78dd02ae..4c179629036 100644 --- a/src/amg/HISTORY.rst +++ b/src/amg/HISTORY.rst @@ -13,4 +13,13 @@ Release History 0.1.2 ++++++ -* `az grafana create`: support guess users +* `az grafana create`: support guest users + +0.2.0 +++++++ +* `az grafana api-key`: support api keys + +0.3.0 +++++++ +* `az grafana service-account`: support service accounts + diff --git a/src/amg/setup.py b/src/amg/setup.py index 9d7996d2832..6ac01f31d8d 100644 --- a/src/amg/setup.py +++ b/src/amg/setup.py @@ -16,7 +16,7 @@ # TODO: Confirm this is the right version number you want and it matches your # HISTORY.rst entry. -VERSION = '0.2.0' +VERSION = '0.3.0' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers From 01c80553396b8f6d1ec3c10fa1b76a8f6aafc833 Mon Sep 17 00:00:00 2001 From: Yugang Wang Date: Sat, 3 Dec 2022 16:37:56 -0800 Subject: [PATCH 5/8] address lint error --- src/amg/azext_amg/_params.py | 7 ++++--- src/amg/azext_amg/custom.py | 4 ++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/src/amg/azext_amg/_params.py b/src/amg/azext_amg/_params.py index 4fd6e2c456a..c98fdb094c9 100644 --- a/src/amg/azext_amg/_params.py +++ b/src/amg/azext_amg/_params.py @@ -16,7 +16,7 @@ def load_arguments(self, _): help="Name of the Azure Managed Grafana.", id_part="name") grafana_role_type = CLIArgumentType(arg_type=get_enum_type(["Admin", "Editor", "Viewer"]), options_list=["--role", "-r"], - help="Grafana role name", default="Viewer") + help="Grafana role name") with self.argument_context("grafana") as c: c.argument("tags", tags_type) @@ -61,7 +61,7 @@ def load_arguments(self, _): with self.argument_context("grafana api-key") as c: c.argument("key_name", help="api key name") - c.argument("role", grafana_role_type) + c.argument("role", grafana_role_type, default="Viewer") c.argument("time_to_live", default="1d", help="The API key life duration. For example, 1d if your key is going to last fr one day. Supported units are: s,m,h,d,w,M,y") with self.argument_context("grafana api-key create") as c: @@ -94,14 +94,15 @@ def load_arguments(self, _): c.argument("user", help="user login name or email") with self.argument_context("grafana service-account") as c: - c.argument("role", grafana_role_type) c.argument("service_account", help="id or name which can identify a service account") c.argument("is_disabled", arg_type=get_three_state_flag(), help="disable the service account. default: false") with self.argument_context("grafana service-account create") as c: + c.argument("role", grafana_role_type, default="Viewer") c.argument("service_account", help="service account name") with self.argument_context("grafana service-account update") as c: + c.argument("role", grafana_role_type) c.argument("new_name", help="new name of the service account") with self.argument_context("grafana service-account token") as c: diff --git a/src/amg/azext_amg/custom.py b/src/amg/azext_amg/custom.py index b676cd47f40..a3c49695827 100644 --- a/src/amg/azext_amg/custom.py +++ b/src/amg/azext_amg/custom.py @@ -546,7 +546,7 @@ def delete_service_account(cmd, grafana_name, service_account, resource_group_na def _get_service_account_id(cmd, resource_group_name, grafana_name, service_account): try: - _ = int(service_account) + int(service_account) return service_account except ValueError: accounts = list_service_accounts(cmd, grafana_name, resource_group_name) @@ -593,7 +593,7 @@ def delete_service_account_token(cmd, grafana_name, service_account, token, reso def _get_service_account_token_id(cmd, resource_group_name, grafana_name, service_account, token): try: - _ = int(token) + int(token) return token except ValueError: accounts = list_service_account_tokens(cmd, grafana_name, service_account, resource_group_name) From fb532e404dfcaca97e9cdd111d2be78c1a359740 Mon Sep 17 00:00:00 2001 From: Yugang Wang Date: Sat, 3 Dec 2022 20:45:55 -0800 Subject: [PATCH 6/8] fix cmd linter error --- src/amg/azext_amg/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/amg/azext_amg/commands.py b/src/amg/azext_amg/commands.py index de102d5500d..af683002f26 100644 --- a/src/amg/azext_amg/commands.py +++ b/src/amg/azext_amg/commands.py @@ -61,7 +61,7 @@ def load_command_table(self, _): with self.command_group('grafana service-account') as g: g.custom_command('create', 'create_service_account') g.custom_command('list', 'list_service_accounts') - g.custom_command('show', 'show_service_account') + g.custom_show_command('show', 'show_service_account') g.custom_command('delete', 'delete_service_account') g.custom_command('update', 'update_service_account') From a8940c2a14b7e837aed18760edc48f30d3f130c4 Mon Sep 17 00:00:00 2001 From: Yugang Wang Date: Mon, 5 Dec 2022 20:39:40 -0800 Subject: [PATCH 7/8] add examples --- src/amg/azext_amg/_help.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/amg/azext_amg/_help.py b/src/amg/azext_amg/_help.py index 2a56ba2b674..2f1ce694edd 100644 --- a/src/amg/azext_amg/_help.py +++ b/src/amg/azext_amg/_help.py @@ -289,11 +289,19 @@ helps['grafana service-account create'] = """ type: command short-summary: create a new service account. + examples: + - name: Create a service account with admin role + text: | + az grafana service-account create -g myResourceGroup -n myGrafana --service-account myAccount --role admin """ helps['grafana service-account update'] = """ type: command short-summary: update a service account. + examples: + - name: disable a service account + text: | + az grafana service-account create -g myResourceGroup -n myGrafana --service-account myAccount --is-disabled true """ helps['grafana service-account show'] = """ @@ -319,6 +327,10 @@ helps['grafana service-account token create'] = """ type: command short-summary: create a new service account token. + examples: + - name: create a service account token lasting 1 day + text: | + az grafana service-account token create -g myResourceGroup -n myGrafana --service-account myAccount --token myToken --time-to-live 1d """ helps['grafana service-account token list'] = """ From 03027812ab7d6da625ce930ef8b15cf7afd1e365 Mon Sep 17 00:00:00 2001 From: Yugang Wang Date: Mon, 5 Dec 2022 22:28:18 -0800 Subject: [PATCH 8/8] fix lint error --- src/amg/azext_amg/_help.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/amg/azext_amg/_help.py b/src/amg/azext_amg/_help.py index 2f1ce694edd..6e1337efe36 100644 --- a/src/amg/azext_amg/_help.py +++ b/src/amg/azext_amg/_help.py @@ -301,7 +301,7 @@ examples: - name: disable a service account text: | - az grafana service-account create -g myResourceGroup -n myGrafana --service-account myAccount --is-disabled true + az grafana service-account update -g myResourceGroup -n myGrafana --service-account myAccount --is-disabled true """ helps['grafana service-account show'] = """