From 37befebf76f21ac1b278959705060454e12b9b2c Mon Sep 17 00:00:00 2001 From: Yugang Wang Date: Sun, 7 Aug 2022 18:33:02 -0700 Subject: [PATCH 1/7] AMG: commands update for new API version (#5169) * support guest users * bump up the version * Add GA commands of api-key, update, deterministic IPs * fix lint error * stay with the existing version to prevent incidental publishing * fix lint error * delete an old test file whose test has been ported to another file * use /me endpoint to retrieve current user object id * update dependency * remove isGrafanaAdmin property to avoid confusion * up the version to publish * consolidate tests --- src/amg/.pylintrc | 2 + src/amg/azext_amg/_help.py | 25 + src/amg/azext_amg/_params.py | 20 +- src/amg/azext_amg/azext_metadata.json | 2 +- src/amg/azext_amg/commands.py | 6 + src/amg/azext_amg/custom.py | 275 +- .../latest/recordings/test_amg_base.yaml | 1464 +++-------- .../tests/latest/recordings/test_amg_e2e.yaml | 2240 +++++------------ .../latest/recordings/test_api_key_e2e.yaml | 1535 +++++++++++ .../tests/latest/test_amg_livescenario.py | 167 -- .../tests/latest/test_amg_scenario.py | 223 +- src/amg/azext_amg/vendored_sdks/__init__.py | 13 +- .../azext_amg/vendored_sdks/_configuration.py | 11 +- .../_dashboard_management_client.py | 42 +- .../azext_amg/vendored_sdks/aio/__init__.py | 13 +- .../vendored_sdks/aio/_configuration.py | 11 +- .../aio/_dashboard_management_client.py | 41 +- .../vendored_sdks/aio/operations/__init__.py | 9 + .../aio/operations/_grafana_operations.py | 325 ++- .../aio/operations/_operations.py | 66 +- .../vendored_sdks/aio/operations/_patch.py | 19 + ...private_endpoint_connections_operations.py | 491 ++++ .../_private_link_resources_operations.py | 208 ++ .../vendored_sdks/models/__init__.py | 64 +- .../_dashboard_management_client_enums.py | 71 +- .../vendored_sdks/models/_models_py3.py | 729 ++++-- .../azext_amg/vendored_sdks/models/_patch.py | 19 + .../vendored_sdks/operations/__init__.py | 9 + .../operations/_grafana_operations.py | 497 ++-- .../vendored_sdks/operations/_operations.py | 92 +- .../vendored_sdks/operations/_patch.py | 19 + ...private_endpoint_connections_operations.py | 654 +++++ .../_private_link_resources_operations.py | 286 +++ src/amg/setup.py | 4 +- 34 files changed, 6074 insertions(+), 3578 deletions(-) create mode 100644 src/amg/.pylintrc create mode 100644 src/amg/azext_amg/tests/latest/recordings/test_api_key_e2e.yaml delete mode 100644 src/amg/azext_amg/tests/latest/test_amg_livescenario.py create mode 100644 src/amg/azext_amg/vendored_sdks/aio/operations/_patch.py create mode 100644 src/amg/azext_amg/vendored_sdks/aio/operations/_private_endpoint_connections_operations.py create mode 100644 src/amg/azext_amg/vendored_sdks/aio/operations/_private_link_resources_operations.py create mode 100644 src/amg/azext_amg/vendored_sdks/models/_patch.py create mode 100644 src/amg/azext_amg/vendored_sdks/operations/_patch.py create mode 100644 src/amg/azext_amg/vendored_sdks/operations/_private_endpoint_connections_operations.py create mode 100644 src/amg/azext_amg/vendored_sdks/operations/_private_link_resources_operations.py diff --git a/src/amg/.pylintrc b/src/amg/.pylintrc new file mode 100644 index 00000000000..2716e922e21 --- /dev/null +++ b/src/amg/.pylintrc @@ -0,0 +1,2 @@ +[MASTER] +ignore=vendored_sdks \ No newline at end of file diff --git a/src/amg/azext_amg/_help.py b/src/amg/azext_amg/_help.py index 118eed94f05..4256cce4680 100644 --- a/src/amg/azext_amg/_help.py +++ b/src/amg/azext_amg/_help.py @@ -33,6 +33,11 @@ short-summary: Show details of a Azure Managed Grafana instance. """ +helps['grafana update'] = """ + type: command + short-summary: Update a Azure Managed Grafana instance. +""" + helps['grafana data-source'] = """ type: group short-summary: Commands to manage data sources of an instance. @@ -255,3 +260,23 @@ type: command short-summary: show detail of a user. """ + +helps['grafana api-key'] = """ + type: group + short-summary: Commands to manage api keys. +""" + +helps['grafana api-key create'] = """ + type: command + short-summary: create a new api key. +""" + +helps['grafana api-key list'] = """ + type: command + short-summary: list existing api keys. +""" + +helps['grafana api-key delete'] = """ + type: command + short-summary: delete an api key. +""" diff --git a/src/amg/azext_amg/_params.py b/src/amg/azext_amg/_params.py index 61f28c0e39b..2539e3e4c04 100644 --- a/src/amg/azext_amg/_params.py +++ b/src/amg/azext_amg/_params.py @@ -2,7 +2,7 @@ # Copyright (c) Microsoft Corporation. All rights reserved. # 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 def load_arguments(self, _): @@ -23,6 +23,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", help="api key, 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) @@ -31,6 +32,12 @@ def load_arguments(self, _): c.argument("skip_role_assignments", arg_type=get_three_state_flag(), help="Do not create role assignments for managed identity and the current login user") c.argument("principal_ids", nargs="+", help="space-separated Azure AD object ids for users, groups, etc to be made as Grafana Admins. Once provided, CLI won't make the current logon user as Grafana Admin") + # 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("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") + with self.argument_context("grafana dashboard") as c: c.argument("uid", options_list=["--dashboard"], help="dashboard uid") c.argument("title", help="title of a dashboard") @@ -45,6 +52,17 @@ 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 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("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: + c.argument("key", help="api key name") + + with self.argument_context("grafana api-key delete") as c: + c.argument("key", help="id or name that identify an api-key to delete") + with self.argument_context("grafana data-source") as c: c.argument("data_source", help="name, id, uid which can identify a data source. CLI will search in the order of name, id, and uid, till finds a match") c.argument("definition", type=validate_file_or_dict, help="json string with data source definition, or a path to a file with such content") diff --git a/src/amg/azext_amg/azext_metadata.json b/src/amg/azext_amg/azext_metadata.json index 044f0f3f3f3..b68806c77db 100644 --- a/src/amg/azext_amg/azext_metadata.json +++ b/src/amg/azext_amg/azext_metadata.json @@ -1,5 +1,5 @@ { "azext.isPreview": true, - "azext.minCliCoreVersion": "2.30.0", + "azext.minCliCoreVersion": "2.38.0", "azext.maxCliCoreVersion": "2.99.0" } \ No newline at end of file diff --git a/src/amg/azext_amg/commands.py b/src/amg/azext_amg/commands.py index bc292ffc7b7..0b729ed4bd7 100644 --- a/src/amg/azext_amg/commands.py +++ b/src/amg/azext_amg/commands.py @@ -15,6 +15,7 @@ def load_command_table(self, _): g.custom_command('delete', 'delete_grafana', confirmation=True) g.custom_command('list', 'list_grafana') g.custom_show_command('show', 'show_grafana') + g.custom_command('update', 'update_grafana') with self.command_group('grafana dashboard') as g: g.custom_command('create', 'create_dashboard') @@ -51,3 +52,8 @@ def load_command_table(self, _): g.custom_command('list', 'list_users') g.custom_show_command('show', 'show_user') g.custom_command('actual-user', 'get_actual_user') + + with self.command_group('grafana api-key') as g: + g.custom_command('create', 'create_api_key') + g.custom_command('list', 'list_api_keys') + g.custom_command('delete', 'delete_api_key') diff --git a/src/amg/azext_amg/custom.py b/src/amg/azext_amg/custom.py index 20324584e1f..4299f585a2c 100644 --- a/src/amg/azext_amg/custom.py +++ b/src/amg/azext_amg/custom.py @@ -73,28 +73,40 @@ def create_grafana(cmd, resource_group_name, grafana_name, return resource +# for injecting test seams to produce predictable role assignment id for playback +def _gen_guid(): + import uuid + return uuid.uuid4() + + def _get_login_account_principal_id(cli_ctx): - from azure.cli.core._profile import Profile + from azure.graphrbac.models import GraphErrorException + from azure.cli.core._profile import Profile, _USER_ENTITY, _USER_TYPE, _SERVICE_PRINCIPAL, _USER_NAME from azure.graphrbac import GraphRbacManagementClient profile = Profile(cli_ctx=cli_ctx) cred, _, tenant_id = profile.get_login_credentials( resource=cli_ctx.cloud.endpoints.active_directory_graph_resource_id) client = GraphRbacManagementClient(cred, tenant_id, base_url=cli_ctx.cloud.endpoints.active_directory_graph_resource_id) - assignee = profile.get_current_account_user() - result = list(client.users.list(filter=f"userPrincipalName eq '{assignee}' or mail eq '{assignee}'")) - if not result: - result = list(client.service_principals.list( - filter=f"servicePrincipalNames/any(c:c eq '{assignee}')")) + active_account = profile.get_subscription() + assignee = active_account[_USER_ENTITY][_USER_NAME] + try: + if active_account[_USER_ENTITY][_USER_TYPE] == _SERVICE_PRINCIPAL: + result = list(client.service_principals.list( + filter=f"servicePrincipalNames/any(c:c eq '{assignee}')")) + else: + result = [client.signed_in_user.get()] + except GraphErrorException as ex: + logger.warning("Graph query error %s", ex) if not result: raise CLIInternalError((f"Failed to retrieve principal id for '{assignee}', which is needed to create a " f"role assignment. Consider using '--principal-ids' to bypass the lookup")) + return result[0].object_id def _create_role_assignment(cli_ctx, principal_id, role_definition_id, scope): import time - import uuid assignments_client = get_mgmt_service_client(cli_ctx, ResourceType.MGMT_AUTHORIZATION).role_assignments RoleAssignmentCreateParameters = get_sdk(cli_ctx, ResourceType.MGMT_AUTHORIZATION, 'RoleAssignmentCreateParameters', mod='models', @@ -103,7 +115,7 @@ def _create_role_assignment(cli_ctx, principal_id, role_definition_id, scope): logger.info("Creating an assignment with a role '%s' on the scope of '%s'", role_definition_id, scope) retry_times = 36 - assignment_name = uuid.uuid4() + assignment_name = _gen_guid() for retry_time in range(0, retry_times): try: assignments_client.create(scope=scope, role_assignment_name=assignment_name, @@ -136,6 +148,27 @@ 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, + tags=None): + if not api_key and not deterministic_outbound_ip and not tags: + raise ArgumentUsageError("--api-key | --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 deterministic_outbound_ip: + instance.properties.deterministic_outbound_ip = deterministic_outbound_ip + + if tags: + instance.tags = tags + + # "begin_create" uses PUT, which handles both Create and Update + return client.grafana.begin_create(resource_group_name, grafana_name, instance) + + def show_grafana(cmd, grafana_name, resource_group_name=None): client = cf_amg(cmd.cli_ctx) return client.grafana.get(resource_group_name, grafana_name) @@ -155,17 +188,19 @@ 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): - response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/dashboards/uid/" + uid) +def show_dashboard(cmd, grafana_name, uid, resource_group_name=None, api_key=None): + response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/dashboards/uid/" + uid, + api_key=api_key) return json.loads(response.content) -def list_dashboards(cmd, grafana_name, resource_group_name=None): - response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/search?type=dash-db") +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) return json.loads(response.content) -def create_dashboard(cmd, grafana_name, definition, title=None, folder=None, resource_group_name=None, overwrite=None): +def create_dashboard(cmd, grafana_name, definition, title=None, folder=None, resource_group_name=None, + overwrite=None, api_key=None): if "dashboard" in definition: payload = definition else: @@ -187,19 +222,21 @@ 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) + payload, api_key=api_key) return json.loads(response.content) -def update_dashboard(cmd, grafana_name, definition, folder=None, resource_group_name=None, overwrite=None): +def update_dashboard(cmd, grafana_name, definition, folder=None, resource_group_name=None, overwrite=None, + api_key=None): return create_dashboard(cmd, grafana_name, definition, folder=folder, resource_group_name=resource_group_name, - overwrite=overwrite) + overwrite=overwrite, api_key=api_key) -def import_dashboard(cmd, grafana_name, definition, folder=None, resource_group_name=None, overwrite=None): +def import_dashboard(cmd, grafana_name, definition, folder=None, resource_group_name=None, overwrite=None, + api_key=None): import copy - data = _try_load_dashboard_definition(cmd, resource_group_name, grafana_name, definition) + data = _try_load_dashboard_definition(cmd, resource_group_name, grafana_name, definition, api_key=api_key) if "dashboard" in data: payload = data else: @@ -228,17 +265,17 @@ 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) + payload, api_key=api_key) return json.loads(response.content) -def _try_load_dashboard_definition(cmd, resource_group_name, grafana_name, definition): +def _try_load_dashboard_definition(cmd, resource_group_name, grafana_name, definition, api_key=None): import re try: int(definition) response = _send_request(cmd, resource_group_name, grafana_name, "get", - "/api/gnet/dashboards/" + str(definition)) + "/api/gnet/dashboards/" + str(definition), api_key=api_key) definition = json.loads(response.content)["json"] return definition except ValueError: @@ -257,115 +294,128 @@ 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): - _send_request(cmd, resource_group_name, grafana_name, "delete", "/api/dashboards/uid/" + uid) +def delete_dashboard(cmd, grafana_name, uid, resource_group_name=None, api_key=None): + _send_request(cmd, resource_group_name, grafana_name, "delete", "/api/dashboards/uid/" + uid, + api_key=api_key) -def create_data_source(cmd, grafana_name, definition, resource_group_name=None): - response = _send_request(cmd, resource_group_name, grafana_name, "post", "/api/datasources", definition) +def create_data_source(cmd, grafana_name, definition, resource_group_name=None, api_key=None): + response = _send_request(cmd, resource_group_name, grafana_name, "post", "/api/datasources", definition, + api_key=api_key) return json.loads(response.content) -def show_data_source(cmd, grafana_name, data_source, resource_group_name=None): - return _find_data_source(cmd, resource_group_name, grafana_name, data_source) +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 delete_data_source(cmd, grafana_name, data_source, resource_group_name=None): +def delete_data_source(cmd, grafana_name, data_source, resource_group_name=None, api_key=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"]) + _send_request(cmd, resource_group_name, grafana_name, "delete", "/api/datasources/uid/" + data["uid"], + api_key=api_key) -def list_data_sources(cmd, grafana_name, resource_group_name=None): - response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/datasources") +def list_data_sources(cmd, grafana_name, resource_group_name=None, api_key=None): + response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/datasources", + api_key=api_key) return json.loads(response.content) -def update_data_source(cmd, grafana_name, data_source, definition, resource_group_name=None): - data = _find_data_source(cmd, resource_group_name, grafana_name, data_source) +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) response = _send_request(cmd, resource_group_name, grafana_name, "put", "/api/datasources/" + str(data['id']), - definition) + definition, api_key=api_key) return json.loads(response.content) -def list_notification_channels(cmd, grafana_name, resource_group_name=None, short=False): +def list_notification_channels(cmd, grafana_name, resource_group_name=None, short=False, api_key=None): if short is False: - response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/alert-notifications") + response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/alert-notifications", + api_key=api_key) elif short is True: - response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/alert-notifications/lookup") + response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/alert-notifications/lookup", + api_key=api_key) return json.loads(response.content) -def show_notification_channel(cmd, grafana_name, notification_channel, resource_group_name=None): - return _find_notification_channel(cmd, resource_group_name, grafana_name, notification_channel) +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 create_notification_channel(cmd, grafana_name, definition, resource_group_name=None): - response = _send_request(cmd, resource_group_name, grafana_name, "post", "/api/alert-notifications", definition) +def create_notification_channel(cmd, grafana_name, definition, resource_group_name=None, api_key=None): + response = _send_request(cmd, resource_group_name, grafana_name, "post", "/api/alert-notifications", definition, + api_key=api_key) return json.loads(response.content) -def update_notification_channel(cmd, grafana_name, notification_channel, definition, resource_group_name=None): - data = _find_notification_channel(cmd, resource_group_name, grafana_name, notification_channel) +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) definition['id'] = data['id'] response = _send_request(cmd, resource_group_name, grafana_name, "put", "/api/alert-notifications/" + str(data['id']), - definition) + definition, api_key=api_key) return json.loads(response.content) -def delete_notification_channel(cmd, grafana_name, notification_channel, resource_group_name=None): - data = _find_notification_channel(cmd, resource_group_name, grafana_name, notification_channel) - _send_request(cmd, resource_group_name, grafana_name, "delete", "/api/alert-notifications/" + str(data["id"])) +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) + _send_request(cmd, resource_group_name, grafana_name, "delete", "/api/alert-notifications/" + str(data["id"]), + api_key=api_key) -def test_notification_channel(cmd, grafana_name, notification_channel, resource_group_name=None): - data = _find_notification_channel(cmd, resource_group_name, grafana_name, notification_channel) +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) response = _send_request(cmd, resource_group_name, grafana_name, "post", "/api/alert-notifications/test", - data) - return json.loads(response.content) + data, api_key=api_key) + return response -def create_folder(cmd, grafana_name, title, resource_group_name=None): +def create_folder(cmd, grafana_name, title, resource_group_name=None, api_key=None): payload = { "title": title } - response = _send_request(cmd, resource_group_name, grafana_name, "post", "/api/folders", payload) + response = _send_request(cmd, resource_group_name, grafana_name, "post", "/api/folders", payload, + api_key=api_key) return json.loads(response.content) -def list_folders(cmd, grafana_name, resource_group_name=None): - response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/folders") +def list_folders(cmd, grafana_name, resource_group_name=None, api_key=None): + response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/folders", + api_key=api_key) return json.loads(response.content) -def update_folder(cmd, grafana_name, folder, title, resource_group_name=None): - f = show_folder(cmd, grafana_name, folder, resource_group_name) +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) version = f['version'] data = { "title": title, "version": int(version) } - response = _send_request(cmd, resource_group_name, grafana_name, "put", "/api/folders/" + f["uid"], data) + response = _send_request(cmd, resource_group_name, grafana_name, "put", "/api/folders/" + f["uid"], data, + api_key=api_key) return json.loads(response.content) -def show_folder(cmd, grafana_name, folder, resource_group_name=None): - return _find_folder(cmd, resource_group_name, grafana_name, folder) +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 delete_folder(cmd, grafana_name, folder, resource_group_name=None): +def delete_folder(cmd, grafana_name, folder, resource_group_name=None, api_key=None): data = _find_folder(cmd, resource_group_name, grafana_name, folder) - _send_request(cmd, resource_group_name, grafana_name, "delete", "/api/folders/" + data['uid']) + _send_request(cmd, resource_group_name, grafana_name, "delete", "/api/folders/" + data['uid'], + api_key=api_key) -def _find_folder(cmd, resource_group_name, grafana_name, folder): +def _find_folder(cmd, resource_group_name, grafana_name, folder, api_key=None): response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/folders/id/" + folder, - raise_for_error_status=False) + raise_for_error_status=False, api_key=api_key) 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) + raise_for_error_status=False, api_key=api_key) if response.status_code >= 400: - response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/folders") + response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/folders", api_key=api_key) if response.status_code >= 400: raise ArgumentUsageError(f"Could't find the folder '{folder}'. Ex: {response.status_code}") result = json.loads(response.content) @@ -380,18 +430,69 @@ def _find_folder(cmd, resource_group_name, grafana_name, folder): return json.loads(response.content) -def get_actual_user(cmd, grafana_name, resource_group_name=None): - response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/user") +def list_api_keys(cmd, grafana_name, resource_group_name=None): + response = _send_request(cmd, resource_group_name, grafana_name, "get", + "/api/auth/keys?includedExpired=false&accesscontrol=true") return json.loads(response.content) -def list_users(cmd, grafana_name, resource_group_name=None): - response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/org/users") +def delete_api_key(cmd, grafana_name, key, resource_group_name=None): + # Find the key id based on name + try: + int(key) + except ValueError: + # looks like a key name is provided, need to convert to id to delete + keys = list_api_keys(cmd, grafana_name, resource_group_name=resource_group_name) + temp = next((k for k in keys if k['name'].lower() == key.lower()), None) + if temp: + key = str(temp['id']) + _send_request(cmd, resource_group_name, grafana_name, "delete", "/api/auth/keys/" + key) + + +def create_api_key(cmd, grafana_name, key, role=None, time_to_live=None, resource_group_name=None): + unit_to_seconds = { + "s": 1, + "m": 60, + "h": 3600, + "d": 3600 * 24, + "w": 3600 * 24 * 7, + "M": 3600 * 24 * 30, + "y": 3600 * 24 * 30 * 365 + } + unit_name = time_to_live[len(time_to_live) - 1:] + try: + if unit_name in unit_to_seconds: + seconds = int(time_to_live[: len(time_to_live) - 1]) * unit_to_seconds[unit_name] + else: + seconds = int(time_to_live) + except ValueError: + raise ArgumentUsageError("Please provide valid API key life duration") from None + + 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 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) + 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) return json.loads(response.content) -def show_user(cmd, grafana_name, user, resource_group_name=None): - users = list_users(cmd, grafana_name, resource_group_name=resource_group_name) +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) match = next((u for u in users if u['name'].lower() == user.lower()), None) if match: @@ -401,7 +502,7 @@ def show_user(cmd, grafana_name, user, resource_group_name=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): + conditions=None, resource_group_name=None, api_key=None): import datetime import time from dateutil import parser @@ -419,7 +520,7 @@ 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)["id"] + data_source_id = _find_data_source(cmd, resource_group_name, grafana_name, data_source, api_key=api_key)["id"] data = { "from": time_from_epoch, @@ -438,33 +539,33 @@ 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) + response = _send_request(cmd, resource_group_name, grafana_name, "post", "/api/ds/query", data, api_key=api_key) return json.loads(response.content) -def _find_data_source(cmd, resource_group_name, grafana_name, data_source): +def _find_data_source(cmd, resource_group_name, grafana_name, data_source, api_key=None): response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/datasources/name/" + data_source, - raise_for_error_status=False) + raise_for_error_status=False, api_key=api_key) if response.status_code >= 400: response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/datasources/" + data_source, - raise_for_error_status=False) + raise_for_error_status=False, api_key=api_key) 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) + raise_for_error_status=False, api_key=api_key) 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): +def _find_notification_channel(cmd, resource_group_name, grafana_name, notification_channel, api_key=None): response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/alert-notifications/" + notification_channel, - raise_for_error_status=False) + raise_for_error_status=False, api_key=api_key) 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) + raise_for_error_status=False, api_key=api_key) if response.status_code >= 400: raise ArgumentUsageError( f"Couldn't found notification channel {notification_channel}. Ex: {response.status_code}") @@ -481,7 +582,8 @@ def _try_load_file_content(file_content): return file_content -def _send_request(cmd, resource_group_name, grafana_name, http_method, path, body=None, raise_for_error_status=True): +def _send_request(cmd, resource_group_name, grafana_name, http_method, path, body=None, raise_for_error_status=True, + api_key=None): endpoint = grafana_endpoints.get(grafana_name) if not endpoint: grafana = show_grafana(cmd, grafana_name, resource_group_name) @@ -495,8 +597,11 @@ 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") - creds, _, _ = profile.get_raw_token(subscription=subscription, - resource=amg_first_party_app) + if api_key: + creds = [None, api_key] + else: + creds, _, _ = profile.get_raw_token(subscription=subscription, + resource=amg_first_party_app) headers = { "content-type": "application/json", 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 132b238e9f4..11b23030e8d 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 @@ -1,7 +1,7 @@ interactions: - request: body: '{"sku": {"name": "Standard"}, "properties": {}, "identity": {"type": "SystemAssigned"}, - "tags": {"foo": "doo"}, "location": "westeurope"}' + "tags": {"foo": "doo"}, "location": "westcentralus"}' headers: Accept: - application/json @@ -12,37 +12,37 @@ interactions: Connection: - keep-alive Content-Length: - - '137' + - '140' Content-Type: - application/json ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-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=2021-09-01-preview + 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/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"michelletaal@hotmail.com","createdByType":"User","createdAt":"2022-07-19T13:07:56.7126141Z","lastModifiedBy":"michelletaal@hotmail.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-19T13:07:56.7126141Z"},"identity":{"principalId":"4d444b81-454f-4470-aa59-3b9a6c2602b2","tenantId":"2de11026-d33d-44dd-95de-6261863da22e","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com","zoneRedundancy":"Disabled","autoGeneratedDomainNameLabelScope":"TenantReuse"}}' + 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}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01 azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 cache-control: - no-cache content-length: - - '868' + - '1055' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:07:58 GMT + - Fri, 29 Jul 2022 20:30:15 GMT etag: - - '"1b0008c7-0000-0d00-0000-62d6acad0000"' + - '"4100fb76-0000-0600-0000-62e443570000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?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 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.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/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' + 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"}' headers: cache-control: - no-cache content-length: - - '504' + - '508' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:08:28 GMT + - Fri, 29 Jul 2022 20:30:45 GMT etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' + - '"5c0006d4-0000-0600-0000-62e443570000"' expires: - '-1' pragma: @@ -118,23 +118,23 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.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/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' + 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"}' headers: cache-control: - no-cache content-length: - - '504' + - '508' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:08:58 GMT + - Fri, 29 Jul 2022 20:31:15 GMT etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' + - '"5c0006d4-0000-0600-0000-62e443570000"' expires: - '-1' pragma: @@ -164,23 +164,23 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.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/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' + 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"}' headers: cache-control: - no-cache content-length: - - '504' + - '508' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:09:28 GMT + - Fri, 29 Jul 2022 20:31:45 GMT etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' + - '"5c0006d4-0000-0600-0000-62e443570000"' expires: - '-1' pragma: @@ -210,23 +210,23 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.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/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' + 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"}' headers: cache-control: - no-cache content-length: - - '504' + - '508' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:09:58 GMT + - Fri, 29 Jul 2022 20:32:16 GMT etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' + - '"5c0006d4-0000-0600-0000-62e443570000"' expires: - '-1' pragma: @@ -256,23 +256,23 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.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/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' + 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"}' headers: cache-control: - no-cache content-length: - - '504' + - '508' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:10:28 GMT + - Fri, 29 Jul 2022 20:32:46 GMT etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' + - '"5c0006d4-0000-0600-0000-62e443570000"' expires: - '-1' pragma: @@ -302,23 +302,23 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.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/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' + 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"}' headers: cache-control: - no-cache content-length: - - '504' + - '508' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:10:58 GMT + - Fri, 29 Jul 2022 20:33:16 GMT etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' + - '"5c0006d4-0000-0600-0000-62e443570000"' expires: - '-1' pragma: @@ -348,23 +348,23 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.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/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' + 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"}' headers: cache-control: - no-cache content-length: - - '504' + - '508' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:11:28 GMT + - Fri, 29 Jul 2022 20:33:45 GMT etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' + - '"5c0006d4-0000-0600-0000-62e443570000"' expires: - '-1' pragma: @@ -394,23 +394,23 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.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/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' + 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"}' headers: cache-control: - no-cache content-length: - - '504' + - '508' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:11:59 GMT + - Fri, 29 Jul 2022 20:34:15 GMT etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' + - '"5c0006d4-0000-0600-0000-62e443570000"' expires: - '-1' pragma: @@ -440,23 +440,23 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.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/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' + 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"}' headers: cache-control: - no-cache content-length: - - '504' + - '508' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:12:28 GMT + - Fri, 29 Jul 2022 20:34:45 GMT etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' + - '"5c0006d4-0000-0600-0000-62e443570000"' expires: - '-1' pragma: @@ -486,23 +486,23 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.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/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/2ae061b6-4c02-4f9a-b290-a4df4e4142b8*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' + 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}' headers: cache-control: - no-cache content-length: - - '504' + - '579' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:12:58 GMT + - Fri, 29 Jul 2022 20:35:16 GMT etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' + - '"5c0084ed-0000-0600-0000-62e4446a0000"' expires: - '-1' pragma: @@ -532,851 +532,23 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.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/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + 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":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' + 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"}}' headers: cache-control: - no-cache content-length: - - '504' + - '1006' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:13:28 GMT + - Fri, 29 Jul 2022 20:35:17 GMT etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 13:13:58 GMT - etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 13:14:47 GMT - etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 13:15:18 GMT - etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 13:15:48 GMT - etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 13:16:18 GMT - etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 13:16:48 GMT - etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 13:17:18 GMT - etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 13:17:48 GMT - etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 13:18:19 GMT - etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 13:18:49 GMT - etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 13:19:19 GMT - etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 13:19:49 GMT - etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 13:20:19 GMT - etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 13:20:49 GMT - etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 13:21:19 GMT - etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 13:21:49 GMT - etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 13:22:19 GMT - etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 13:22:49 GMT - etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' + - '"4100eb8b-0000-0600-0000-62e4446a0000"' expires: - '-1' pragma: @@ -1389,6 +561,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-providerhub-traffic: + - 'True' status: code: 200 message: OK @@ -1396,45 +570,48 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - grafana create + - grafana list Connection: - keep-alive ParameterSetName: - - -g -n -l --tags --skip-role-assignments + - -g User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.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/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + 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: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' + 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"}}]}' headers: cache-control: - no-cache content-length: - - '504' + - '1018' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:23:19 GMT - etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' + - Fri, 29 Jul 2022 20:35:18 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff + x-ms-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 status: code: 200 message: OK @@ -1442,45 +619,46 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - grafana create + - grafana list Connection: - keep-alive - ParameterSetName: - - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.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/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Dashboard/grafana?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' + 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}}]}' headers: cache-control: - no-cache content-length: - - '504' + - '3057' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:23:49 GMT - etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' + - Fri, 29 Jul 2022 20:35:19 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff + x-ms-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 status: code: 200 message: OK @@ -1488,33 +666,33 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - grafana create + - grafana show Connection: - keep-alive ParameterSetName: - - -g -n -l --tags --skip-role-assignments + - -g -n User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.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/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + 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":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' + 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"}}' headers: cache-control: - no-cache content-length: - - '504' + - '1006' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:24:20 GMT + - Fri, 29 Jul 2022 20:35:19 GMT etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' + - '"4100eb8b-0000-0600-0000-62e4446a0000"' expires: - '-1' pragma: @@ -1527,6 +705,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-providerhub-traffic: + - 'True' status: code: 200 message: OK @@ -1534,33 +714,33 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - grafana create + - grafana update Connection: - keep-alive ParameterSetName: - - -g -n -l --tags --skip-role-assignments + - -g -n --deterministic-outbound-ip --api-key User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.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/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + 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":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' + 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"}}' headers: cache-control: - no-cache content-length: - - '504' + - '1006' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:24:49 GMT + - Fri, 29 Jul 2022 20:35:20 GMT etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' + - '"4100eb8b-0000-0600-0000-62e4446a0000"' expires: - '-1' pragma: @@ -1573,44 +753,57 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-providerhub-traffic: + - 'True' status: code: 200 message: OK - request: - body: null + body: '{"sku": {"name": "Standard"}, "properties": {"publicNetworkAccess": "Enabled", + "zoneRedundancy": "Disabled", "apiKey": "Enabled", "deterministicOutboundIP": + "Enabled", "autoGeneratedDomainNameLabelScope": "TenantReuse"}, "identity": + {"type": "SystemAssigned"}, "tags": {"foo": "doo"}, "location": "westcentralus"}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - grafana create + - grafana update Connection: - keep-alive + Content-Length: + - '313' + Content-Type: + - application/json ParameterSetName: - - -g -n -l --tags --skip-role-assignments + - -g -n --deterministic-outbound-ip --api-key User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-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":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' + 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"]}}' headers: + api-supported-versions: + - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01 cache-control: - no-cache content-length: - - '504' + - '1082' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:25:19 GMT + - Fri, 29 Jul 2022 20:35:22 GMT etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' + - '"4100068e-0000-0600-0000-62e4448a0000"' expires: - '-1' pragma: - no-cache + request-context: + - appId=cid-v1:54fcb76e-7bac-4b3e-96f8-8868676d3826 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1619,6 +812,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -1626,33 +823,33 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - grafana create + - grafana show Connection: - keep-alive ParameterSetName: - - -g -n -l --tags --skip-role-assignments + - -g -n User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.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/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + 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":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T13:07:57.3507365Z"}' + 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"]}}' headers: cache-control: - no-cache content-length: - - '504' + - '1082' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:25:49 GMT + - Fri, 29 Jul 2022 20:35:22 GMT etag: - - '"3f00ef32-0000-0d00-0000-62d6acad0000"' + - '"4100068e-0000-0600-0000-62e4448a0000"' expires: - '-1' pragma: @@ -1665,6 +862,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-providerhub-traffic: + - 'True' status: code: 200 message: OK @@ -1672,33 +871,33 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - grafana create + - grafana update Connection: - keep-alive ParameterSetName: - - -g -n -l --tags --skip-role-assignments + - -g -n --deterministic-outbound-ip --api-key User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.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/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + 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":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"c8aea27a-fb87-4b65-b9cf-b4794b3d071c*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Succeeded","startTime":"2022-07-19T13:07:57.3507365Z","endTime":"2022-07-19T13:26:00.2769755Z","error":{},"properties":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":"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"]}}' headers: cache-control: - no-cache content-length: - - '575' + - '1082' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:26:19 GMT + - Fri, 29 Jul 2022 20:35:22 GMT etag: - - '"3f003035-0000-0d00-0000-62d6b0e80000"' + - '"4100068e-0000-0600-0000-62e4448a0000"' expires: - '-1' pragma: @@ -1711,44 +910,57 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-providerhub-traffic: + - 'True' status: code: 200 message: OK - request: - body: null + body: '{"sku": {"name": "Standard"}, "properties": {"publicNetworkAccess": "Enabled", + "zoneRedundancy": "Disabled", "apiKey": "Disabled", "deterministicOutboundIP": + "Disabled", "autoGeneratedDomainNameLabelScope": "TenantReuse"}, "identity": + {"type": "SystemAssigned"}, "tags": {"foo": "doo"}, "location": "westcentralus"}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - grafana create + - grafana update Connection: - keep-alive + Content-Length: + - '315' + Content-Type: + - application/json ParameterSetName: - - -g -n -l --tags --skip-role-assignments + - -g -n --deterministic-outbound-ip --api-key User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-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=2021-09-01-preview + - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-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/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"michelletaal@hotmail.com","createdByType":"User","createdAt":"2022-07-19T13:07:56.7126141Z","lastModifiedBy":"michelletaal@hotmail.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-19T13:07:56.7126141Z"},"identity":{"principalId":"4d444b81-454f-4470-aa59-3b9a6c2602b2","tenantId":"2de11026-d33d-44dd-95de-6261863da22e","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com","zoneRedundancy":"Disabled","autoGeneratedDomainNameLabelScope":"TenantReuse"}}' + 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}}' headers: + api-supported-versions: + - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01 cache-control: - no-cache content-length: - - '872' + - '1056' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:26:19 GMT + - Fri, 29 Jul 2022 20:35:24 GMT etag: - - '"1b0065e6-0000-0d00-0000-62d6b0e80000"' + - '"4100348e-0000-0600-0000-62e4448c0000"' expires: - '-1' pragma: - no-cache + request-context: + - appId=cid-v1:54fcb76e-7bac-4b3e-96f8-8868676d3826 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1759,98 +971,8 @@ interactions: - nosniff x-ms-providerhub-traffic: - 'True' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - grafana list - Connection: - - keep-alive - ParameterSetName: - - -g - User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana?api-version=2021-09-01-preview - 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":"michelletaal@hotmail.com","createdByType":"User","createdAt":"2022-07-19T13:07:56.7126141Z","lastModifiedBy":"michelletaal@hotmail.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-19T13:07:56.7126141Z"},"identity":{"principalId":"4d444b81-454f-4470-aa59-3b9a6c2602b2","tenantId":"2de11026-d33d-44dd-95de-6261863da22e","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com","zoneRedundancy":"Disabled","autoGeneratedDomainNameLabelScope":"TenantReuse"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '884' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 13:26:21 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - 3a1c31f5-27f5-4df2-b191-08037c0e33ea - - 490b68bb-d622-4427-8af2-02d7ad8cab97 - - ef24c91b-8119-4e23-b72c-03bef95f6b33 - - af60d56a-f917-4106-9617-b2f2fd378cfc - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - grafana list - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Dashboard/grafana?api-version=2021-09-01-preview - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amg-test/providers/Microsoft.Dashboard/grafana/amg-test-grafana","name":"amg-test-grafana","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{},"systemData":{"createdBy":"michelletaal@hotmail.com","createdByType":"User","createdAt":"2022-07-18T14:17:58.934605Z","lastModifiedBy":"michelletaal@hotmail.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T14:17:58.934605Z"},"identity":{"principalId":"0433a85e-994f-487e-8726-10d0c079c1fa","tenantId":"2de11026-d33d-44dd-95de-6261863da22e","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://amg-test-grafana-d2bbecdjddctg4hq.weu.grafana.azure.com","zoneRedundancy":"Disabled","autoGeneratedDomainNameLabelScope":"TenantReuse"}},{"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":"michelletaal@hotmail.com","createdByType":"User","createdAt":"2022-07-19T13:07:56.7126141Z","lastModifiedBy":"michelletaal@hotmail.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-19T13:07:56.7126141Z"},"identity":{"principalId":"4d444b81-454f-4470-aa59-3b9a6c2602b2","tenantId":"2de11026-d33d-44dd-95de-6261863da22e","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com","zoneRedundancy":"Disabled","autoGeneratedDomainNameLabelScope":"TenantReuse"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1752' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 13:26:22 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - dbd71c4f-9edb-408d-879c-87438b9100b3 - - fdfbcb4b-4f34-4ffb-a072-354859aa2d3a - - 5d068aef-55ef-48e8-a7d0-27ccea926802 - - 255f7df3-e321-427c-89ba-05d6e0c4c7e4 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -1868,23 +990,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.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/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2021-09-01-preview + 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/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"michelletaal@hotmail.com","createdByType":"User","createdAt":"2022-07-19T13:07:56.7126141Z","lastModifiedBy":"michelletaal@hotmail.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-19T13:07:56.7126141Z"},"identity":{"principalId":"4d444b81-454f-4470-aa59-3b9a6c2602b2","tenantId":"2de11026-d33d-44dd-95de-6261863da22e","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com","zoneRedundancy":"Disabled","autoGeneratedDomainNameLabelScope":"TenantReuse"}}' + 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}}' headers: cache-control: - no-cache content-length: - - '872' + - '1056' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:26:22 GMT + - Fri, 29 Jul 2022 20:35:24 GMT etag: - - '"1b0065e6-0000-0d00-0000-62d6b0e80000"' + - '"4100348e-0000-0600-0000-62e4448c0000"' expires: - '-1' pragma: @@ -1916,23 +1038,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.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/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2021-09-01-preview + 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/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"michelletaal@hotmail.com","createdByType":"User","createdAt":"2022-07-19T13:07:56.7126141Z","lastModifiedBy":"michelletaal@hotmail.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-19T13:07:56.7126141Z"},"identity":{"principalId":"4d444b81-454f-4470-aa59-3b9a6c2602b2","tenantId":"2de11026-d33d-44dd-95de-6261863da22e","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com","zoneRedundancy":"Disabled","autoGeneratedDomainNameLabelScope":"TenantReuse"}}' + 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}}' headers: cache-control: - no-cache content-length: - - '872' + - '1056' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:26:24 GMT + - Fri, 29 Jul 2022 20:35:26 GMT etag: - - '"1b0065e6-0000-0d00-0000-62d6b0e80000"' + - '"4100348e-0000-0600-0000-62e4448c0000"' expires: - '-1' pragma: @@ -1966,9 +1088,9 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-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=2021-09-01-preview + 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: 'null' @@ -1976,7 +1098,7 @@ interactions: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01 azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 cache-control: - no-cache content-length: @@ -1984,13 +1106,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:26:25 GMT + - Fri, 29 Jul 2022 20:35:26 GMT etag: - - '"1b002fe7-0000-0d00-0000-62d6b1010000"' + - '"41006a8e-0000-0600-0000-62e4448e0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 pragma: - no-cache request-context: @@ -2020,23 +1142,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.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/9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-07-19T13:26:25.7298122Z","error":{}}' + 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":{}}' headers: cache-control: - no-cache content-length: - - '515' + - '519' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:26:55 GMT + - Fri, 29 Jul 2022 20:35:56 GMT etag: - - '"3f004635-0000-0d00-0000-62d6b1090000"' + - '"5c00c7f1-0000-0600-0000-62e444930000"' expires: - '-1' pragma: @@ -2062,23 +1184,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.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/9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-07-19T13:26:25.7298122Z","error":{}}' + 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":{}}' headers: cache-control: - no-cache content-length: - - '515' + - '519' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:27:25 GMT + - Fri, 29 Jul 2022 20:36:26 GMT etag: - - '"3f004635-0000-0d00-0000-62d6b1090000"' + - '"5c00c7f1-0000-0600-0000-62e444930000"' expires: - '-1' pragma: @@ -2104,23 +1226,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.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/9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-07-19T13:26:25.7298122Z","error":{}}' + 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":{}}' headers: cache-control: - no-cache content-length: - - '515' + - '519' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:27:56 GMT + - Fri, 29 Jul 2022 20:36:56 GMT etag: - - '"3f004635-0000-0d00-0000-62d6b1090000"' + - '"5c00c7f1-0000-0600-0000-62e444930000"' expires: - '-1' pragma: @@ -2146,23 +1268,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.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/9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-07-19T13:26:25.7298122Z","error":{}}' + 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":{}}' headers: cache-control: - no-cache content-length: - - '515' + - '519' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:28:25 GMT + - Fri, 29 Jul 2022 20:37:26 GMT etag: - - '"3f004635-0000-0d00-0000-62d6b1090000"' + - '"5c00c7f1-0000-0600-0000-62e444930000"' expires: - '-1' pragma: @@ -2188,23 +1310,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.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/9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-07-19T13:26:25.7298122Z","error":{}}' + 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":{}}' headers: cache-control: - no-cache content-length: - - '515' + - '519' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:28:55 GMT + - Fri, 29 Jul 2022 20:37:57 GMT etag: - - '"3f004635-0000-0d00-0000-62d6b1090000"' + - '"5c00c7f1-0000-0600-0000-62e444930000"' expires: - '-1' pragma: @@ -2230,23 +1352,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.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/9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-07-19T13:26:25.7298122Z","error":{}}' + 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":{}}' headers: cache-control: - no-cache content-length: - - '515' + - '519' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:29:25 GMT + - Fri, 29 Jul 2022 20:38:27 GMT etag: - - '"3f004635-0000-0d00-0000-62d6b1090000"' + - '"5c00c7f1-0000-0600-0000-62e444930000"' expires: - '-1' pragma: @@ -2272,23 +1394,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.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/9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-07-19T13:26:25.7298122Z","error":{}}' + 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":{}}' headers: cache-control: - no-cache content-length: - - '515' + - '519' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:29:55 GMT + - Fri, 29 Jul 2022 20:38:56 GMT etag: - - '"3f004635-0000-0d00-0000-62d6b1090000"' + - '"5c00c7f1-0000-0600-0000-62e444930000"' expires: - '-1' pragma: @@ -2314,23 +1436,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.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/9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-07-19T13:26:25.7298122Z","error":{}}' + 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":{}}' headers: cache-control: - no-cache content-length: - - '515' + - '519' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:30:26 GMT + - Fri, 29 Jul 2022 20:39:26 GMT etag: - - '"3f004635-0000-0d00-0000-62d6b1090000"' + - '"5c00c7f1-0000-0600-0000-62e444930000"' expires: - '-1' pragma: @@ -2356,23 +1478,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.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/9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-07-19T13:26:25.7298122Z","error":{}}' + 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":{}}' headers: cache-control: - no-cache content-length: - - '515' + - '519' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:30:56 GMT + - Fri, 29 Jul 2022 20:39:56 GMT etag: - - '"3f004635-0000-0d00-0000-62d6b1090000"' + - '"5c00c7f1-0000-0600-0000-62e444930000"' expires: - '-1' pragma: @@ -2398,23 +1520,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.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/9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2?api-version=2021-09-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/d7541af4-af10-423d-b631-9fd86a0cb23c*79850F3117CE7C3962CD507CAB3960CD0EE9119A22E0713F826944ECF668F80E?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","name":"9505bdba-c7f2-464c-aca9-5fad324c4128*7412A740E969FD3113235B7BAF34ED171117D834A6DC29FBF08FDA1120334DB2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Succeeded","startTime":"2022-07-19T13:26:25.7298122Z","endTime":"2022-07-19T13:31:06.3833089Z","error":{},"properties":null}' + 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}' headers: cache-control: - no-cache content-length: - - '575' + - '578' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:31:26 GMT + - Fri, 29 Jul 2022 20:40:27 GMT etag: - - '"3f00d035-0000-0d00-0000-62d6b21a0000"' + - '"5d00f307-0000-0600-0000-62e445a40000"' expires: - '-1' pragma: @@ -2444,12 +1566,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.9.13 (Windows-10-10.0.19044-SP0) msrest/0.7.1 msrest_azure/0.6.4 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.37.0 + - 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) 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%274d444b81-454f-4470-aa59-3b9a6c2602b2%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%27a88a8fc2-c4ac-416e-86a7-c21682d26053%27&api-version=2020-04-01-preview response: body: string: '{"value":[]}' @@ -2461,7 +1583,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:31:26 GMT + - Fri, 29 Jul 2022 20:40:28 GMT expires: - '-1' pragma: @@ -2491,21 +1613,21 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.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/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Dashboard/grafana?api-version=2021-09-01-preview + 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/amg-test/providers/Microsoft.Dashboard/grafana/amg-test-grafana","name":"amg-test-grafana","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{},"systemData":{"createdBy":"michelletaal@hotmail.com","createdByType":"User","createdAt":"2022-07-18T14:17:58.934605Z","lastModifiedBy":"michelletaal@hotmail.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T14:17:58.934605Z"},"identity":{"principalId":"0433a85e-994f-487e-8726-10d0c079c1fa","tenantId":"2de11026-d33d-44dd-95de-6261863da22e","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://amg-test-grafana-d2bbecdjddctg4hq.weu.grafana.azure.com","zoneRedundancy":"Disabled","autoGeneratedDomainNameLabelScope":"TenantReuse"}}]}' + 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}}]}' headers: cache-control: - no-cache content-length: - - '879' + - '2050' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 13:31:27 GMT + - Fri, 29 Jul 2022 20:40:28 GMT expires: - '-1' pragma: @@ -2517,10 +1639,12 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 67c1383d-565e-478e-8248-e961da7a6198 - - 7aa37b8d-1333-4a31-9dd0-bb890950c4f2 - - 677824bf-f3aa-4994-b070-d7e8f744e4ea - - c8351fbb-6d7b-4247-a089-9f464c063227 + - 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 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 3b25f19326e..6f2e5fe2559 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-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=2021-09-01-preview + 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":"michelletaal@hotmail.com","createdByType":"User","createdAt":"2022-07-19T12:35:47.0398186Z","lastModifiedBy":"michelletaal@hotmail.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-19T12:35:47.0398186Z"},"identity":{"principalId":"c20a5e0c-1843-4af9-986d-729f77fae43d","tenantId":"2de11026-d33d-44dd-95de-6261863da22e","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com","zoneRedundancy":"Disabled","autoGeneratedDomainNameLabelScope":"TenantReuse"}}' + 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}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01 azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 cache-control: - no-cache content-length: - - '868' + - '1000' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:35:47 GMT + - Sat, 06 Aug 2022 04:50:48 GMT etag: - - '"1b00888f-0000-0d00-0000-62d6a5230000"' + - '"0700fe99-0000-0d00-0000-62edf3270000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 pragma: - no-cache request-context: @@ -72,1095 +72,23 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - 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/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' + 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"}' headers: cache-control: - no-cache content-length: - - '504' + - '502' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:36:17 GMT + - Sat, 06 Aug 2022 04:51:18 GMT etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - grafana create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --tags - User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 12:36:47 GMT - etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - grafana create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --tags - User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 12:37:17 GMT - etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - grafana create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --tags - User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 12:37:47 GMT - etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - grafana create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --tags - User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 12:38:17 GMT - etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - grafana create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --tags - User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 12:38:48 GMT - etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - grafana create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --tags - User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 12:39:17 GMT - etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - grafana create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --tags - User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 12:39:47 GMT - etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - grafana create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --tags - User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 12:40:17 GMT - etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 12:40:47 GMT - etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 12:41:18 GMT - etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 12:41:48 GMT - etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 12:42:18 GMT - etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 12:42:48 GMT - etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 12:43:18 GMT - etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 12:43:48 GMT - etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 12:44:18 GMT - etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 12:44:48 GMT - etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 12:45:18 GMT - etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 12:45:48 GMT - etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 12:46:18 GMT - etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 12:46:49 GMT - etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 12:47:18 GMT - etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 12:47:48 GMT - etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' - 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.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jul 2022 12:48:18 GMT - etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' + - '"7a00a28e-0000-0d00-0000-62edf3270000"' expires: - '-1' pragma: @@ -1190,23 +118,23 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - 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/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' + 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"}' headers: cache-control: - no-cache content-length: - - '504' + - '502' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:48:48 GMT + - Sat, 06 Aug 2022 04:51:49 GMT etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' + - '"7a00a28e-0000-0d00-0000-62edf3270000"' expires: - '-1' pragma: @@ -1236,23 +164,23 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - 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/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' + 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"}' headers: cache-control: - no-cache content-length: - - '504' + - '502' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:49:19 GMT + - Sat, 06 Aug 2022 04:52:19 GMT etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' + - '"7a00a28e-0000-0d00-0000-62edf3270000"' expires: - '-1' pragma: @@ -1282,23 +210,23 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - 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/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' + 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"}' headers: cache-control: - no-cache content-length: - - '504' + - '502' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:49:49 GMT + - Sat, 06 Aug 2022 04:52:49 GMT etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' + - '"7a00a28e-0000-0d00-0000-62edf3270000"' expires: - '-1' pragma: @@ -1328,23 +256,23 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - 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/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' + 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"}' headers: cache-control: - no-cache content-length: - - '504' + - '502' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:50:19 GMT + - Sat, 06 Aug 2022 04:53:19 GMT etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' + - '"7a00a28e-0000-0d00-0000-62edf3270000"' expires: - '-1' pragma: @@ -1374,23 +302,23 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - 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/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' + 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"}' headers: cache-control: - no-cache content-length: - - '504' + - '502' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:50:49 GMT + - Sat, 06 Aug 2022 04:53:49 GMT etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' + - '"7a00a28e-0000-0d00-0000-62edf3270000"' expires: - '-1' pragma: @@ -1420,23 +348,23 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - 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/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' + 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"}' headers: cache-control: - no-cache content-length: - - '504' + - '502' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:51:19 GMT + - Sat, 06 Aug 2022 04:54:19 GMT etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' + - '"7a00a28e-0000-0d00-0000-62edf3270000"' expires: - '-1' pragma: @@ -1466,23 +394,23 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - 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/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2022-07-19T12:35:47.5244283Z"}' + 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"}' headers: cache-control: - no-cache content-length: - - '504' + - '502' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:51:49 GMT + - Sat, 06 Aug 2022 04:54:49 GMT etag: - - '"3f00f22e-0000-0d00-0000-62d6a5230000"' + - '"7a00a28e-0000-0d00-0000-62edf3270000"' expires: - '-1' pragma: @@ -1512,23 +440,23 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - 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/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/def18947-1121-4b0c-9e04-01f964c15527*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"7d072711-1f43-4196-8323-78201fdd45ce*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Succeeded","startTime":"2022-07-19T12:35:47.5244283Z","endTime":"2022-07-19T12:52:12.5022404Z","error":{},"properties":null}' + 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}' headers: cache-control: - no-cache content-length: - - '575' + - '573' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:52:19 GMT + - Sat, 06 Aug 2022 04:55:19 GMT etag: - - '"3f00dd30-0000-0d00-0000-62d6a8fc0000"' + - '"7a009798-0000-0d00-0000-62edf42a0000"' expires: - '-1' pragma: @@ -1558,23 +486,23 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - 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/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2021-09-01-preview + 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":"michelletaal@hotmail.com","createdByType":"User","createdAt":"2022-07-19T12:35:47.0398186Z","lastModifiedBy":"michelletaal@hotmail.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-19T12:35:47.0398186Z"},"identity":{"principalId":"c20a5e0c-1843-4af9-986d-729f77fae43d","tenantId":"2de11026-d33d-44dd-95de-6261863da22e","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com","zoneRedundancy":"Disabled","autoGeneratedDomainNameLabelScope":"TenantReuse"}}' + 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"}}' headers: cache-control: - no-cache content-length: - - '872' + - '951' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:52:19 GMT + - Sat, 06 Aug 2022 04:55:20 GMT etag: - - '"1b001daa-0000-0d00-0000-62d6a8fc0000"' + - '"07003b9b-0000-0d00-0000-62edf42a0000"' expires: - '-1' pragma: @@ -1602,40 +530,58 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.9.13 (Windows-10-10.0.19044-SP0) msrest/0.7.1 msrest_azure/0.6.4 - azure-graphrbac/0.60.0 Azure-SDK-For-Python + - python/3.8.8 (Windows-10-10.0.22000-SP0) msrest/0.7.0 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/users?$filter=userPrincipalName%20eq%20%27michelletaal%40hotmail.com%27%20or%20mail%20eq%20%27michelletaal%40hotmail.com%27&api-version=1.6 - response: - body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"ed86bea3-5154-4d06-839b-11ced3dc0557","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"consentProvidedForMinor":null,"country":null,"createdDateTime":"2022-03-04T13:39:33Z","creationType":null,"department":null,"dirSyncEnabled":null,"displayName":"michelletaal@hotmail.com","employeeId":null,"facsimileTelephoneNumber":null,"givenName":"Michelle","immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"legalAgeGroupClassification":null,"mail":"michelletaal@hotmail.com","mailNickname":"michelletaal_hotmail.com#EXT#","mobile":null,"onPremisesDistinguishedName":null,"onPremisesSecurityIdentifier":null,"otherMails":["michelletaal@hotmail.com"],"passwordPolicies":null,"passwordProfile":null,"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":"en","provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":["SMTP:michelletaal@hotmail.com"],"refreshTokensValidFromDateTime":"2022-03-04T13:39:33Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":"Taal","telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/ed86bea3-5154-4d06-839b-11ced3dc0557/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":"NL","userIdentities":[],"userPrincipalName":"michelletaal_hotmail.com#EXT#@michelletaalhotmail.onmicrosoft.com","userState":null,"userStateChangedOn":null,"userType":"Member"}]}' + 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 + 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 + 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: - - '1707' + - '23104' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 19 Jul 2022 12:52:20 GMT + - Sat, 06 Aug 2022 04:55:21 GMT duration: - - '727151' + - '4106078' expires: - '-1' ocp-aad-diagnostics-server-name: - - wKWYwfcIoudL9/PbctyO4nmLtvMwkrOFVlx5XDA6nj8= + - 1zZD+QG4TfLMztBergYr4rMwS+maxuQmrhImOucvvj8= ocp-aad-session-key: - - bCM_DfHyKwak_NN18cn49ICKUEz7F8tS4TD--gXpdBoTHmwp24dJVk9v8mQz-hNgIRPLS1j57AWDEc8jZw3Tqxw81nX4hMqRItMNhLLR8Cn_406UfkBP4HXIe5HpzHIJ.docDDQhUP7ibTH0_L8ku1wkfE0xAXvLlaklL1hv-YOQ + - S9bIogM3Htg_Afs3YTlxUjjG_-prheKRZ-3-PFg1Uzt-olTg3BC3FVD26cmAMHXRod4xPxFqyTWQGce9q1BiKzIv0042mnxkZXgU342Wgwlv_7h6257ntdf0uGkv9JTS.utE86Uk2tZepmgIKRHQbm1RvDeBQsBR5alD2TRBJ6D8 pragma: - no-cache request-id: - - 3470a1e4-4b79-420f-b503-78d1fe248846 + - 4e80ce01-7f96-4014-ac40-cee025174ec9 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1643,7 +589,7 @@ interactions: x-ms-dirapi-data-contract-version: - '1.6' x-ms-resource-unit: - - '2' + - '1' x-powered-by: - ASP.NET status: @@ -1663,8 +609,8 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - python/3.9.13 (Windows-10-10.0.19044-SP0) msrest/0.7.1 msrest_azure/0.6.4 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.37.0 + - 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) accept-language: - en-US method: GET @@ -1681,7 +627,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:52:21 GMT + - Sat, 06 Aug 2022 04:55:22 GMT expires: - '-1' pragma: @@ -1701,7 +647,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41", - "principalId": "ed86bea3-5154-4d06-839b-11ced3dc0557"}}' + "principalId": "a30db067-cde1-49be-95bb-9619a8cc8617"}}' headers: Accept: - application/json @@ -1718,15 +664,15 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - python/3.9.13 (Windows-10-10.0.19044-SP0) msrest/0.7.1 msrest_azure/0.6.4 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.37.0 + - 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) 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/744de129-9c6d-49a6-b07f-b10ae3950718?api-version=2020-04-01-preview + 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":"ed86bea3-5154-4d06-839b-11ced3dc0557","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T12:52:22.3774071Z","updatedOn":"2022-07-19T12:52:22.6431073Z","createdBy":null,"updatedBy":"ed86bea3-5154-4d06-839b-11ced3dc0557","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg/providers/Microsoft.Authorization/roleAssignments/744de129-9c6d-49a6-b07f-b10ae3950718","type":"Microsoft.Authorization/roleAssignments","name":"744de129-9c6d-49a6-b07f-b10ae3950718"}' + 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"}' headers: cache-control: - no-cache @@ -1735,7 +681,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:52:23 GMT + - Sat, 06 Aug 2022 04:55:29 GMT expires: - '-1' pragma: @@ -1765,8 +711,8 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - python/3.9.13 (Windows-10-10.0.19044-SP0) msrest/0.7.1 msrest_azure/0.6.4 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.37.0 + - 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) accept-language: - en-US method: GET @@ -1783,7 +729,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:52:24 GMT + - Sat, 06 Aug 2022 04:55:29 GMT expires: - '-1' pragma: @@ -1803,7 +749,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05", - "principalId": "c20a5e0c-1843-4af9-986d-729f77fae43d"}}' + "principalId": "c977fab6-1d15-477a-b53c-14dc093cae36"}}' headers: Accept: - application/json @@ -1820,15 +766,15 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - python/3.9.13 (Windows-10-10.0.19044-SP0) msrest/0.7.1 msrest_azure/0.6.4 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.37.0 + - 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) accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0335db53-ccff-4091-abef-d1d8baf46a20?api-version=2020-04-01-preview + 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":"c20a5e0c-1843-4af9-986d-729f77fae43d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T12:52:24.8702792Z","updatedOn":"2022-07-19T12:52:25.1672154Z","createdBy":null,"updatedBy":"ed86bea3-5154-4d06-839b-11ced3dc0557","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0335db53-ccff-4091-abef-d1d8baf46a20","type":"Microsoft.Authorization/roleAssignments","name":"0335db53-ccff-4091-abef-d1d8baf46a20"}' + 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"}' headers: cache-control: - no-cache @@ -1837,7 +783,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:52:25 GMT + - Sat, 06 Aug 2022 04:55:32 GMT expires: - '-1' pragma: @@ -1867,21 +813,21 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - 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/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana?api-version=2021-09-01-preview + 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":"michelletaal@hotmail.com","createdByType":"User","createdAt":"2022-07-19T12:35:47.0398186Z","lastModifiedBy":"michelletaal@hotmail.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-19T12:35:47.0398186Z"},"identity":{"principalId":"c20a5e0c-1843-4af9-986d-729f77fae43d","tenantId":"2de11026-d33d-44dd-95de-6261863da22e","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com","zoneRedundancy":"Disabled","autoGeneratedDomainNameLabelScope":"TenantReuse"}}]}' + 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"}}]}' headers: cache-control: - no-cache content-length: - - '884' + - '963' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:52:27 GMT + - Sat, 06 Aug 2022 04:55:33 GMT expires: - '-1' pragma: @@ -1893,10 +839,12 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 10a1974e-740d-42a2-9c70-378fcb90e002 - - bb3b86cb-f355-462e-9a40-8be703ece20c - - c507d8d2-b31e-4759-8a64-128246df6f2b - - f316aeba-0eb8-4dbc-a4b5-937a670c59f9 + - 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 status: code: 200 message: OK @@ -1912,21 +860,21 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - 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/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Dashboard/grafana?api-version=2021-09-01-preview + 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/amg-test/providers/Microsoft.Dashboard/grafana/amg-test-grafana","name":"amg-test-grafana","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{},"systemData":{"createdBy":"michelletaal@hotmail.com","createdByType":"User","createdAt":"2022-07-18T14:17:58.934605Z","lastModifiedBy":"michelletaal@hotmail.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T14:17:58.934605Z"},"identity":{"principalId":"0433a85e-994f-487e-8726-10d0c079c1fa","tenantId":"2de11026-d33d-44dd-95de-6261863da22e","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://amg-test-grafana-d2bbecdjddctg4hq.weu.grafana.azure.com","zoneRedundancy":"Disabled","autoGeneratedDomainNameLabelScope":"TenantReuse"}},{"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":"michelletaal@hotmail.com","createdByType":"User","createdAt":"2022-07-19T12:35:47.0398186Z","lastModifiedBy":"michelletaal@hotmail.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-19T12:35:47.0398186Z"},"identity":{"principalId":"c20a5e0c-1843-4af9-986d-729f77fae43d","tenantId":"2de11026-d33d-44dd-95de-6261863da22e","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com","zoneRedundancy":"Disabled","autoGeneratedDomainNameLabelScope":"TenantReuse"}}]}' + 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"}}]}' headers: cache-control: - no-cache content-length: - - '1752' + - '1910' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:52:28 GMT + - Sat, 06 Aug 2022 04:55:34 GMT expires: - '-1' pragma: @@ -1938,10 +886,12 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - db750682-8df3-4929-9232-4b7dc163475f - - 1d8f6028-2704-4654-a58c-89706457d49b - - 20094c58-25a8-418b-828b-127624b8c697 - - 5b8feccf-604d-417c-9bb5-3437366c2700 + - 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 status: code: 200 message: OK @@ -1959,23 +909,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - 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/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2021-09-01-preview + 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":"michelletaal@hotmail.com","createdByType":"User","createdAt":"2022-07-19T12:35:47.0398186Z","lastModifiedBy":"michelletaal@hotmail.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-19T12:35:47.0398186Z"},"identity":{"principalId":"c20a5e0c-1843-4af9-986d-729f77fae43d","tenantId":"2de11026-d33d-44dd-95de-6261863da22e","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com","zoneRedundancy":"Disabled","autoGeneratedDomainNameLabelScope":"TenantReuse"}}' + 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"}}' headers: cache-control: - no-cache content-length: - - '872' + - '951' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:52:28 GMT + - Sat, 06 Aug 2022 04:55:36 GMT etag: - - '"1b001daa-0000-0d00-0000-62d6a8fc0000"' + - '"07003b9b-0000-0d00-0000-62edf42a0000"' expires: - '-1' pragma: @@ -2007,23 +957,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - 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/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2021-09-01-preview + 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":"michelletaal@hotmail.com","createdByType":"User","createdAt":"2022-07-19T12:35:47.0398186Z","lastModifiedBy":"michelletaal@hotmail.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-19T12:35:47.0398186Z"},"identity":{"principalId":"c20a5e0c-1843-4af9-986d-729f77fae43d","tenantId":"2de11026-d33d-44dd-95de-6261863da22e","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com","zoneRedundancy":"Disabled","autoGeneratedDomainNameLabelScope":"TenantReuse"}}' + 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"}}' headers: cache-control: - no-cache content-length: - - '872' + - '951' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:52:29 GMT + - Sat, 06 Aug 2022 04:55:36 GMT etag: - - '"1b001daa-0000-0d00-0000-62d6a8fc0000"' + - '"07003b9b-0000-0d00-0000-62edf42a0000"' expires: - '-1' pragma: @@ -2051,14 +1001,14 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: GET - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/org/users + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/org/users response: body: - string: '[{"orgId":1,"userId":2,"email":"michelletaal@hotmail.com","name":"live.com#michelletaal@hotmail.com","avatarUrl":"/avatar/317555acbf6221af100468eb95e86ea0","login":"michelletaal@hotmail.com","role":"Admin","lastSeenAt":"2022-07-19T12:52:30Z","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-08-06T04:55:39Z","lastSeenAtAge":"\u003c 1 minute"}]' headers: cache-control: @@ -2066,13 +1016,13 @@ interactions: connection: - keep-alive content-length: - - '277' + - '253' content-security-policy: - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:30 GMT + - Sat, 06 Aug 2022 04:55:39 GMT expires: - '-1' pragma: @@ -2080,8 +1030,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235151.541.170.969948|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1659761740.168.36.663288|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2103,27 +1053,27 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: GET - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/user + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/user response: body: - string: '{"id":2,"email":"michelletaal@hotmail.com","name":"live.com#michelletaal@hotmail.com","login":"michelletaal@hotmail.com","theme":"","orgId":1,"isGrafanaAdmin":false,"isDisabled":false,"isExternal":true,"authLabels":["OAuth"],"updatedAt":"2022-07-19T12:52:30Z","createdAt":"2022-07-19T12:52:30Z","avatarUrl":"/avatar/317555acbf6221af100468eb95e86ea0"}' + 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"}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '350' + - '326' content-security-policy: - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:31 GMT + - Sat, 06 Aug 2022 04:55:40 GMT expires: - '-1' pragma: @@ -2131,8 +1081,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235152.209.179.692202|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1659761741.412.34.155829|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2156,27 +1106,27 @@ interactions: Content-Length: - '24' User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: POST - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/folders + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders response: body: - string: '{"id":11,"uid":"aFi1RhR4z","title":"Test Folder","url":"/dashboards/f/aFi1RhR4z/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"michelletaal@hotmail.com","created":"2022-07-19T12:52:31Z","updatedBy":"michelletaal@hotmail.com","updated":"2022-07-19T12:52:31Z","version":1}' + 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}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '327' + - '317' content-security-policy: - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:31 GMT + - Sat, 06 Aug 2022 04:55:41 GMT expires: - '-1' pragma: @@ -2184,7 +1134,7 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235152.702.176.20674|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1659761742.158.34.936363|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2207,14 +1157,14 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: GET - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/folders/id/Test%20Folder + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/id/Test%20Folder response: body: - string: '{"accessErrorId":"ACE6426444106","message":"You''ll need additional + string: '{"accessErrorId":"ACE7161873304","message":"You''ll need additional permissions to perform this action. Permissions needed: folders:read","title":"Access denied"} @@ -2229,7 +1179,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Tue, 19 Jul 2022 12:52:32 GMT + - Sat, 06 Aug 2022 04:55:42 GMT expires: - '-1' pragma: @@ -2237,8 +1187,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235153.103.170.275575|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1659761743.077.34.923519|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2260,11 +1210,11 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: GET - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/folders/Test%20Folder + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/Test%20Folder response: body: string: '{"message":"folder not found","status":"not-found"}' @@ -2278,7 +1228,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:32 GMT + - Sat, 06 Aug 2022 04:55:42 GMT expires: - '-1' pragma: @@ -2286,8 +1236,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235153.247.172.748123|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1659761743.641.34.340367|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2309,14 +1259,15 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: GET - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/folders + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":11,"uid":"aFi1RhR4z","title":"Test + 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 Folder"}]' headers: cache-control: @@ -2324,13 +1275,13 @@ interactions: connection: - keep-alive content-length: - - '99' + - '216' content-security-policy: - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:32 GMT + - Sat, 06 Aug 2022 04:55:43 GMT expires: - '-1' pragma: @@ -2338,8 +1289,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235153.431.178.550532|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1659761744.221.37.468508|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2361,14 +1312,14 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: GET - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/folders/id/aFi1RhR4z + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/id/BJr5Auz4z response: body: - string: '{"accessErrorId":"ACE5127566518","message":"You''ll need additional + string: '{"accessErrorId":"ACE1479386962","message":"You''ll need additional permissions to perform this action. Permissions needed: folders:read","title":"Access denied"} @@ -2383,7 +1334,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Tue, 19 Jul 2022 12:52:32 GMT + - Sat, 06 Aug 2022 04:55:43 GMT expires: - '-1' pragma: @@ -2391,8 +1342,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235153.767.170.269964|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1659761744.878.34.42288|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2414,27 +1365,27 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: GET - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/folders/aFi1RhR4z + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/BJr5Auz4z response: body: - string: '{"id":11,"uid":"aFi1RhR4z","title":"Test Folder","url":"/dashboards/f/aFi1RhR4z/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"michelletaal@hotmail.com","created":"2022-07-19T12:52:31Z","updatedBy":"michelletaal@hotmail.com","updated":"2022-07-19T12:52:31Z","version":1}' + 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}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '327' + - '317' content-security-policy: - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:33 GMT + - Sat, 06 Aug 2022 04:55:44 GMT expires: - '-1' pragma: @@ -2442,8 +1393,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235153.914.172.703160|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1659761745.448.37.562254|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2467,27 +1418,27 @@ interactions: Content-Length: - '45' User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: PUT - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/folders/aFi1RhR4z + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/BJr5Auz4z response: body: - string: '{"id":11,"uid":"aFi1RhR4z","title":"Test Folder Update","url":"/dashboards/f/aFi1RhR4z/test-folder-update","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"michelletaal@hotmail.com","created":"2022-07-19T12:52:31Z","updatedBy":"michelletaal@hotmail.com","updated":"2022-07-19T12:52:33Z","version":2}' + 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}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '341' + - '331' content-security-policy: - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:33 GMT + - Sat, 06 Aug 2022 04:55:45 GMT expires: - '-1' pragma: @@ -2495,8 +1446,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235154.297.170.682197|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1659761746.019.36.53794|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2518,14 +1469,15 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: GET - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/folders + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":11,"uid":"aFi1RhR4z","title":"Test + 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 Folder Update"}]' headers: cache-control: @@ -2533,13 +1485,13 @@ interactions: connection: - keep-alive content-length: - - '106' + - '223' content-security-policy: - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:33 GMT + - Sat, 06 Aug 2022 04:55:45 GMT expires: - '-1' pragma: @@ -2547,8 +1499,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235154.709.170.123139|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1659761746.702.37.997951|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2570,14 +1522,14 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: GET - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/folders/id/Test%20Folder%20Update + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/id/Test%20Folder%20Update response: body: - string: '{"accessErrorId":"ACE0816040394","message":"You''ll need additional + string: '{"accessErrorId":"ACE1545787499","message":"You''ll need additional permissions to perform this action. Permissions needed: folders:read","title":"Access denied"} @@ -2592,7 +1544,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Tue, 19 Jul 2022 12:52:34 GMT + - Sat, 06 Aug 2022 04:55:46 GMT expires: - '-1' pragma: @@ -2600,8 +1552,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235155.048.170.708909|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1659761747.353.35.822831|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2623,11 +1575,11 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: GET - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/folders/Test%20Folder%20Update + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/Test%20Folder%20Update response: body: string: '{"message":"folder not found","status":"not-found"}' @@ -2641,7 +1593,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:34 GMT + - Sat, 06 Aug 2022 04:55:46 GMT expires: - '-1' pragma: @@ -2649,8 +1601,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235155.229.171.519312|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1659761747.923.37.757994|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2672,14 +1624,15 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: GET - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/folders + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":11,"uid":"aFi1RhR4z","title":"Test + 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 Folder Update"}]' headers: cache-control: @@ -2687,13 +1640,13 @@ interactions: connection: - keep-alive content-length: - - '106' + - '223' content-security-policy: - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:34 GMT + - Sat, 06 Aug 2022 04:55:47 GMT expires: - '-1' pragma: @@ -2701,8 +1654,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235155.381.172.637285|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1659761748.515.36.982389|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2726,14 +1679,14 @@ interactions: Content-Length: - '0' User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: DELETE - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/folders/aFi1RhR4z + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/BJr5Auz4z response: body: - string: '{"id":11,"message":"Folder Test Folder Update deleted","title":"Test + string: '{"id":47,"message":"Folder Test Folder Update deleted","title":"Test Folder Update"}' headers: cache-control: @@ -2747,7 +1700,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:34 GMT + - Sat, 06 Aug 2022 04:55:48 GMT expires: - '-1' pragma: @@ -2755,8 +1708,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235155.527.170.381228|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1659761749.088.35.681155|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2778,27 +1731,28 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: GET - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/folders + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"}]' + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":23,"uid":"PrometheusMDM","title":"Azure + Monitor Container Insights"},{"id":11,"uid":"geneva","title":"Geneva"}]' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '49' + - '166' content-security-policy: - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:34 GMT + - Sat, 06 Aug 2022 04:55:48 GMT expires: - '-1' pragma: @@ -2806,7 +1760,7 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235155.937.171.85648|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1659761749.817.34.731287|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2832,15 +1786,15 @@ interactions: Content-Length: - '165' User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: POST - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/datasources + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources response: body: - string: '{"datasource":{"id":2,"uid":"3Xn1R2R4z","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":2,"message":"Datasource + string: '{"datasource":{"id":4,"uid":"B0MtAuz4z","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: cache-control: @@ -2854,7 +1808,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:35 GMT + - Sat, 06 Aug 2022 04:55:49 GMT expires: - '-1' pragma: @@ -2862,8 +1816,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235156.292.171.667735|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1659761750.483.34.487322|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2885,14 +1839,14 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: GET - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source response: body: - string: '{"id":2,"uid":"3Xn1R2R4z","orgId":1,"name":"Test Azure Monitor Data + string: '{"id":4,"uid":"B0MtAuz4z","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: @@ -2906,7 +1860,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:35 GMT + - Sat, 06 Aug 2022 04:55:50 GMT expires: - '-1' pragma: @@ -2914,7 +1868,7 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235156.7.177.4872|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1659761751.224.37.139492|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2937,14 +1891,14 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: GET - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source response: body: - string: '{"id":2,"uid":"3Xn1R2R4z","orgId":1,"name":"Test Azure Monitor Data + string: '{"id":4,"uid":"B0MtAuz4z","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: @@ -2958,7 +1912,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:36 GMT + - Sat, 06 Aug 2022 04:55:50 GMT expires: - '-1' pragma: @@ -2966,8 +1920,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235157.045.172.433988|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1659761751.877.34.764446|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2992,15 +1946,15 @@ interactions: Content-Length: - '165' User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: PUT - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/datasources/2 + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources/4 response: body: - string: '{"datasource":{"id":2,"uid":"3Xn1R2R4z","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":2,"message":"Datasource + string: '{"datasource":{"id":4,"uid":"B0MtAuz4z","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: cache-control: @@ -3014,7 +1968,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:36 GMT + - Sat, 06 Aug 2022 04:55:51 GMT expires: - '-1' pragma: @@ -3022,8 +1976,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235157.216.179.368167|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1659761752.444.36.388734|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -3045,15 +1999,17 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: GET - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/datasources + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources 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":"26552D79-E694-44BA-A54D-5A38C2940D48"},"readOnly":false},{"id":2,"uid":"3Xn1R2R4z","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":"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 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: @@ -3062,13 +2018,13 @@ interactions: connection: - keep-alive content-length: - - '820' + - '1782' content-security-policy: - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:36 GMT + - Sat, 06 Aug 2022 04:55:52 GMT expires: - '-1' pragma: @@ -3076,8 +2032,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235157.585.177.432989|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1659761753.143.35.821907|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -3099,14 +2055,14 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: GET - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source response: body: - string: '{"id":2,"uid":"3Xn1R2R4z","orgId":1,"name":"Test Azure Monitor Data + string: '{"id":4,"uid":"B0MtAuz4z","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: @@ -3120,7 +2076,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:36 GMT + - Sat, 06 Aug 2022 04:55:52 GMT expires: - '-1' pragma: @@ -3128,8 +2084,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235157.918.177.780423|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1659761753.8.33.900683|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -3153,14 +2109,14 @@ interactions: Content-Length: - '0' User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: DELETE - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/datasources/uid/3Xn1R2R4z + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources/uid/B0MtAuz4z response: body: - string: '{"id":2,"message":"Data source deleted"}' + string: '{"id":4,"message":"Data source deleted"}' headers: cache-control: - no-cache @@ -3173,7 +2129,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:37 GMT + - Sat, 06 Aug 2022 04:55:53 GMT expires: - '-1' pragma: @@ -3181,7 +2137,7 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235158.08.173.522435|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1659761754.372.36.458678|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3204,28 +2160,30 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: GET - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/datasources + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources 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":"26552D79-E694-44BA-A54D-5A38C2940D48"},"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":"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}]' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '424' + - '1386' content-security-policy: - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:37 GMT + - Sat, 06 Aug 2022 04:55:54 GMT expires: - '-1' pragma: @@ -3233,7 +2191,7 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235158.443.173.26080|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1659761755.055.34.204592|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3259,14 +2217,14 @@ interactions: Content-Length: - '133' User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: POST - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/alert-notifications + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications response: body: - string: '{"id":1,"uid":"bvHJRhR4z","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2022-07-19T12:52:37.813305102Z","updated":"2022-07-19T12:52:37.813306902Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' + 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":{}}' headers: cache-control: - no-cache @@ -3279,7 +2237,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:37 GMT + - Sat, 06 Aug 2022 04:55:54 GMT expires: - '-1' pragma: @@ -3287,7 +2245,7 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235158.783.172.70475|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1659761755.724.33.883117|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3310,14 +2268,14 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: GET - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/alert-notifications/bvHJRhR4z + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/GfDtAuzVk response: body: - string: '{"message":"notificationId is invalid","traceID":"64400f60e980d01137315178ff8bbb73"}' + string: '{"message":"notificationId is invalid","traceID":"1cb8abfe09f8fbbb23ab223b84d0e250"}' headers: cache-control: - no-cache @@ -3328,7 +2286,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:38 GMT + - Sat, 06 Aug 2022 04:55:55 GMT expires: - '-1' pragma: @@ -3336,7 +2294,7 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235159.137.170.55449|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1659761756.389.35.677232|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3359,14 +2317,14 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: GET - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/alert-notifications/uid/bvHJRhR4z + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/uid/GfDtAuzVk response: body: - string: '{"id":1,"uid":"bvHJRhR4z","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2022-07-19T12:52:37Z","updated":"2022-07-19T12:52:37Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' + 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":{}}' headers: cache-control: - no-cache @@ -3379,7 +2337,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:38 GMT + - Sat, 06 Aug 2022 04:55:56 GMT expires: - '-1' pragma: @@ -3387,8 +2345,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235159.286.172.776146|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1659761756.962.37.830525|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -3410,14 +2368,14 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: GET - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/alert-notifications/bvHJRhR4z + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/GfDtAuzVk response: body: - string: '{"message":"notificationId is invalid","traceID":"2749168fcb293de476604b66c9e2d4d4"}' + string: '{"message":"notificationId is invalid","traceID":"5264d4b8d8f151a63973a9a8f6d72eee"}' headers: cache-control: - no-cache @@ -3428,7 +2386,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:38 GMT + - Sat, 06 Aug 2022 04:55:56 GMT expires: - '-1' pragma: @@ -3436,8 +2394,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235159.628.177.326349|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1659761757.662.34.816004|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -3459,14 +2417,14 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: GET - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/alert-notifications/uid/bvHJRhR4z + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/uid/GfDtAuzVk response: body: - string: '{"id":1,"uid":"bvHJRhR4z","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2022-07-19T12:52:37Z","updated":"2022-07-19T12:52:37Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' + 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":{}}' headers: cache-control: - no-cache @@ -3479,7 +2437,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:38 GMT + - Sat, 06 Aug 2022 04:55:57 GMT expires: - '-1' pragma: @@ -3487,7 +2445,7 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235159.788.173.20014|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1659761758.23.37.530272|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3513,14 +2471,14 @@ interactions: Content-Length: - '142' User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: PUT - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/alert-notifications/1 + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/1 response: body: - string: '{"id":1,"uid":"bvHJRhR4z","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2022-07-19T12:52:37Z","updated":"2022-07-19T12:52:39Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' + 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":{}}' headers: cache-control: - no-cache @@ -3533,7 +2491,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:39 GMT + - Sat, 06 Aug 2022 04:55:57 GMT expires: - '-1' pragma: @@ -3541,8 +2499,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235159.984.171.578622|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1659761758.806.35.97610|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -3564,14 +2522,14 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: GET - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/alert-notifications + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications response: body: - string: '[{"id":1,"uid":"bvHJRhR4z","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2022-07-19T12:52:37Z","updated":"2022-07-19T12:52:39Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}]' + 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":{}}]' headers: cache-control: - no-cache @@ -3584,7 +2542,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:39 GMT + - Sat, 06 Aug 2022 04:55:58 GMT expires: - '-1' pragma: @@ -3592,8 +2550,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235160.352.179.698633|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1659761759.506.34.922163|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -3615,14 +2573,14 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: GET - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/alert-notifications/bvHJRhR4z + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/GfDtAuzVk response: body: - string: '{"message":"notificationId is invalid","traceID":"061a7ce614c741a53d4d4e7cfa31b9c2"}' + string: '{"message":"notificationId is invalid","traceID":"4f02ee145c76e5f93975969d03f80994"}' headers: cache-control: - no-cache @@ -3633,7 +2591,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:39 GMT + - Sat, 06 Aug 2022 04:55:59 GMT expires: - '-1' pragma: @@ -3641,7 +2599,7 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235160.7.170.359410|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1659761760.187.37.441436|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3664,14 +2622,14 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: GET - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/alert-notifications/uid/bvHJRhR4z + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/uid/GfDtAuzVk response: body: - string: '{"id":1,"uid":"bvHJRhR4z","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2022-07-19T12:52:37Z","updated":"2022-07-19T12:52:39Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' + 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":{}}' headers: cache-control: - no-cache @@ -3684,7 +2642,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:39 GMT + - Sat, 06 Aug 2022 04:55:59 GMT expires: - '-1' pragma: @@ -3692,7 +2650,7 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235160.9.172.605978|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1659761760.76.36.913423|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3717,11 +2675,11 @@ interactions: Content-Length: - '0' User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: DELETE - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/alert-notifications/1 + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/1 response: body: string: '{"message":"Notification deleted"}' @@ -3737,7 +2695,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:40 GMT + - Sat, 06 Aug 2022 04:56:00 GMT expires: - '-1' pragma: @@ -3745,8 +2703,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235161.071.172.328401|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1659761761.358.35.748658|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -3768,11 +2726,11 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: GET - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/alert-notifications + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications response: body: string: '[]' @@ -3788,7 +2746,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:40 GMT + - Sat, 06 Aug 2022 04:56:01 GMT expires: - '-1' pragma: @@ -3796,8 +2754,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235161.454.172.611083|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1659761762.027.34.625437|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -3821,14 +2779,14 @@ interactions: Content-Length: - '62' User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: POST - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/dashboards/db + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/dashboards/db response: body: - string: '{"id":12,"slug":"test-dashboard","status":"success","uid":"jvK1R2R4k","url":"/d/jvK1R2R4k/test-dashboard","version":1}' + string: '{"id":48,"slug":"test-dashboard","status":"success","uid":"i2ApAXkVz","url":"/d/i2ApAXkVz/test-dashboard","version":1}' headers: cache-control: - no-cache @@ -3841,7 +2799,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:40 GMT + - Sat, 06 Aug 2022 04:56:01 GMT expires: - '-1' pragma: @@ -3849,8 +2807,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235161.848.170.464959|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1659761762.696.34.734982|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -3872,28 +2830,28 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: GET - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/dashboards/uid/jvK1R2R4k + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/dashboards/uid/i2ApAXkVz response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/jvK1R2R4k/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2022-07-19T12:52:40Z","updated":"2022-07-19T12:52:40Z","updatedBy":"michelletaal@hotmail.com","createdBy":"michelletaal@hotmail.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":12,"title":"Test - Dashboard","uid":"jvK1R2R4k","version":1}}' + 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}}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '739' + - '729' content-security-policy: - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:41 GMT + - Sat, 06 Aug 2022 04:56:02 GMT expires: - '-1' pragma: @@ -3901,8 +2859,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235162.258.178.743485|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1659761763.404.33.905723|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -3915,7 +2873,7 @@ interactions: code: 200 message: OK - request: - body: '{"dashboard": {"title": "Test Dashboard", "uid": "jvK1R2R4k", "version": + body: '{"dashboard": {"title": "Test Dashboard", "uid": "i2ApAXkVz", "version": 1}, "overwrite": true}' headers: Accept: @@ -3927,14 +2885,14 @@ interactions: Content-Length: - '95' User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: POST - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/dashboards/db + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/dashboards/db response: body: - string: '{"id":12,"slug":"test-dashboard","status":"success","uid":"jvK1R2R4k","url":"/d/jvK1R2R4k/test-dashboard","version":2}' + string: '{"id":48,"slug":"test-dashboard","status":"success","uid":"i2ApAXkVz","url":"/d/i2ApAXkVz/test-dashboard","version":2}' headers: cache-control: - no-cache @@ -3947,7 +2905,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:41 GMT + - Sat, 06 Aug 2022 04:56:03 GMT expires: - '-1' pragma: @@ -3955,8 +2913,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235162.681.170.647774|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1659761764.068.36.540277|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -3978,32 +2936,90 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: GET - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/search?type=dash-db + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/search?type=dash-db response: body: - string: '[{"id":5,"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":7,"uid":"Yo38mcvnz","title":"Azure + 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 + / 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":8,"uid":"INH9berMk","title":"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":2,"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":3,"uid":"tQZAMYrMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"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":4,"uid":"3n2E8CrGk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"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":6,"uid":"AzVmInsightsByRG","title":"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":9,"uid":"AzVmInsightsByWS","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"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":10,"uid":"Mtwt2BV7k","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"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":"jvK1R2R4k","title":"Test - Dashboard","uri":"db/test-dashboard","url":"/d/jvK1R2R4k/test-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"sortMeta":0}]' + 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 + (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 + 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 + 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}]' headers: cache-control: - no-cache @@ -4014,7 +3030,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:42 GMT + - Sat, 06 Aug 2022 04:56:03 GMT expires: - '-1' pragma: @@ -4022,8 +3038,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235163.046.170.308301|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1659761764.762.35.573555|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains transfer-encoding: @@ -4049,14 +3065,14 @@ interactions: Content-Length: - '0' User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: DELETE - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/dashboards/uid/jvK1R2R4k + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/dashboards/uid/i2ApAXkVz response: body: - string: '{"id":12,"message":"Dashboard Test Dashboard deleted","title":"Test + string: '{"id":48,"message":"Dashboard Test Dashboard deleted","title":"Test Dashboard"}' headers: cache-control: @@ -4070,7 +3086,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:42 GMT + - Sat, 06 Aug 2022 04:56:04 GMT expires: - '-1' pragma: @@ -4078,7 +3094,7 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235163.42.177.268539|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1659761765.606.33.60884|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -4101,31 +3117,89 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.27.1 + - python-requests/2.26.0 content-type: - application/json method: GET - uri: https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com/api/search?type=dash-db + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/search?type=dash-db response: body: - string: '[{"id":5,"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":7,"uid":"Yo38mcvnz","title":"Azure + 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 + / 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":8,"uid":"INH9berMk","title":"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":2,"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":3,"uid":"tQZAMYrMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"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":4,"uid":"3n2E8CrGk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"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":6,"uid":"AzVmInsightsByRG","title":"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":9,"uid":"AzVmInsightsByWS","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"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":10,"uid":"Mtwt2BV7k","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"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}]' + 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 + (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 + 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 + 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}]' headers: cache-control: - no-cache @@ -4136,7 +3210,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Jul 2022 12:52:42 GMT + - Sat, 06 Aug 2022 04:56:05 GMT expires: - '-1' pragma: @@ -4144,8 +3218,8 @@ interactions: request-context: - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 set-cookie: - - INGRESSCOOKIE=1658235163.802.173.929746|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1659761766.294.36.544848|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains transfer-encoding: @@ -4173,29 +3247,33 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - 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/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2021-09-01-preview + 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":"michelletaal@hotmail.com","createdByType":"User","createdAt":"2022-07-19T12:35:47.0398186Z","lastModifiedBy":"michelletaal@hotmail.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-19T12:35:47.0398186Z"},"identity":{"principalId":"c20a5e0c-1843-4af9-986d-729f77fae43d","tenantId":"2de11026-d33d-44dd-95de-6261863da22e","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://clitestamg-ftcwecbbe7hyhrhk.weu.grafana.azure.com","zoneRedundancy":"Disabled","autoGeneratedDomainNameLabelScope":"TenantReuse"}}' + 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"}}' headers: cache-control: - no-cache content-length: - - '872' + - '951' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:52:46 GMT + - Sat, 06 Aug 2022 04:56:05 GMT etag: - - '"1b001daa-0000-0d00-0000-62d6a8fc0000"' + - '"07003b9b-0000-0d00-0000-62edf42a0000"' 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: @@ -4219,9 +3297,9 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-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=2021-09-01-preview + 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: 'null' @@ -4229,7 +3307,7 @@ interactions: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01 azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 cache-control: - no-cache content-length: @@ -4237,13 +3315,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:52:46 GMT + - Sat, 06 Aug 2022 04:56:08 GMT etag: - - '"1b00f3aa-0000-0d00-0000-62d6a91e0000"' + - '"0700899b-0000-0d00-0000-62edf4680000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/c9ff3b58-4aee-44b5-9190-1728aaf50d84*5A2B7E18CED510E64B8E022686CD2387EAD6A56C4AD9360B3404D836A7277963?api-version=2022-08-01 pragma: - no-cache request-context: @@ -4273,12 +3351,54 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - 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) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview + 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/1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-07-19T12:52:46.5012498Z","error":{}}' + 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 @@ -4287,9 +3407,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:53:16 GMT + - Sat, 06 Aug 2022 04:57:08 GMT etag: - - '"3f00ee30-0000-0d00-0000-62d6a9220000"' + - '"7a004d9b-0000-0d00-0000-62edf46f0000"' expires: - '-1' pragma: @@ -4315,12 +3435,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - 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/1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview + 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/1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-07-19T12:52:46.5012498Z","error":{}}' + 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 @@ -4329,9 +3449,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:53:46 GMT + - Sat, 06 Aug 2022 04:57:39 GMT etag: - - '"3f00ee30-0000-0d00-0000-62d6a9220000"' + - '"7a004d9b-0000-0d00-0000-62edf46f0000"' expires: - '-1' pragma: @@ -4357,12 +3477,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - 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/1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview + 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/1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-07-19T12:52:46.5012498Z","error":{}}' + 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 @@ -4371,9 +3491,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:54:16 GMT + - Sat, 06 Aug 2022 04:58:09 GMT etag: - - '"3f00ee30-0000-0d00-0000-62d6a9220000"' + - '"7a004d9b-0000-0d00-0000-62edf46f0000"' expires: - '-1' pragma: @@ -4399,12 +3519,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - 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/1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview + 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/1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-07-19T12:52:46.5012498Z","error":{}}' + 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 @@ -4413,9 +3533,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:54:46 GMT + - Sat, 06 Aug 2022 04:58:39 GMT etag: - - '"3f00ee30-0000-0d00-0000-62d6a9220000"' + - '"7a004d9b-0000-0d00-0000-62edf46f0000"' expires: - '-1' pragma: @@ -4441,12 +3561,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - 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/1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview + 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/1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-07-19T12:52:46.5012498Z","error":{}}' + 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 @@ -4455,9 +3575,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:55:18 GMT + - Sat, 06 Aug 2022 04:59:09 GMT etag: - - '"3f00ee30-0000-0d00-0000-62d6a9220000"' + - '"7a004d9b-0000-0d00-0000-62edf46f0000"' expires: - '-1' pragma: @@ -4483,12 +3603,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - 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/1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview + 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/1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-07-19T12:52:46.5012498Z","error":{}}' + 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 @@ -4497,9 +3617,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:55:47 GMT + - Sat, 06 Aug 2022 04:59:39 GMT etag: - - '"3f00ee30-0000-0d00-0000-62d6a9220000"' + - '"7a004d9b-0000-0d00-0000-62edf46f0000"' expires: - '-1' pragma: @@ -4525,12 +3645,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - 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/1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview + 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/1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-07-19T12:52:46.5012498Z","error":{}}' + 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 @@ -4539,9 +3659,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:56:17 GMT + - Sat, 06 Aug 2022 05:00:10 GMT etag: - - '"3f00ee30-0000-0d00-0000-62d6a9220000"' + - '"7a004d9b-0000-0d00-0000-62edf46f0000"' expires: - '-1' pragma: @@ -4567,12 +3687,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - 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/1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview + 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/1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-07-19T12:52:46.5012498Z","error":{}}' + 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 @@ -4581,9 +3701,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:56:48 GMT + - Sat, 06 Aug 2022 05:00:40 GMT etag: - - '"3f00ee30-0000-0d00-0000-62d6a9220000"' + - '"7a004d9b-0000-0d00-0000-62edf46f0000"' expires: - '-1' pragma: @@ -4609,12 +3729,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - 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/1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview + 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/1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-07-19T12:52:46.5012498Z","error":{}}' + 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 @@ -4623,9 +3743,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:57:18 GMT + - Sat, 06 Aug 2022 05:01:11 GMT etag: - - '"3f00ee30-0000-0d00-0000-62d6a9220000"' + - '"7a004d9b-0000-0d00-0000-62edf46f0000"' expires: - '-1' pragma: @@ -4651,12 +3771,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - 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/1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview + 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/1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-07-19T12:52:46.5012498Z","error":{}}' + 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 @@ -4665,9 +3785,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:57:48 GMT + - Sat, 06 Aug 2022 05:01:41 GMT etag: - - '"3f00ee30-0000-0d00-0000-62d6a9220000"' + - '"7a004d9b-0000-0d00-0000-62edf46f0000"' expires: - '-1' pragma: @@ -4693,12 +3813,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - 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/1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview + 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/1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-07-19T12:52:46.5012498Z","error":{}}' + 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 @@ -4707,9 +3827,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:58:18 GMT + - Sat, 06 Aug 2022 05:02:11 GMT etag: - - '"3f00ee30-0000-0d00-0000-62d6a9220000"' + - '"7a004d9b-0000-0d00-0000-62edf46f0000"' expires: - '-1' pragma: @@ -4735,12 +3855,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - 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/1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview + 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/1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2022-07-19T12:52:46.5012498Z","error":{}}' + 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 @@ -4749,9 +3869,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:58:48 GMT + - Sat, 06 Aug 2022 05:02:41 GMT etag: - - '"3f00ee30-0000-0d00-0000-62d6a9220000"' + - '"7a004d9b-0000-0d00-0000-62edf46f0000"' expires: - '-1' pragma: @@ -4777,12 +3897,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - 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/1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA?api-version=2021-09-01-preview + 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/1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","name":"1f4aa73e-2d04-4689-a370-1f157ed0ec0e*221E2AACC353877A6BE2C3D375FE51BABC8A8DC3792536145A6C16507B526AEA","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Succeeded","startTime":"2022-07-19T12:52:46.5012498Z","endTime":"2022-07-19T12:59:09.0890676Z","error":{},"properties":null}' + 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}' headers: cache-control: - no-cache @@ -4791,15 +3911,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:59:18 GMT + - Sat, 06 Aug 2022 05:03:11 GMT etag: - - '"3f00a031-0000-0d00-0000-62d6aa9d0000"' + - '"7a002dab-0000-0d00-0000-62edf5fa0000"' expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -4819,15 +3943,15 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.9.13 (Windows-10-10.0.19044-SP0) msrest/0.7.1 msrest_azure/0.6.4 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.37.0 + - 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) 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%27c20a5e0c-1843-4af9-986d-729f77fae43d%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%27c977fab6-1d15-477a-b53c-14dc093cae36%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":"c20a5e0c-1843-4af9-986d-729f77fae43d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T12:52:25.7296970Z","updatedOn":"2022-07-19T12:52:25.7296970Z","createdBy":"ed86bea3-5154-4d06-839b-11ced3dc0557","updatedBy":"ed86bea3-5154-4d06-839b-11ced3dc0557","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0335db53-ccff-4091-abef-d1d8baf46a20","type":"Microsoft.Authorization/roleAssignments","name":"0335db53-ccff-4091-abef-d1d8baf46a20"}]}' + 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"}]}' headers: cache-control: - no-cache @@ -4836,7 +3960,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:59:19 GMT + - Sat, 06 Aug 2022 05:03:12 GMT expires: - '-1' pragma: @@ -4872,15 +3996,15 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.9.13 (Windows-10-10.0.19044-SP0) msrest/0.7.1 msrest_azure/0.6.4 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.37.0 + - 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) accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0335db53-ccff-4091-abef-d1d8baf46a20?api-version=2020-04-01-preview + 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":"c20a5e0c-1843-4af9-986d-729f77fae43d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T12:52:25.7296970Z","updatedOn":"2022-07-19T12:52:25.7296970Z","createdBy":"ed86bea3-5154-4d06-839b-11ced3dc0557","updatedBy":"ed86bea3-5154-4d06-839b-11ced3dc0557","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0335db53-ccff-4091-abef-d1d8baf46a20","type":"Microsoft.Authorization/roleAssignments","name":"0335db53-ccff-4091-abef-d1d8baf46a20"}' + 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"}' headers: cache-control: - no-cache @@ -4889,7 +4013,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:59:21 GMT + - Sat, 06 Aug 2022 05:03:14 GMT expires: - '-1' pragma: @@ -4921,21 +4045,21 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.9.13 (Windows-10-10.0.19044-SP0) + - 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/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Dashboard/grafana?api-version=2021-09-01-preview + 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/amg-test/providers/Microsoft.Dashboard/grafana/amg-test-grafana","name":"amg-test-grafana","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{},"systemData":{"createdBy":"michelletaal@hotmail.com","createdByType":"User","createdAt":"2022-07-18T14:17:58.934605Z","lastModifiedBy":"michelletaal@hotmail.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T14:17:58.934605Z"},"identity":{"principalId":"0433a85e-994f-487e-8726-10d0c079c1fa","tenantId":"2de11026-d33d-44dd-95de-6261863da22e","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.0.1","endpoint":"https://amg-test-grafana-d2bbecdjddctg4hq.weu.grafana.azure.com","zoneRedundancy":"Disabled","autoGeneratedDomainNameLabelScope":"TenantReuse"}}]}' + 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"}}]}' headers: cache-control: - no-cache content-length: - - '879' + - '958' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jul 2022 12:59:22 GMT + - Sat, 06 Aug 2022 05:03:15 GMT expires: - '-1' pragma: @@ -4947,10 +4071,12 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 6f8b7ae1-c78b-4b2b-b33f-257c4ed4edb5 - - 8d368e4e-4d7a-4d9f-b796-66383388a2d1 - - fcc3c6fa-ecfa-4fbc-b05f-05bbd1429e3d - - d73ea77f-898c-4db1-930d-432375c2102b + - 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 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 new file mode 100644 index 00000000000..e4901b97c67 --- /dev/null +++ b/src/amg/azext_amg/tests/latest/recordings/test_api_key_e2e.yaml @@ -0,0 +1,1535 @@ +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.39.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22000-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}}' + headers: + api-supported-versions: + - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01 + azure-asyncoperation: + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E?api-version=2022-08-01 + cache-control: + - no-cache + content-length: + - '1001' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 06 Aug 2022 05:09:18 GMT + etag: + - '"fd00a878-0000-0600-0000-62edf77f0000"' + expires: + - '-1' + location: + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E?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.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/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E?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"}' + headers: + cache-control: + - no-cache + content-length: + - '513' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 06 Aug 2022 05:09:48 GMT + etag: + - '"3101e8b2-0000-0600-0000-62edf77f0000"' + 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.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/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E?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"}' + headers: + cache-control: + - no-cache + content-length: + - '513' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 06 Aug 2022 05:10:19 GMT + etag: + - '"3101e8b2-0000-0600-0000-62edf77f0000"' + 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.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/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E?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"}' + headers: + cache-control: + - no-cache + content-length: + - '513' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 06 Aug 2022 05:10:49 GMT + etag: + - '"3101e8b2-0000-0600-0000-62edf77f0000"' + 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.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/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E?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"}' + headers: + cache-control: + - no-cache + content-length: + - '513' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 06 Aug 2022 05:11:19 GMT + etag: + - '"3101e8b2-0000-0600-0000-62edf77f0000"' + 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.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/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E?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"}' + headers: + cache-control: + - no-cache + content-length: + - '513' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 06 Aug 2022 05:11:49 GMT + etag: + - '"3101e8b2-0000-0600-0000-62edf77f0000"' + 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.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/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E?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"}' + headers: + cache-control: + - no-cache + content-length: + - '513' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 06 Aug 2022 05:12:19 GMT + etag: + - '"3101e8b2-0000-0600-0000-62edf77f0000"' + 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.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/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E?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"}' + headers: + cache-control: + - no-cache + content-length: + - '513' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 06 Aug 2022 05:12:49 GMT + etag: + - '"3101e8b2-0000-0600-0000-62edf77f0000"' + 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.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/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E?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"}' + headers: + cache-control: + - no-cache + content-length: + - '513' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 06 Aug 2022 05:13:19 GMT + etag: + - '"3101e8b2-0000-0600-0000-62edf77f0000"' + 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.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/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E?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"}' + headers: + cache-control: + - no-cache + content-length: + - '513' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 06 Aug 2022 05:13:49 GMT + etag: + - '"3101e8b2-0000-0600-0000-62edf77f0000"' + 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.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/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E?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"}' + headers: + cache-control: + - no-cache + content-length: + - '513' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 06 Aug 2022 05:14:19 GMT + etag: + - '"3101e8b2-0000-0600-0000-62edf77f0000"' + 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.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/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E?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"}' + headers: + cache-control: + - no-cache + content-length: + - '513' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 06 Aug 2022 05:14:50 GMT + etag: + - '"3101e8b2-0000-0600-0000-62edf77f0000"' + 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.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/WESTCENTRALUS/operationStatuses/bebbddbb-2ffc-4e24-b5fc-20423ebd18af*F124049389373494518BBBEE1EB3898440B80F531DE5FD18CBBEF38304E1DF9E?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}' + headers: + cache-control: + - no-cache + content-length: + - '584' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 06 Aug 2022 05:15:20 GMT + etag: + - '"310174d5-0000-0600-0000-62edf8cf0000"' + 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.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/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"}}' + headers: + cache-control: + - no-cache + content-length: + - '952' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 06 Aug 2022 05:15:20 GMT + etag: + - '"fd00ef85-0000-0600-0000-62edf8cf0000"' + 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.22000-SP0) msrest/0.7.0 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":["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 + 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 + 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: + - '23104' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Sat, 06 Aug 2022 05:15:20 GMT + duration: + - '4538492' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - yyuJ/12Nv6hG1eilgn+xNPmvhFCAufkz5XdpfLtVshc= + ocp-aad-session-key: + - QzlrksXUmO2tuNUMcoEbHl-mE-HT-1i8-iDGP8G--42QW1r6GgDxKtaP1WIuAoH62GpY1zXHKFBkCBE1GMTSBic-QcpqEeAD7M0Y37wQdzPs3A9URG8u7OJMkDHbP0Hn.C9xwRooouDfZpMCYIQ5eOZAjy3nkg_1NvUzbJqkLjMY + pragma: + - no-cache + request-id: + - 94c63643-3b1e-4dd6-9c85-74edb0f54dbd + 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.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) + 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, 06 Aug 2022 05:15:21 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.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) + 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"}' + headers: + cache-control: + - no-cache + content-length: + - '989' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 06 Aug 2022 05:15:24 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.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) + 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":["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"}]}' + headers: + cache-control: + - no-cache + content-length: + - '729' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 06 Aug 2022 05:15:24 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": "cb0d1bae-d01a-4697-9121-f7ab63036aea"}}' + 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.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) + 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"}' + headers: + cache-control: + - no-cache + content-length: + - '823' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 06 Aug 2022 05:15:27 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 --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) + 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"}}' + headers: + cache-control: + - no-cache + content-length: + - '952' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 06 Aug 2022 05:15:28 GMT + etag: + - '"fd00ef85-0000-0600-0000-62edf8cf0000"' + 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"}, "location": "westcentralus"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana update + Connection: + - keep-alive + Content-Length: + - '290' + 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) + 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}}' + headers: + api-supported-versions: + - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01 + cache-control: + - no-cache + content-length: + - '1004' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 06 Aug 2022 05:15:29 GMT + etag: + - '"fd003587-0000-0600-0000-62edf8f20000"' + 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 api-key list + Connection: + - keep-alive + 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) + 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}}' + headers: + cache-control: + - no-cache + content-length: + - '1004' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 06 Aug 2022 05:15:30 GMT + etag: + - '"fd003587-0000-0600-0000-62edf8f20000"' + 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://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com/api/auth/keys?includedExpired=false&accesscontrol=true + 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, 06 Aug 2022 05:15:33 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + set-cookie: + - INGRESSCOOKIE=1659762932.711.35.962692|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": "apikey1", "role": "Admin", "secondsToLive": 259200}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '61' + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: POST + uri: https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com/api/auth/keys + response: + body: + string: '{"id":1,"name":"apikey1","key":"eyJrIjoiVFBzM2hQZENtTWRpc2g3MGZYUDE0T29xVVh4RFFxaXciLCJuIjoiYXBpa2V5MSIsImlkIjoxfQ=="}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '118' + content-security-policy: + - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + content-type: + - application/json + date: + - Sat, 06 Aug 2022 05:15:34 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + set-cookie: + - INGRESSCOOKIE=1659762934.833.35.705058|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": "apikey2", "role": "Viewer", "secondsToLive": 86400}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '61' + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: POST + uri: https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com/api/auth/keys + response: + body: + string: '{"id":2,"name":"apikey2","key":"eyJrIjoiSGFSVFVBVWthMkRTMHlVUkNWa1Y3M0YxdmlhRzFQa3EiLCJuIjoiYXBpa2V5MiIsImlkIjoxfQ=="}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '118' + content-security-policy: + - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + content-type: + - application/json + date: + - Sat, 06 Aug 2022 05:15:35 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + set-cookie: + - INGRESSCOOKIE=1659762935.57.36.688564|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://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}}]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '276' + content-security-policy: + - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + content-type: + - application/json + date: + - Sat, 06 Aug 2022 05:15:35 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + set-cookie: + - INGRESSCOOKIE=1659762936.281.36.218540|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://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}}]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '276' + content-security-policy: + - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + content-type: + - application/json + date: + - Sat, 06 Aug 2022 05:15:35 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + set-cookie: + - INGRESSCOOKIE=1659762936.56.36.459470|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://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com/api/auth/keys/2 + response: + body: + string: '{"message":"API key deleted"}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '29' + content-security-policy: + - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + content-type: + - application/json + date: + - Sat, 06 Aug 2022 05:15:35 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + set-cookie: + - INGRESSCOOKIE=1659762936.748.34.11301|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://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 + / 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 + / 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 + / 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 + / 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 + / 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 + / 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 + / 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 + (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 + 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 + 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}]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-security-policy: + - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + content-type: + - application/json + date: + - Sat, 06 Aug 2022 05:15:36 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + set-cookie: + - INGRESSCOOKIE=1659762937.03.33.585126|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 +version: 1 diff --git a/src/amg/azext_amg/tests/latest/test_amg_livescenario.py b/src/amg/azext_amg/tests/latest/test_amg_livescenario.py deleted file mode 100644 index 13e44af95e1..00000000000 --- a/src/amg/azext_amg/tests/latest/test_amg_livescenario.py +++ /dev/null @@ -1,167 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - -import os -import unittest - -from azure.cli.testsdk import (ResourceGroupPreparer, LiveScenarioTest) -from azure.cli.testsdk .scenario_tests import AllowLargeResponse -from .test_definitions import (test_data_source, test_notification_channel, test_dashboard) - - -TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) - - -class AmgLiveScenarioTest(LiveScenarioTest): - - @AllowLargeResponse(size_kb=3072) - @ResourceGroupPreparer(name_prefix='cli_test_amg', location='westeurope') - def test_amg_e2e(self, resource_group): - - # Test Instance - self.kwargs.update({ - 'name': 'clitestamg', - 'location': 'westeurope' - }) - - self.cmd('grafana create -g {rg} -n {name} -l {location} --tags foo=doo', checks=[ - self.check('tags.foo', 'doo'), - self.check('name', '{name}') - ]) - - self.cmd('grafana list -g {rg}') - count = len(self.cmd('grafana list').get_output_in_json()) - - self.cmd('grafana show -g {rg} -n {name}', checks=[ - self.check('name', '{name}'), - self.check('resourceGroup', '{rg}'), - self.check('tags.foo', 'doo') - ]) - - # Test User - response_list = self.cmd('grafana user list -g {rg} -n {name}').get_output_in_json() - self.assertTrue(len(response_list) > 0) - - response_actual_user = self.cmd('grafana user actual-user -g {rg} -n {name}').get_output_in_json() - self.assertTrue(len(response_actual_user) > 0) - - # Test Folder - self.kwargs.update({ - 'title': 'Test Folder', - 'update_title': 'Test Folder Update' - }) - - response_create = self.cmd('grafana folder create -g {rg} -n {name} --title "{title}"', checks=[ - self.check("[title]", "['{title}']")]).get_output_in_json() - - self.kwargs.update({ - 'folder_uid': response_create["uid"] - }) - - self.cmd('grafana folder show -g {rg} -n {name} --folder "{title}"', checks=[ - self.check("[title]", "['{title}']")]) - - self.cmd('grafana folder update -g {rg} -n {name} --folder "{folder_uid}" --title "{update_title}"', checks=[ - self.check("[title]", "['{update_title}']")]) - - response_list = self.cmd('grafana folder list -g {rg} -n {name}').get_output_in_json() - self.assertTrue(len(response_list) > 0) - - self.cmd('grafana folder delete -g {rg} -n {name} --folder "{update_title}"') - response_delete = self.cmd('grafana folder list -g {rg} -n {name}').get_output_in_json() - self.assertTrue(len(response_delete) == len(response_list) - 1) - - - # Test Data Source - self.kwargs.update({ - 'definition': test_data_source, - 'definition_name': test_data_source["name"] - }) - - self.cmd('grafana data-source create -g {rg} -n {name} --definition "{definition}"', checks=[ - self.check("[name]", "['{definition_name}']")]) - - self.cmd('grafana data-source show -g {rg} -n {name} --data-source "{definition_name}"', checks=[ - self.check("[name]", "['{definition_name}']")]) - - self.cmd('grafana data-source update -g {rg} -n {name} --data-source "{definition_name}" --definition "{definition}"', checks=[ - self.check("[name]", "['{definition_name}']")]) - - response_list = self.cmd('grafana data-source list -g {rg} -n {name}').get_output_in_json() - self.assertTrue(len(response_list) > 0) - - self.cmd('grafana data-source delete -g {rg} -n {name} --data-source "{definition_name}"') - response_delete = self.cmd('grafana data-source list -g {rg} -n {name}').get_output_in_json() - self.assertTrue(len(response_delete) == len(response_list) - 1) - - - # Test Notification Channel - self.kwargs.update({ - 'definition': test_notification_channel, - 'definition_name': test_notification_channel["name"] - }) - - response_create = self.cmd('grafana notification-channel create -g {rg} -n {name} --definition "{definition}"', checks=[ - self.check("[name]", "['{definition_name}']")]).get_output_in_json() - - self.kwargs.update({ - 'notification_channel_uid': response_create["uid"] - }) - - self.cmd('grafana notification-channel show -g {rg} -n {name} --notification-channel "{notification_channel_uid}"', checks=[ - self.check("[name]", "['{definition_name}']")]) - - self.cmd('grafana notification-channel update -g {rg} -n {name} --notification-channel "{notification_channel_uid}" --definition "{definition}"', checks=[ - self.check("[name]", "['{definition_name}']")]) - - response_list = self.cmd('grafana notification-channel list -g {rg} -n {name}').get_output_in_json() - self.assertTrue(len(response_list) > 0) - - self.cmd('grafana notification-channel delete -g {rg} -n {name} --notification-channel "{notification_channel_uid}"') - response_delete = self.cmd('grafana notification-channel list -g {rg} -n {name}').get_output_in_json() - self.assertTrue(len(response_delete) == len(response_list) - 1) - - - # Test Dashboard - definition_name = test_dashboard["dashboard"]["title"] - slug = definition_name.lower().replace(' ', '-') - - self.kwargs.update({ - 'definition': test_dashboard, - 'definition_name': definition_name, - 'definition_slug': slug, - }) - - response_create = self.cmd('grafana dashboard create -g {rg} -n {name} --definition "{definition}" --title "{definition_name}"', checks=[ - self.check("[slug]", "['{definition_slug}']")]).get_output_in_json() - - test_definition_update = test_dashboard - test_definition_update["dashboard"]["uid"] = response_create["uid"] - test_definition_update["dashboard"]["id"] = response_create["id"] - test_definition_update["dashboard"]["version"] = response_create["version"] - - self.kwargs.update({ - 'dashboard_uid': response_create["uid"], - 'test_definition_update': test_definition_update - }) - - self.cmd('grafana dashboard show -g {rg} -n {name} --dashboard "{dashboard_uid}"', checks=[ - self.check("[dashboard.title]", "['{definition_name}']")]) - - response_update = self.cmd('grafana dashboard update -g {rg} -n {name} --definition "{test_definition_update}" --overwrite true', checks=[ - self.check("[slug]", "['{definition_slug}']")]).get_output_in_json() - self.assertTrue(response_update["version"] == response_create["version"] + 1) - - response_list = self.cmd('grafana dashboard list -g {rg} -n {name}').get_output_in_json() - self.assertTrue(len(response_list) > 0) - - self.cmd('grafana dashboard delete -g {rg} -n {name} --dashboard "{dashboard_uid}"') - response_delete = self.cmd('grafana dashboard list -g {rg} -n {name}').get_output_in_json() - self.assertTrue(len(response_delete) == len(response_list) - 1) - - # Close-out Instance - self.cmd('grafana delete -g {rg} -n {name} --yes') - final_count = len(self.cmd('grafana list').get_output_in_json()) - self.assertTrue(final_count, count - 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 9cef8158370..b7c5679a138 100644 --- a/src/amg/azext_amg/tests/latest/test_amg_scenario.py +++ b/src/amg/azext_amg/tests/latest/test_amg_scenario.py @@ -6,8 +6,9 @@ import os import unittest -from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer) - +from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, MSGraphNameReplacer, MOCKED_USER_NAME) +from azure.cli.testsdk .scenario_tests import AllowLargeResponse +from .test_definitions import (test_data_source, test_notification_channel, test_dashboard) TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) @@ -18,8 +19,8 @@ class AmgScenarioTest(ScenarioTest): def test_amg_base(self, resource_group): self.kwargs.update({ - 'name': 'clitestamg', - 'location': 'westeurope' + 'name': 'clitestamg2', + 'location': 'westcentralus' }) self.cmd('grafana create -g {rg} -n {name} -l {location} --tags foo=doo --skip-role-assignments', checks=[ @@ -34,6 +35,218 @@ def test_amg_base(self, resource_group): self.check('tags.foo', 'doo') ]) + self.cmd('grafana update -g {rg} -n {name} --deterministic-outbound-ip Enabled --api-key Enabled', checks=[ + self.check('properties.deterministicOutboundIp', 'Enabled'), + self.check('properties.apiKey', 'Enabled'), + self.check('length(properties.outboundIPs)', 2) + ]) + + self.cmd('grafana show -g {rg} -n {name}', checks=[ + self.check('properties.deterministicOutboundIp', 'Enabled'), + self.check('properties.apiKey', 'Enabled'), + self.check('length(properties.outboundIPs)', 2) + ]) + + self.cmd('grafana update -g {rg} -n {name} --deterministic-outbound-ip Disabled --api-key Disabled') + self.cmd('grafana show -g {rg} -n {name}', checks=[ + self.check('properties.deterministicOutboundIp', 'Disabled'), + self.check('properties.apiKey', 'Disabled'), + self.check('properties.outboundIPs', None) + ]) + self.cmd('grafana delete -g {rg} -n {name} --yes') final_count = len(self.cmd('grafana list').get_output_in_json()) - self.assertTrue(final_count, count - 1) \ No newline at end of file + self.assertTrue(final_count, count - 1) + + + @ResourceGroupPreparer(name_prefix='cli_test_amg') + def test_api_key_e2e(self, resource_group): + + self.kwargs.update({ + 'name': 'clitestamgapikey', + 'location': 'westcentralus', + "key": "apikey1", + "key2": "apikey2" + }) + + 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} --api-key Enabled') + self.cmd('grafana api-key list -g {rg} -n {name}', checks=[ + self.check('length([])', 0) + ]) + result = self.cmd('grafana api-key create -g {rg} -n {name} --key {key} --role Admin --time-to-live 3d').get_output_in_json() + api_key = result["key"] + self.cmd('grafana api-key create -g {rg} -n {name} --key {key2}') + self.cmd('grafana api-key list -g {rg} -n {name}', checks=[ + self.check('length([])', 2) + ]) + self.cmd('grafana api-key delete -g {rg} -n {name} --key {key2}') + number = len(self.cmd('grafana dashboard list -g {rg} -n {name} --api-key ' + api_key).get_output_in_json()) + self.assertTrue(number > 0) + + + @AllowLargeResponse(size_kb=3072) + @ResourceGroupPreparer(name_prefix='cli_test_amg', location='westeurope') + def test_amg_e2e(self, resource_group): + + # Test Instance + self.kwargs.update({ + 'name': 'clitestamg', + 'location': 'westeurope' + }) + + 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} --tags foo=doo', checks=[ + self.check('tags.foo', 'doo'), + self.check('name', '{name}') + ]) + + self.cmd('grafana list -g {rg}') + count = len(self.cmd('grafana list').get_output_in_json()) + + self.cmd('grafana show -g {rg} -n {name}', checks=[ + self.check('name', '{name}'), + self.check('resourceGroup', '{rg}'), + self.check('tags.foo', 'doo') + ]) + + # Test User + response_list = self.cmd('grafana user list -g {rg} -n {name}').get_output_in_json() + self.assertTrue(len(response_list) > 0) + + response_actual_user = self.cmd('grafana user actual-user -g {rg} -n {name}').get_output_in_json() + self.assertTrue(len(response_actual_user) > 0) + + # Test Folder + self.kwargs.update({ + 'title': 'Test Folder', + 'update_title': 'Test Folder Update' + }) + + response_create = self.cmd('grafana folder create -g {rg} -n {name} --title "{title}"', checks=[ + self.check("[title]", "['{title}']")]).get_output_in_json() + + self.kwargs.update({ + 'folder_uid': response_create["uid"] + }) + + self.cmd('grafana folder show -g {rg} -n {name} --folder "{title}"', checks=[ + self.check("[title]", "['{title}']")]) + + self.cmd('grafana folder update -g {rg} -n {name} --folder "{folder_uid}" --title "{update_title}"', checks=[ + self.check("[title]", "['{update_title}']")]) + + response_list = self.cmd('grafana folder list -g {rg} -n {name}').get_output_in_json() + self.assertTrue(len(response_list) > 0) + + self.cmd('grafana folder delete -g {rg} -n {name} --folder "{update_title}"') + response_delete = self.cmd('grafana folder list -g {rg} -n {name}').get_output_in_json() + self.assertTrue(len(response_delete) == len(response_list) - 1) + + + # Test Data Source + self.kwargs.update({ + 'definition': test_data_source, + 'definition_name': test_data_source["name"] + }) + + self.cmd('grafana data-source create -g {rg} -n {name} --definition "{definition}"', checks=[ + self.check("[name]", "['{definition_name}']")]) + + self.cmd('grafana data-source show -g {rg} -n {name} --data-source "{definition_name}"', checks=[ + self.check("[name]", "['{definition_name}']")]) + + self.cmd('grafana data-source update -g {rg} -n {name} --data-source "{definition_name}" --definition "{definition}"', checks=[ + self.check("[name]", "['{definition_name}']")]) + + response_list = self.cmd('grafana data-source list -g {rg} -n {name}').get_output_in_json() + self.assertTrue(len(response_list) > 0) + + self.cmd('grafana data-source delete -g {rg} -n {name} --data-source "{definition_name}"') + response_delete = self.cmd('grafana data-source list -g {rg} -n {name}').get_output_in_json() + self.assertTrue(len(response_delete) == len(response_list) - 1) + + + # Test Notification Channel + self.kwargs.update({ + 'definition': test_notification_channel, + 'definition_name': test_notification_channel["name"] + }) + + response_create = self.cmd('grafana notification-channel create -g {rg} -n {name} --definition "{definition}"', checks=[ + self.check("[name]", "['{definition_name}']")]).get_output_in_json() + + self.kwargs.update({ + 'notification_channel_uid': response_create["uid"] + }) + + self.cmd('grafana notification-channel show -g {rg} -n {name} --notification-channel "{notification_channel_uid}"', checks=[ + self.check("[name]", "['{definition_name}']")]) + + self.cmd('grafana notification-channel update -g {rg} -n {name} --notification-channel "{notification_channel_uid}" --definition "{definition}"', checks=[ + self.check("[name]", "['{definition_name}']")]) + + response_list = self.cmd('grafana notification-channel list -g {rg} -n {name}').get_output_in_json() + self.assertTrue(len(response_list) > 0) + + self.cmd('grafana notification-channel delete -g {rg} -n {name} --notification-channel "{notification_channel_uid}"') + response_delete = self.cmd('grafana notification-channel list -g {rg} -n {name}').get_output_in_json() + self.assertTrue(len(response_delete) == len(response_list) - 1) + + + # Test Dashboard + definition_name = test_dashboard["dashboard"]["title"] + slug = definition_name.lower().replace(' ', '-') + + self.kwargs.update({ + 'definition': test_dashboard, + 'definition_name': definition_name, + 'definition_slug': slug, + }) + + response_create = self.cmd('grafana dashboard create -g {rg} -n {name} --definition "{definition}" --title "{definition_name}"', checks=[ + self.check("[slug]", "['{definition_slug}']")]).get_output_in_json() + + test_definition_update = test_dashboard + test_definition_update["dashboard"]["uid"] = response_create["uid"] + test_definition_update["dashboard"]["id"] = response_create["id"] + test_definition_update["dashboard"]["version"] = response_create["version"] + + self.kwargs.update({ + 'dashboard_uid': response_create["uid"], + 'test_definition_update': test_definition_update + }) + + self.cmd('grafana dashboard show -g {rg} -n {name} --dashboard "{dashboard_uid}"', checks=[ + self.check("[dashboard.title]", "['{definition_name}']")]) + + response_update = self.cmd('grafana dashboard update -g {rg} -n {name} --definition "{test_definition_update}" --overwrite true', checks=[ + self.check("[slug]", "['{definition_slug}']")]).get_output_in_json() + self.assertTrue(response_update["version"] == response_create["version"] + 1) + + response_list = self.cmd('grafana dashboard list -g {rg} -n {name}').get_output_in_json() + self.assertTrue(len(response_list) > 0) + + self.cmd('grafana dashboard delete -g {rg} -n {name} --dashboard "{dashboard_uid}"') + response_delete = self.cmd('grafana dashboard list -g {rg} -n {name}').get_output_in_json() + self.assertTrue(len(response_delete) == len(response_list) - 1) + + # Close-out Instance + self.cmd('grafana delete -g {rg} -n {name} --yes') + final_count = len(self.cmd('grafana list').get_output_in_json()) + self.assertTrue(final_count, count - 1) + + + def _get_signed_in_user(self): + account_info = self.cmd('account show').get_output_in_json() + if account_info['user']['type'] == 'user': + return account_info['user']['name'] + return None \ No newline at end of file diff --git a/src/amg/azext_amg/vendored_sdks/__init__.py b/src/amg/azext_amg/vendored_sdks/__init__.py index df8a6cb70ab..1cdb782a669 100644 --- a/src/amg/azext_amg/vendored_sdks/__init__.py +++ b/src/amg/azext_amg/vendored_sdks/__init__.py @@ -10,9 +10,14 @@ from ._version import VERSION __version__ = VERSION + +try: + from ._patch import __all__ as _patch_all + from ._patch import * # type: ignore # pylint: disable=unused-wildcard-import +except ImportError: + _patch_all = [] +from ._patch import patch_sdk as _patch_sdk __all__ = ['DashboardManagementClient'] +__all__.extend([p for p in _patch_all if p not in __all__]) -# `._patch.py` is used for handwritten extensions to the generated code -# Example: https://github.com/Azure/azure-sdk-for-python/blob/main/doc/dev/customize_code/how-to-patch-sdk-code.md -from ._patch import patch_sdk -patch_sdk() +_patch_sdk() diff --git a/src/amg/azext_amg/vendored_sdks/_configuration.py b/src/amg/azext_amg/vendored_sdks/_configuration.py index 08abd2ffed1..2b30d439329 100644 --- a/src/amg/azext_amg/vendored_sdks/_configuration.py +++ b/src/amg/azext_amg/vendored_sdks/_configuration.py @@ -19,7 +19,7 @@ from azure.core.credentials import TokenCredential -class DashboardManagementClientConfiguration(Configuration): +class DashboardManagementClientConfiguration(Configuration): # pylint: disable=too-many-instance-attributes """Configuration for DashboardManagementClient. Note that all parameters used to create this instance are saved as instance @@ -27,8 +27,11 @@ class DashboardManagementClientConfiguration(Configuration): :param credential: Credential needed for the client to connect to Azure. :type credential: ~azure.core.credentials.TokenCredential - :param subscription_id: Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. + :param subscription_id: The ID of the target subscription. :type subscription_id: str + :keyword api_version: Api Version. Default value is "2022-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str """ def __init__( @@ -38,6 +41,8 @@ def __init__( **kwargs: Any ) -> None: super(DashboardManagementClientConfiguration, self).__init__(**kwargs) + api_version = kwargs.pop('api_version', "2022-08-01") # type: str + if credential is None: raise ValueError("Parameter 'credential' must not be None.") if subscription_id is None: @@ -45,7 +50,7 @@ def __init__( self.credential = credential self.subscription_id = subscription_id - self.api_version = "2021-09-01-preview" + self.api_version = api_version self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default']) kwargs.setdefault('sdk_moniker', 'mgmt-dashboard/{}'.format(VERSION)) self._configure(**kwargs) diff --git a/src/amg/azext_amg/vendored_sdks/_dashboard_management_client.py b/src/amg/azext_amg/vendored_sdks/_dashboard_management_client.py index 4401d7f476b..90fa07ca39d 100644 --- a/src/amg/azext_amg/vendored_sdks/_dashboard_management_client.py +++ b/src/amg/azext_amg/vendored_sdks/_dashboard_management_client.py @@ -7,15 +7,16 @@ # -------------------------------------------------------------------------- from copy import deepcopy -from typing import Any, Optional, TYPE_CHECKING +from typing import Any, TYPE_CHECKING + +from msrest import Deserializer, Serializer from azure.core.rest import HttpRequest, HttpResponse from azure.mgmt.core import ARMPipelineClient -from msrest import Deserializer, Serializer from . import models from ._configuration import DashboardManagementClientConfiguration -from .operations import GrafanaOperations, Operations +from .operations import GrafanaOperations, Operations, PrivateEndpointConnectionsOperations, PrivateLinkResourcesOperations if TYPE_CHECKING: # pylint: disable=unused-import,ungrouped-imports @@ -25,16 +26,23 @@ class DashboardManagementClient: """The Microsoft.Dashboard Rest API spec. :ivar operations: Operations operations - :vartype operations: dashboard_management_client.operations.Operations + :vartype operations: azure.mgmt.dashboard.operations.Operations :ivar grafana: GrafanaOperations operations - :vartype grafana: dashboard_management_client.operations.GrafanaOperations + :vartype grafana: azure.mgmt.dashboard.operations.GrafanaOperations + :ivar private_endpoint_connections: PrivateEndpointConnectionsOperations operations + :vartype private_endpoint_connections: + azure.mgmt.dashboard.operations.PrivateEndpointConnectionsOperations + :ivar private_link_resources: PrivateLinkResourcesOperations operations + :vartype private_link_resources: azure.mgmt.dashboard.operations.PrivateLinkResourcesOperations :param credential: Credential needed for the client to connect to Azure. :type credential: ~azure.core.credentials.TokenCredential - :param subscription_id: Gets subscription credentials which uniquely identify Microsoft Azure - subscription. The subscription ID forms part of the URI for every service call. + :param subscription_id: The ID of the target subscription. :type subscription_id: str - :param base_url: Service URL. Default value is ''. + :param base_url: Service URL. Default value is "https://management.azure.com". :type base_url: str + :keyword api_version: Api Version. Default value is "2022-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. """ @@ -43,7 +51,7 @@ def __init__( self, credential: "TokenCredential", subscription_id: str, - base_url: str = "", + base_url: str = "https://management.azure.com", **kwargs: Any ) -> None: self._config = DashboardManagementClientConfiguration(credential=credential, subscription_id=subscription_id, **kwargs) @@ -53,13 +61,23 @@ def __init__( self._serialize = Serializer(client_models) self._deserialize = Deserializer(client_models) self._serialize.client_side_validation = False - self.operations = Operations(self._client, self._config, self._serialize, self._deserialize) - self.grafana = GrafanaOperations(self._client, self._config, self._serialize, self._deserialize) + self.operations = Operations( + self._client, self._config, self._serialize, self._deserialize + ) + self.grafana = GrafanaOperations( + self._client, self._config, self._serialize, self._deserialize + ) + self.private_endpoint_connections = PrivateEndpointConnectionsOperations( + self._client, self._config, self._serialize, self._deserialize + ) + self.private_link_resources = PrivateLinkResourcesOperations( + self._client, self._config, self._serialize, self._deserialize + ) def _send_request( self, - request, # type: HttpRequest + request: HttpRequest, **kwargs: Any ) -> HttpResponse: """Runs the network request through the client's chained policies. diff --git a/src/amg/azext_amg/vendored_sdks/aio/__init__.py b/src/amg/azext_amg/vendored_sdks/aio/__init__.py index 30cf3e032d9..567e0d55d57 100644 --- a/src/amg/azext_amg/vendored_sdks/aio/__init__.py +++ b/src/amg/azext_amg/vendored_sdks/aio/__init__.py @@ -7,9 +7,14 @@ # -------------------------------------------------------------------------- from ._dashboard_management_client import DashboardManagementClient + +try: + from ._patch import __all__ as _patch_all + from ._patch import * # type: ignore # pylint: disable=unused-wildcard-import +except ImportError: + _patch_all = [] +from ._patch import patch_sdk as _patch_sdk __all__ = ['DashboardManagementClient'] +__all__.extend([p for p in _patch_all if p not in __all__]) -# `._patch.py` is used for handwritten extensions to the generated code -# Example: https://github.com/Azure/azure-sdk-for-python/blob/main/doc/dev/customize_code/how-to-patch-sdk-code.md -from ._patch import patch_sdk -patch_sdk() +_patch_sdk() diff --git a/src/amg/azext_amg/vendored_sdks/aio/_configuration.py b/src/amg/azext_amg/vendored_sdks/aio/_configuration.py index c8c1228bcc4..ac8bc6ad3e8 100644 --- a/src/amg/azext_amg/vendored_sdks/aio/_configuration.py +++ b/src/amg/azext_amg/vendored_sdks/aio/_configuration.py @@ -19,7 +19,7 @@ from azure.core.credentials_async import AsyncTokenCredential -class DashboardManagementClientConfiguration(Configuration): +class DashboardManagementClientConfiguration(Configuration): # pylint: disable=too-many-instance-attributes """Configuration for DashboardManagementClient. Note that all parameters used to create this instance are saved as instance @@ -27,8 +27,11 @@ class DashboardManagementClientConfiguration(Configuration): :param credential: Credential needed for the client to connect to Azure. :type credential: ~azure.core.credentials_async.AsyncTokenCredential - :param subscription_id: Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. + :param subscription_id: The ID of the target subscription. :type subscription_id: str + :keyword api_version: Api Version. Default value is "2022-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str """ def __init__( @@ -38,6 +41,8 @@ def __init__( **kwargs: Any ) -> None: super(DashboardManagementClientConfiguration, self).__init__(**kwargs) + api_version = kwargs.pop('api_version', "2022-08-01") # type: str + if credential is None: raise ValueError("Parameter 'credential' must not be None.") if subscription_id is None: @@ -45,7 +50,7 @@ def __init__( self.credential = credential self.subscription_id = subscription_id - self.api_version = "2021-09-01-preview" + self.api_version = api_version self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default']) kwargs.setdefault('sdk_moniker', 'mgmt-dashboard/{}'.format(VERSION)) self._configure(**kwargs) diff --git a/src/amg/azext_amg/vendored_sdks/aio/_dashboard_management_client.py b/src/amg/azext_amg/vendored_sdks/aio/_dashboard_management_client.py index 63d918012b1..1d59ec7ad1d 100644 --- a/src/amg/azext_amg/vendored_sdks/aio/_dashboard_management_client.py +++ b/src/amg/azext_amg/vendored_sdks/aio/_dashboard_management_client.py @@ -7,15 +7,16 @@ # -------------------------------------------------------------------------- from copy import deepcopy -from typing import Any, Awaitable, Optional, TYPE_CHECKING +from typing import Any, Awaitable, TYPE_CHECKING + +from msrest import Deserializer, Serializer from azure.core.rest import AsyncHttpResponse, HttpRequest from azure.mgmt.core import AsyncARMPipelineClient -from msrest import Deserializer, Serializer from .. import models from ._configuration import DashboardManagementClientConfiguration -from .operations import GrafanaOperations, Operations +from .operations import GrafanaOperations, Operations, PrivateEndpointConnectionsOperations, PrivateLinkResourcesOperations if TYPE_CHECKING: # pylint: disable=unused-import,ungrouped-imports @@ -25,16 +26,24 @@ class DashboardManagementClient: """The Microsoft.Dashboard Rest API spec. :ivar operations: Operations operations - :vartype operations: dashboard_management_client.aio.operations.Operations + :vartype operations: azure.mgmt.dashboard.aio.operations.Operations :ivar grafana: GrafanaOperations operations - :vartype grafana: dashboard_management_client.aio.operations.GrafanaOperations + :vartype grafana: azure.mgmt.dashboard.aio.operations.GrafanaOperations + :ivar private_endpoint_connections: PrivateEndpointConnectionsOperations operations + :vartype private_endpoint_connections: + azure.mgmt.dashboard.aio.operations.PrivateEndpointConnectionsOperations + :ivar private_link_resources: PrivateLinkResourcesOperations operations + :vartype private_link_resources: + azure.mgmt.dashboard.aio.operations.PrivateLinkResourcesOperations :param credential: Credential needed for the client to connect to Azure. :type credential: ~azure.core.credentials_async.AsyncTokenCredential - :param subscription_id: Gets subscription credentials which uniquely identify Microsoft Azure - subscription. The subscription ID forms part of the URI for every service call. + :param subscription_id: The ID of the target subscription. :type subscription_id: str - :param base_url: Service URL. Default value is ''. + :param base_url: Service URL. Default value is "https://management.azure.com". :type base_url: str + :keyword api_version: Api Version. Default value is "2022-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. """ @@ -43,7 +52,7 @@ def __init__( self, credential: "AsyncTokenCredential", subscription_id: str, - base_url: str = "", + base_url: str = "https://management.azure.com", **kwargs: Any ) -> None: self._config = DashboardManagementClientConfiguration(credential=credential, subscription_id=subscription_id, **kwargs) @@ -53,8 +62,18 @@ def __init__( self._serialize = Serializer(client_models) self._deserialize = Deserializer(client_models) self._serialize.client_side_validation = False - self.operations = Operations(self._client, self._config, self._serialize, self._deserialize) - self.grafana = GrafanaOperations(self._client, self._config, self._serialize, self._deserialize) + self.operations = Operations( + self._client, self._config, self._serialize, self._deserialize + ) + self.grafana = GrafanaOperations( + self._client, self._config, self._serialize, self._deserialize + ) + self.private_endpoint_connections = PrivateEndpointConnectionsOperations( + self._client, self._config, self._serialize, self._deserialize + ) + self.private_link_resources = PrivateLinkResourcesOperations( + self._client, self._config, self._serialize, self._deserialize + ) def _send_request( diff --git a/src/amg/azext_amg/vendored_sdks/aio/operations/__init__.py b/src/amg/azext_amg/vendored_sdks/aio/operations/__init__.py index 81c85b3399f..84f1e6551d9 100644 --- a/src/amg/azext_amg/vendored_sdks/aio/operations/__init__.py +++ b/src/amg/azext_amg/vendored_sdks/aio/operations/__init__.py @@ -8,8 +8,17 @@ from ._operations import Operations from ._grafana_operations import GrafanaOperations +from ._private_endpoint_connections_operations import PrivateEndpointConnectionsOperations +from ._private_link_resources_operations import PrivateLinkResourcesOperations +from ._patch import __all__ as _patch_all +from ._patch import * # type: ignore # pylint: disable=unused-wildcard-import +from ._patch import patch_sdk as _patch_sdk __all__ = [ 'Operations', 'GrafanaOperations', + 'PrivateEndpointConnectionsOperations', + 'PrivateLinkResourcesOperations', ] +__all__.extend([p for p in _patch_all if p not in __all__]) +_patch_sdk() \ No newline at end of file diff --git a/src/amg/azext_amg/vendored_sdks/aio/operations/_grafana_operations.py b/src/amg/azext_amg/vendored_sdks/aio/operations/_grafana_operations.py index e6f4512da87..a96ea35a5a4 100644 --- a/src/amg/azext_amg/vendored_sdks/aio/operations/_grafana_operations.py +++ b/src/amg/azext_amg/vendored_sdks/aio/operations/_grafana_operations.py @@ -1,3 +1,4 @@ +# pylint: disable=too-many-lines # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. @@ -5,9 +6,7 @@ # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -import functools -from typing import Any, AsyncIterable, Callable, Dict, Generic, Optional, TypeVar, Union -import warnings +from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar, Union, cast from azure.core.async_paging import AsyncItemPaged, AsyncList from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error @@ -17,6 +16,7 @@ from azure.core.rest import HttpRequest from azure.core.tracing.decorator import distributed_trace from azure.core.tracing.decorator_async import distributed_trace_async +from azure.core.utils import case_insensitive_dict from azure.mgmt.core.exceptions import ARMErrorFormat from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling @@ -27,71 +27,80 @@ ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] class GrafanaOperations: - """GrafanaOperations async operations. - - You should not instantiate this class directly. Instead, you should create a Client instance that - instantiates it for you and attaches it as an attribute. + """ + .. warning:: + **DO NOT** instantiate this class directly. - :ivar models: Alias to model classes used in this operation group. - :type models: ~dashboard_management_client.models - :param client: Client for service requests. - :param config: Configuration of service client. - :param serializer: An object model serializer. - :param deserializer: An object model deserializer. + Instead, you should access the following operations through + :class:`~azure.mgmt.dashboard.aio.DashboardManagementClient`'s + :attr:`grafana` attribute. """ models = _models - def __init__(self, client, config, serializer, deserializer) -> None: - self._client = client - self._serialize = serializer - self._deserialize = deserializer - self._config = config + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client = input_args.pop(0) if input_args else kwargs.pop("client") + self._config = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer") + @distributed_trace def list( self, **kwargs: Any - ) -> AsyncIterable["_models.GrafanaResourceListResponse"]: + ) -> AsyncIterable[_models.ManagedGrafanaListResponse]: """List all resources of workspaces for Grafana under the specified subscription. List all resources of workspaces for Grafana under the specified subscription. :keyword callable cls: A custom type or function that will be passed the direct response - :return: An iterator like instance of either GrafanaResourceListResponse or the result of + :return: An iterator like instance of either ManagedGrafanaListResponse or the result of cls(response) :rtype: - ~azure.core.async_paging.AsyncItemPaged[~dashboard_management_client.models.GrafanaResourceListResponse] + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.dashboard.models.ManagedGrafanaListResponse] :raises: ~azure.core.exceptions.HttpResponseError """ - cls = kwargs.pop('cls', None) # type: ClsType["_models.GrafanaResourceListResponse"] + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + cls = kwargs.pop('cls', None) # type: ClsType[_models.ManagedGrafanaListResponse] + error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } - error_map.update(kwargs.pop('error_map', {})) + error_map.update(kwargs.pop('error_map', {}) or {}) def prepare_request(next_link=None): if not next_link: request = build_list_request( subscription_id=self._config.subscription_id, + api_version=api_version, template_url=self.list.metadata['url'], + headers=_headers, + params=_params, ) request = _convert_request(request) - request.url = self._client.format_url(request.url) + request.url = self._client.format_url(request.url) # type: ignore else: request = build_list_request( subscription_id=self._config.subscription_id, + api_version=api_version, template_url=next_link, + headers=_headers, + params=_params, ) request = _convert_request(request) - request.url = self._client.format_url(request.url) + request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" return request async def extract_data(pipeline_response): - deserialized = self._deserialize("GrafanaResourceListResponse", pipeline_response) + deserialized = self._deserialize("ManagedGrafanaListResponse", pipeline_response) list_of_elem = deserialized.value if cls: list_of_elem = cls(list_of_elem) @@ -100,7 +109,11 @@ async def extract_data(pipeline_response): async def get_next(next_link=None): request = prepare_request(next_link) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -114,14 +127,14 @@ async def get_next(next_link=None): return AsyncItemPaged( get_next, extract_data ) - list.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Dashboard/grafana'} # type: ignore + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Dashboard/grafana"} # type: ignore @distributed_trace def list_by_resource_group( self, resource_group_name: str, **kwargs: Any - ) -> AsyncIterable["_models.GrafanaResourceListResponse"]: + ) -> AsyncIterable[_models.ManagedGrafanaListResponse]: """List all resources of workspaces for Grafana under the specified resource group. List all resources of workspaces for Grafana under the specified resource group. @@ -129,42 +142,53 @@ def list_by_resource_group( :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :keyword callable cls: A custom type or function that will be passed the direct response - :return: An iterator like instance of either GrafanaResourceListResponse or the result of + :return: An iterator like instance of either ManagedGrafanaListResponse or the result of cls(response) :rtype: - ~azure.core.async_paging.AsyncItemPaged[~dashboard_management_client.models.GrafanaResourceListResponse] + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.dashboard.models.ManagedGrafanaListResponse] :raises: ~azure.core.exceptions.HttpResponseError """ - cls = kwargs.pop('cls', None) # type: ClsType["_models.GrafanaResourceListResponse"] + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + cls = kwargs.pop('cls', None) # type: ClsType[_models.ManagedGrafanaListResponse] + error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } - error_map.update(kwargs.pop('error_map', {})) + error_map.update(kwargs.pop('error_map', {}) or {}) def prepare_request(next_link=None): if not next_link: request = build_list_by_resource_group_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, + api_version=api_version, template_url=self.list_by_resource_group.metadata['url'], + headers=_headers, + params=_params, ) request = _convert_request(request) - request.url = self._client.format_url(request.url) + request.url = self._client.format_url(request.url) # type: ignore else: request = build_list_by_resource_group_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, + api_version=api_version, template_url=next_link, + headers=_headers, + params=_params, ) request = _convert_request(request) - request.url = self._client.format_url(request.url) + request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" return request async def extract_data(pipeline_response): - deserialized = self._deserialize("GrafanaResourceListResponse", pipeline_response) + deserialized = self._deserialize("ManagedGrafanaListResponse", pipeline_response) list_of_elem = deserialized.value if cls: list_of_elem = cls(list_of_elem) @@ -173,7 +197,11 @@ async def extract_data(pipeline_response): async def get_next(next_link=None): request = prepare_request(next_link) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -187,7 +215,7 @@ async def get_next(next_link=None): return AsyncItemPaged( get_next, extract_data ) - list_by_resource_group.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana'} # type: ignore + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana"} # type: ignore @distributed_trace_async async def get( @@ -195,37 +223,49 @@ async def get( resource_group_name: str, workspace_name: str, **kwargs: Any - ) -> "_models.GrafanaResource": + ) -> _models.ManagedGrafana: """Get the properties of a specific workspace for Grafana resource. Get the properties of a specific workspace for Grafana resource. :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str - :param workspace_name: The name of Azure Managed Workspace for Grafana. + :param workspace_name: The workspace name of Azure Managed Grafana. :type workspace_name: str :keyword callable cls: A custom type or function that will be passed the direct response - :return: GrafanaResource, or the result of cls(response) - :rtype: ~dashboard_management_client.models.GrafanaResource + :return: ManagedGrafana, or the result of cls(response) + :rtype: ~azure.mgmt.dashboard.models.ManagedGrafana :raises: ~azure.core.exceptions.HttpResponseError """ - cls = kwargs.pop('cls', None) # type: ClsType["_models.GrafanaResource"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } - error_map.update(kwargs.pop('error_map', {})) + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + cls = kwargs.pop('cls', None) # type: ClsType[_models.ManagedGrafana] request = build_get_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, workspace_name=workspace_name, + api_version=api_version, template_url=self.get.metadata['url'], + headers=_headers, + params=_params, ) request = _convert_request(request) - request.url = self._client.format_url(request.url) + request.url = self._client.format_url(request.url) # type: ignore - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -233,48 +273,56 @@ async def get( error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - deserialized = self._deserialize('GrafanaResource', pipeline_response) + deserialized = self._deserialize('ManagedGrafana', pipeline_response) if cls: return cls(pipeline_response, deserialized, {}) return deserialized - get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}'} # type: ignore + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}"} # type: ignore async def _create_initial( self, resource_group_name: str, workspace_name: str, - body: Optional["_models.GrafanaResource"] = None, + request_body_parameters: _models.ManagedGrafana, **kwargs: Any - ) -> "_models.GrafanaResource": - cls = kwargs.pop('cls', None) # type: ClsType["_models.GrafanaResource"] + ) -> _models.ManagedGrafana: error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } - error_map.update(kwargs.pop('error_map', {})) + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str] + cls = kwargs.pop('cls', None) # type: ClsType[_models.ManagedGrafana] - if body is not None: - _json = self._serialize.body(body, 'GrafanaResource') - else: - _json = None + _json = self._serialize.body(request_body_parameters, 'ManagedGrafana') request = build_create_request_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, workspace_name=workspace_name, + api_version=api_version, content_type=content_type, json=_json, template_url=self._create_initial.metadata['url'], + headers=_headers, + params=_params, ) request = _convert_request(request) - request.url = self._client.format_url(request.url) + request.url = self._client.format_url(request.url) # type: ignore - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200, 201]: @@ -282,17 +330,17 @@ async def _create_initial( raise HttpResponseError(response=response, error_format=ARMErrorFormat) if response.status_code == 200: - deserialized = self._deserialize('GrafanaResource', pipeline_response) + deserialized = self._deserialize('ManagedGrafana', pipeline_response) if response.status_code == 201: - deserialized = self._deserialize('GrafanaResource', pipeline_response) + deserialized = self._deserialize('ManagedGrafana', pipeline_response) if cls: return cls(pipeline_response, deserialized, {}) return deserialized - _create_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}'} # type: ignore + _create_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}"} # type: ignore @distributed_trace_async @@ -300,9 +348,9 @@ async def begin_create( self, resource_group_name: str, workspace_name: str, - body: Optional["_models.GrafanaResource"] = None, + request_body_parameters: _models.ManagedGrafana, **kwargs: Any - ) -> AsyncLROPoller["_models.GrafanaResource"]: + ) -> AsyncLROPoller[_models.ManagedGrafana]: """Create or update a workspace for Grafana resource. This API is idempotent, so user can either create a new grafana or update an existing grafana. @@ -311,10 +359,10 @@ async def begin_create( :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str - :param workspace_name: The name of Azure Managed Workspace for Grafana. + :param workspace_name: The workspace name of Azure Managed Grafana. :type workspace_name: str - :param body: - :type body: ~dashboard_management_client.models.GrafanaResource + :param request_body_parameters: + :type request_body_parameters: ~azure.mgmt.dashboard.models.ManagedGrafana :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for @@ -323,40 +371,52 @@ async def begin_create( :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. - :return: An instance of AsyncLROPoller that returns either GrafanaResource or the result of + :return: An instance of AsyncLROPoller that returns either ManagedGrafana or the result of cls(response) - :rtype: ~azure.core.polling.AsyncLROPoller[~dashboard_management_client.models.GrafanaResource] + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.dashboard.models.ManagedGrafana] :raises: ~azure.core.exceptions.HttpResponseError """ - content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.AsyncPollingMethod] - cls = kwargs.pop('cls', None) # type: ClsType["_models.GrafanaResource"] + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str] + cls = kwargs.pop('cls', None) # type: ClsType[_models.ManagedGrafana] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] lro_delay = kwargs.pop( 'polling_interval', self._config.polling_interval ) cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] if cont_token is None: - raw_result = await self._create_initial( + raw_result = await self._create_initial( # type: ignore resource_group_name=resource_group_name, workspace_name=workspace_name, - body=body, + request_body_parameters=request_body_parameters, + api_version=api_version, content_type=content_type, cls=lambda x,y,z: x, + headers=_headers, + params=_params, **kwargs ) kwargs.pop('error_map', None) def get_long_running_output(pipeline_response): - response = pipeline_response.http_response - deserialized = self._deserialize('GrafanaResource', pipeline_response) + deserialized = self._deserialize('ManagedGrafana', pipeline_response) if cls: return cls(pipeline_response, deserialized, {}) return deserialized - if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) - elif polling is False: polling_method = AsyncNoPolling() + if polling is True: + polling_method = cast(AsyncPollingMethod, AsyncARMPolling( + lro_delay, + lro_options={'final-state-via': 'azure-async-operation'}, + + **kwargs + )) # type: AsyncPollingMethod + elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) else: polling_method = polling if cont_token: return AsyncLROPoller.from_continuation_token( @@ -365,99 +425,122 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_create.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}'} # type: ignore + begin_create.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}"} # type: ignore @distributed_trace_async async def update( self, resource_group_name: str, workspace_name: str, - body: Optional["_models.GrafanaResourceUpdateParameters"] = None, + request_body_parameters: _models.ManagedGrafanaUpdateParameters, **kwargs: Any - ) -> "_models.GrafanaResource": + ) -> _models.ManagedGrafana: """Update a workspace for Grafana resource. Update a workspace for Grafana resource. :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str - :param workspace_name: The name of Azure Managed Workspace for Grafana. + :param workspace_name: The workspace name of Azure Managed Grafana. :type workspace_name: str - :param body: - :type body: ~dashboard_management_client.models.GrafanaResourceUpdateParameters + :param request_body_parameters: + :type request_body_parameters: ~azure.mgmt.dashboard.models.ManagedGrafanaUpdateParameters :keyword callable cls: A custom type or function that will be passed the direct response - :return: GrafanaResource, or the result of cls(response) - :rtype: ~dashboard_management_client.models.GrafanaResource + :return: ManagedGrafana, or the result of cls(response) + :rtype: ~azure.mgmt.dashboard.models.ManagedGrafana :raises: ~azure.core.exceptions.HttpResponseError """ - cls = kwargs.pop('cls', None) # type: ClsType["_models.GrafanaResource"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } - error_map.update(kwargs.pop('error_map', {})) + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str] + cls = kwargs.pop('cls', None) # type: ClsType[_models.ManagedGrafana] - if body is not None: - _json = self._serialize.body(body, 'GrafanaResourceUpdateParameters') - else: - _json = None + _json = self._serialize.body(request_body_parameters, 'ManagedGrafanaUpdateParameters') request = build_update_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, workspace_name=workspace_name, + api_version=api_version, content_type=content_type, json=_json, template_url=self.update.metadata['url'], + headers=_headers, + params=_params, ) request = _convert_request(request) - request.url = self._client.format_url(request.url) + request.url = self._client.format_url(request.url) # type: ignore - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response - if response.status_code not in [200]: + if response.status_code not in [200, 202]: map_error(status_code=response.status_code, response=response, error_map=error_map) error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - deserialized = self._deserialize('GrafanaResource', pipeline_response) + if response.status_code == 200: + deserialized = self._deserialize('ManagedGrafana', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('ManagedGrafana', pipeline_response) if cls: return cls(pipeline_response, deserialized, {}) return deserialized - update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}'} # type: ignore + update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}"} # type: ignore - async def _delete_initial( + async def _delete_initial( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, workspace_name: str, **kwargs: Any ) -> None: - cls = kwargs.pop('cls', None) # type: ClsType[None] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } - error_map.update(kwargs.pop('error_map', {})) + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + cls = kwargs.pop('cls', None) # type: ClsType[None] request = build_delete_request_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, workspace_name=workspace_name, + api_version=api_version, template_url=self._delete_initial.metadata['url'], + headers=_headers, + params=_params, ) request = _convert_request(request) - request.url = self._client.format_url(request.url) + request.url = self._client.format_url(request.url) # type: ignore - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200, 202, 204]: @@ -467,11 +550,11 @@ async def _delete_initial( if cls: return cls(pipeline_response, None, {}) - _delete_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}'} # type: ignore + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}"} # type: ignore @distributed_trace_async - async def begin_delete( + async def begin_delete( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, workspace_name: str, @@ -483,7 +566,7 @@ async def begin_delete( :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str - :param workspace_name: The name of Azure Managed Workspace for Grafana. + :param workspace_name: The workspace name of Azure Managed Grafana. :type workspace_name: str :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. @@ -497,18 +580,25 @@ async def begin_delete( :rtype: ~azure.core.polling.AsyncLROPoller[None] :raises: ~azure.core.exceptions.HttpResponseError """ - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.AsyncPollingMethod] + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str cls = kwargs.pop('cls', None) # type: ClsType[None] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] lro_delay = kwargs.pop( 'polling_interval', self._config.polling_interval ) cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] if cont_token is None: - raw_result = await self._delete_initial( + raw_result = await self._delete_initial( # type: ignore resource_group_name=resource_group_name, workspace_name=workspace_name, + api_version=api_version, cls=lambda x,y,z: x, + headers=_headers, + params=_params, **kwargs ) kwargs.pop('error_map', None) @@ -518,8 +608,14 @@ def get_long_running_output(pipeline_response): return cls(pipeline_response, None, {}) - if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) - elif polling is False: polling_method = AsyncNoPolling() + if polling is True: + polling_method = cast(AsyncPollingMethod, AsyncARMPolling( + lro_delay, + lro_options={'final-state-via': 'azure-async-operation'}, + + **kwargs + )) # type: AsyncPollingMethod + elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) else: polling_method = polling if cont_token: return AsyncLROPoller.from_continuation_token( @@ -528,7 +624,6 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}'} # type: ignore + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}"} # type: ignore diff --git a/src/amg/azext_amg/vendored_sdks/aio/operations/_operations.py b/src/amg/azext_amg/vendored_sdks/aio/operations/_operations.py index 91559e425d8..74d119b9cf8 100644 --- a/src/amg/azext_amg/vendored_sdks/aio/operations/_operations.py +++ b/src/amg/azext_amg/vendored_sdks/aio/operations/_operations.py @@ -1,3 +1,4 @@ +# pylint: disable=too-many-lines # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. @@ -5,9 +6,7 @@ # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -import functools -from typing import Any, AsyncIterable, Callable, Dict, Generic, Optional, TypeVar -import warnings +from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar from azure.core.async_paging import AsyncItemPaged, AsyncList from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error @@ -15,7 +14,7 @@ from azure.core.pipeline.transport import AsyncHttpResponse from azure.core.rest import HttpRequest from azure.core.tracing.decorator import distributed_trace -from azure.core.tracing.decorator_async import distributed_trace_async +from azure.core.utils import case_insensitive_dict from azure.mgmt.core.exceptions import ARMErrorFormat from ... import models as _models @@ -25,32 +24,30 @@ ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] class Operations: - """Operations async operations. - - You should not instantiate this class directly. Instead, you should create a Client instance that - instantiates it for you and attaches it as an attribute. + """ + .. warning:: + **DO NOT** instantiate this class directly. - :ivar models: Alias to model classes used in this operation group. - :type models: ~dashboard_management_client.models - :param client: Client for service requests. - :param config: Configuration of service client. - :param serializer: An object model serializer. - :param deserializer: An object model deserializer. + Instead, you should access the following operations through + :class:`~azure.mgmt.dashboard.aio.DashboardManagementClient`'s + :attr:`operations` attribute. """ models = _models - def __init__(self, client, config, serializer, deserializer) -> None: - self._client = client - self._serialize = serializer - self._deserialize = deserializer - self._config = config + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client = input_args.pop(0) if input_args else kwargs.pop("client") + self._config = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer") + @distributed_trace def list( self, **kwargs: Any - ) -> AsyncIterable["_models.OperationListResult"]: + ) -> AsyncIterable[_models.OperationListResult]: """List all available API operations provided by Microsoft.Dashboard. List all available API operations provided by Microsoft.Dashboard. @@ -58,30 +55,41 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either OperationListResult or the result of cls(response) :rtype: - ~azure.core.async_paging.AsyncItemPaged[~dashboard_management_client.models.OperationListResult] + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.dashboard.models.OperationListResult] :raises: ~azure.core.exceptions.HttpResponseError """ - cls = kwargs.pop('cls', None) # type: ClsType["_models.OperationListResult"] + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + cls = kwargs.pop('cls', None) # type: ClsType[_models.OperationListResult] + error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } - error_map.update(kwargs.pop('error_map', {})) + error_map.update(kwargs.pop('error_map', {}) or {}) def prepare_request(next_link=None): if not next_link: request = build_list_request( + api_version=api_version, template_url=self.list.metadata['url'], + headers=_headers, + params=_params, ) request = _convert_request(request) - request.url = self._client.format_url(request.url) + request.url = self._client.format_url(request.url) # type: ignore else: request = build_list_request( + api_version=api_version, template_url=next_link, + headers=_headers, + params=_params, ) request = _convert_request(request) - request.url = self._client.format_url(request.url) + request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" return request @@ -95,7 +103,11 @@ async def extract_data(pipeline_response): async def get_next(next_link=None): request = prepare_request(next_link) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -109,4 +121,4 @@ async def get_next(next_link=None): return AsyncItemPaged( get_next, extract_data ) - list.metadata = {'url': '/providers/Microsoft.Dashboard/operations'} # type: ignore + list.metadata = {'url': "/providers/Microsoft.Dashboard/operations"} # type: ignore diff --git a/src/amg/azext_amg/vendored_sdks/aio/operations/_patch.py b/src/amg/azext_amg/vendored_sdks/aio/operations/_patch.py new file mode 100644 index 00000000000..0ad201a8c58 --- /dev/null +++ b/src/amg/azext_amg/vendored_sdks/aio/operations/_patch.py @@ -0,0 +1,19 @@ +# ------------------------------------ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. +# ------------------------------------ +"""Customize generated code here. + +Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize +""" +from typing import List + +__all__: List[str] = [] # Add all objects you want publicly available to users at this package level + +def patch_sdk(): + """Do not remove from this file. + + `patch_sdk` is a last resort escape hatch that allows you to do customizations + you can't accomplish using the techniques described in + https://aka.ms/azsdk/python/dpcodegen/python/customize + """ diff --git a/src/amg/azext_amg/vendored_sdks/aio/operations/_private_endpoint_connections_operations.py b/src/amg/azext_amg/vendored_sdks/aio/operations/_private_endpoint_connections_operations.py new file mode 100644 index 00000000000..fd82b463527 --- /dev/null +++ b/src/amg/azext_amg/vendored_sdks/aio/operations/_private_endpoint_connections_operations.py @@ -0,0 +1,491 @@ +# pylint: disable=too-many-lines +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar, Union, cast + +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse +from azure.core.polling import AsyncLROPoller, AsyncNoPolling, AsyncPollingMethod +from azure.core.rest import HttpRequest +from azure.core.tracing.decorator import distributed_trace +from azure.core.tracing.decorator_async import distributed_trace_async +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling + +from ... import models as _models +from ..._vendor import _convert_request +from ...operations._private_endpoint_connections_operations import build_approve_request_initial, build_delete_request_initial, build_get_request, build_list_request +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + +class PrivateEndpointConnectionsOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.dashboard.aio.DashboardManagementClient`'s + :attr:`private_endpoint_connections` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client = input_args.pop(0) if input_args else kwargs.pop("client") + self._config = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + workspace_name: str, + private_endpoint_connection_name: str, + **kwargs: Any + ) -> _models.PrivateEndpointConnection: + """Get private endpoint connections. + + Get private endpoint connections. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param workspace_name: The workspace name of Azure Managed Grafana. + :type workspace_name: str + :param private_endpoint_connection_name: The private endpoint connection name of Azure Managed + Grafana. + :type private_endpoint_connection_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PrivateEndpointConnection, or the result of cls(response) + :rtype: ~azure.mgmt.dashboard.models.PrivateEndpointConnection + :raises: ~azure.core.exceptions.HttpResponseError + """ + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + cls = kwargs.pop('cls', None) # type: ClsType[_models.PrivateEndpointConnection] + + + request = build_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + workspace_name=workspace_name, + private_endpoint_connection_name=private_endpoint_connection_name, + api_version=api_version, + template_url=self.get.metadata['url'], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) # type: ignore + + pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PrivateEndpointConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}/privateEndpointConnections/{privateEndpointConnectionName}"} # type: ignore + + + async def _approve_initial( + self, + resource_group_name: str, + workspace_name: str, + private_endpoint_connection_name: str, + body: Optional[_models.PrivateEndpointConnection] = None, + **kwargs: Any + ) -> _models.PrivateEndpointConnection: + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str] + cls = kwargs.pop('cls', None) # type: ClsType[_models.PrivateEndpointConnection] + + if body is not None: + _json = self._serialize.body(body, 'PrivateEndpointConnection') + else: + _json = None + + request = build_approve_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + workspace_name=workspace_name, + private_endpoint_connection_name=private_endpoint_connection_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._approve_initial.metadata['url'], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) # type: ignore + + pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PrivateEndpointConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _approve_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}/privateEndpointConnections/{privateEndpointConnectionName}"} # type: ignore + + + @distributed_trace_async + async def begin_approve( + self, + resource_group_name: str, + workspace_name: str, + private_endpoint_connection_name: str, + body: Optional[_models.PrivateEndpointConnection] = None, + **kwargs: Any + ) -> AsyncLROPoller[_models.PrivateEndpointConnection]: + """Manual approve private endpoint connection. + + Manual approve private endpoint connection. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param workspace_name: The workspace name of Azure Managed Grafana. + :type workspace_name: str + :param private_endpoint_connection_name: The private endpoint connection name of Azure Managed + Grafana. + :type private_endpoint_connection_name: str + :param body: Default value is None. + :type body: ~azure.mgmt.dashboard.models.PrivateEndpointConnection + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either PrivateEndpointConnection or the + result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.dashboard.models.PrivateEndpointConnection] + :raises: ~azure.core.exceptions.HttpResponseError + """ + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str] + cls = kwargs.pop('cls', None) # type: ClsType[_models.PrivateEndpointConnection] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._approve_initial( # type: ignore + resource_group_name=resource_group_name, + workspace_name=workspace_name, + private_endpoint_connection_name=private_endpoint_connection_name, + body=body, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + headers=_headers, + params=_params, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('PrivateEndpointConnection', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: + polling_method = cast(AsyncPollingMethod, AsyncARMPolling( + lro_delay, + lro_options={'final-state-via': 'azure-async-operation'}, + + **kwargs + )) # type: AsyncPollingMethod + elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_approve.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}/privateEndpointConnections/{privateEndpointConnectionName}"} # type: ignore + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + workspace_name: str, + private_endpoint_connection_name: str, + **kwargs: Any + ) -> None: + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + cls = kwargs.pop('cls', None) # type: ClsType[None] + + + request = build_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + workspace_name=workspace_name, + private_endpoint_connection_name=private_endpoint_connection_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) # type: ignore + + pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}/privateEndpointConnections/{privateEndpointConnectionName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + workspace_name: str, + private_endpoint_connection_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Delete private endpoint connection. + + Delete private endpoint connection. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param workspace_name: The workspace name of Azure Managed Grafana. + :type workspace_name: str + :param private_endpoint_connection_name: The private endpoint connection name of Azure Managed + Grafana. + :type private_endpoint_connection_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + cls = kwargs.pop('cls', None) # type: ClsType[None] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( # type: ignore + resource_group_name=resource_group_name, + workspace_name=workspace_name, + private_endpoint_connection_name=private_endpoint_connection_name, + api_version=api_version, + cls=lambda x,y,z: x, + headers=_headers, + params=_params, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: + polling_method = cast(AsyncPollingMethod, AsyncARMPolling( + lro_delay, + lro_options={'final-state-via': 'azure-async-operation'}, + + **kwargs + )) # type: AsyncPollingMethod + elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}/privateEndpointConnections/{privateEndpointConnectionName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + workspace_name: str, + **kwargs: Any + ) -> AsyncIterable[_models.PrivateEndpointConnectionListResult]: + """Get private endpoint connection. + + Get private endpoint connection. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param workspace_name: The workspace name of Azure Managed Grafana. + :type workspace_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PrivateEndpointConnectionListResult or the result + of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.dashboard.models.PrivateEndpointConnectionListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + cls = kwargs.pop('cls', None) # type: ClsType[_models.PrivateEndpointConnectionListResult] + + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + def prepare_request(next_link=None): + if not next_link: + + request = build_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + workspace_name=workspace_name, + api_version=api_version, + template_url=self.list.metadata['url'], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) # type: ignore + + else: + + request = build_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + workspace_name=workspace_name, + api_version=api_version, + template_url=next_link, + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) # type: ignore + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("PrivateEndpointConnectionListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}/privateEndpointConnections"} # type: ignore diff --git a/src/amg/azext_amg/vendored_sdks/aio/operations/_private_link_resources_operations.py b/src/amg/azext_amg/vendored_sdks/aio/operations/_private_link_resources_operations.py new file mode 100644 index 00000000000..92a3dc7e65c --- /dev/null +++ b/src/amg/azext_amg/vendored_sdks/aio/operations/_private_link_resources_operations.py @@ -0,0 +1,208 @@ +# pylint: disable=too-many-lines +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar + +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse +from azure.core.rest import HttpRequest +from azure.core.tracing.decorator import distributed_trace +from azure.core.tracing.decorator_async import distributed_trace_async +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat + +from ... import models as _models +from ..._vendor import _convert_request +from ...operations._private_link_resources_operations import build_get_request, build_list_request +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + +class PrivateLinkResourcesOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.dashboard.aio.DashboardManagementClient`'s + :attr:`private_link_resources` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client = input_args.pop(0) if input_args else kwargs.pop("client") + self._config = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + + @distributed_trace + def list( + self, + resource_group_name: str, + workspace_name: str, + **kwargs: Any + ) -> AsyncIterable[_models.PrivateLinkResourceListResult]: + """List all private link resources information for this grafana resource. + + List all private link resources information for this grafana resource. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param workspace_name: The workspace name of Azure Managed Grafana. + :type workspace_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PrivateLinkResourceListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.dashboard.models.PrivateLinkResourceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + cls = kwargs.pop('cls', None) # type: ClsType[_models.PrivateLinkResourceListResult] + + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + def prepare_request(next_link=None): + if not next_link: + + request = build_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + workspace_name=workspace_name, + api_version=api_version, + template_url=self.list.metadata['url'], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) # type: ignore + + else: + + request = build_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + workspace_name=workspace_name, + api_version=api_version, + template_url=next_link, + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) # type: ignore + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("PrivateLinkResourceListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}/privateLinkResources"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + workspace_name: str, + private_link_resource_name: str, + **kwargs: Any + ) -> _models.PrivateLinkResource: + """Get specific private link resource information for this grafana resource. + + Get specific private link resource information for this grafana resource. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param workspace_name: The workspace name of Azure Managed Grafana. + :type workspace_name: str + :param private_link_resource_name: + :type private_link_resource_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PrivateLinkResource, or the result of cls(response) + :rtype: ~azure.mgmt.dashboard.models.PrivateLinkResource + :raises: ~azure.core.exceptions.HttpResponseError + """ + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + cls = kwargs.pop('cls', None) # type: ClsType[_models.PrivateLinkResource] + + + request = build_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + workspace_name=workspace_name, + private_link_resource_name=private_link_resource_name, + api_version=api_version, + template_url=self.get.metadata['url'], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) # type: ignore + + pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PrivateLinkResource', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}/privateLinkResources/{privateLinkResourceName}"} # type: ignore + diff --git a/src/amg/azext_amg/vendored_sdks/models/__init__.py b/src/amg/azext_amg/vendored_sdks/models/__init__.py index f79c863e098..be1dc20fd25 100644 --- a/src/amg/azext_amg/vendored_sdks/models/__init__.py +++ b/src/amg/azext_amg/vendored_sdks/models/__init__.py @@ -9,14 +9,22 @@ from ._models_py3 import ErrorAdditionalInfo from ._models_py3 import ErrorDetail from ._models_py3 import ErrorResponse -from ._models_py3 import GrafanaResource -from ._models_py3 import GrafanaResourceListResponse -from ._models_py3 import GrafanaResourceProperties -from ._models_py3 import GrafanaResourceUpdateParameters -from ._models_py3 import ManagedIdentity +from ._models_py3 import ManagedGrafana +from ._models_py3 import ManagedGrafanaListResponse +from ._models_py3 import ManagedGrafanaProperties +from ._models_py3 import ManagedGrafanaPropertiesUpdateParameters +from ._models_py3 import ManagedGrafanaUpdateParameters +from ._models_py3 import ManagedServiceIdentity +from ._models_py3 import Operation from ._models_py3 import OperationDisplay from ._models_py3 import OperationListResult -from ._models_py3 import OperationResult +from ._models_py3 import PrivateEndpoint +from ._models_py3 import PrivateEndpointConnection +from ._models_py3 import PrivateEndpointConnectionListResult +from ._models_py3 import PrivateLinkResource +from ._models_py3 import PrivateLinkResourceListResult +from ._models_py3 import PrivateLinkServiceConnectionState +from ._models_py3 import Resource from ._models_py3 import ResourceSku from ._models_py3 import SystemData from ._models_py3 import UserAssignedIdentity @@ -24,34 +32,56 @@ from ._dashboard_management_client_enums import ( ActionType, + ApiKey, + AutoGeneratedDomainNameLabelScope, CreatedByType, - IdentityType, - LastModifiedByType, + DeterministicOutboundIP, + ManagedServiceIdentityType, Origin, + PrivateEndpointConnectionProvisioningState, + PrivateEndpointServiceConnectionStatus, ProvisioningState, + PublicNetworkAccess, ZoneRedundancy, ) - +from ._patch import __all__ as _patch_all +from ._patch import * # type: ignore # pylint: disable=unused-wildcard-import +from ._patch import patch_sdk as _patch_sdk __all__ = [ 'ErrorAdditionalInfo', 'ErrorDetail', 'ErrorResponse', - 'GrafanaResource', - 'GrafanaResourceListResponse', - 'GrafanaResourceProperties', - 'GrafanaResourceUpdateParameters', - 'ManagedIdentity', + 'ManagedGrafana', + 'ManagedGrafanaListResponse', + 'ManagedGrafanaProperties', + 'ManagedGrafanaPropertiesUpdateParameters', + 'ManagedGrafanaUpdateParameters', + 'ManagedServiceIdentity', + 'Operation', 'OperationDisplay', 'OperationListResult', - 'OperationResult', + 'PrivateEndpoint', + 'PrivateEndpointConnection', + 'PrivateEndpointConnectionListResult', + 'PrivateLinkResource', + 'PrivateLinkResourceListResult', + 'PrivateLinkServiceConnectionState', + 'Resource', 'ResourceSku', 'SystemData', 'UserAssignedIdentity', 'ActionType', + 'ApiKey', + 'AutoGeneratedDomainNameLabelScope', 'CreatedByType', - 'IdentityType', - 'LastModifiedByType', + 'DeterministicOutboundIP', + 'ManagedServiceIdentityType', 'Origin', + 'PrivateEndpointConnectionProvisioningState', + 'PrivateEndpointServiceConnectionStatus', 'ProvisioningState', + 'PublicNetworkAccess', 'ZoneRedundancy', ] +__all__.extend([p for p in _patch_all if p not in __all__]) +_patch_sdk() \ No newline at end of file diff --git a/src/amg/azext_amg/vendored_sdks/models/_dashboard_management_client_enums.py b/src/amg/azext_amg/vendored_sdks/models/_dashboard_management_client_enums.py index bd3a3641b2d..393f74c8ba3 100644 --- a/src/amg/azext_amg/vendored_sdks/models/_dashboard_management_client_enums.py +++ b/src/amg/azext_amg/vendored_sdks/models/_dashboard_management_client_enums.py @@ -7,17 +7,27 @@ # -------------------------------------------------------------------------- from enum import Enum -from six import with_metaclass from azure.core import CaseInsensitiveEnumMeta -class ActionType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): - """Indicates the action type. "Internal" refers to actions that are for internal only APIs. +class ActionType(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Enum. Indicates the action type. "Internal" refers to actions that are for internal only APIs. """ INTERNAL = "Internal" -class CreatedByType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): +class ApiKey(str, Enum, metaclass=CaseInsensitiveEnumMeta): + + DISABLED = "Disabled" + ENABLED = "Enabled" + +class AutoGeneratedDomainNameLabelScope(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Scope for dns deterministic name hash calculation + """ + + TENANT_REUSE = "TenantReuse" + +class CreatedByType(str, Enum, metaclass=CaseInsensitiveEnumMeta): """The type of identity that created the resource. """ @@ -26,30 +36,48 @@ class CreatedByType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): MANAGED_IDENTITY = "ManagedIdentity" KEY = "Key" -class IdentityType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): - """The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set - of user assigned identities. The type 'None' will remove any identities from the resource. +class DeterministicOutboundIP(str, Enum, metaclass=CaseInsensitiveEnumMeta): + + DISABLED = "Disabled" + ENABLED = "Enabled" + +class ManagedServiceIdentityType(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Type of managed service identity (where both SystemAssigned and UserAssigned types are + allowed). """ NONE = "None" SYSTEM_ASSIGNED = "SystemAssigned" + USER_ASSIGNED = "UserAssigned" + SYSTEM_ASSIGNED_USER_ASSIGNED = "SystemAssigned,UserAssigned" -class LastModifiedByType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): - - USER = "User" - APPLICATION = "Application" - MANAGED_IDENTITY = "ManagedIdentity" - KEY = "Key" - -class Origin(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): - """The intended executor of the operation. +class Origin(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The intended executor of the operation; as in Resource Based Access Control (RBAC) and audit + logs UX. Default value is "user,system" """ USER = "user" SYSTEM = "system" USER_SYSTEM = "user,system" -class ProvisioningState(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): +class PrivateEndpointConnectionProvisioningState(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The current provisioning state. + """ + + SUCCEEDED = "Succeeded" + CREATING = "Creating" + DELETING = "Deleting" + FAILED = "Failed" + +class PrivateEndpointServiceConnectionStatus(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The private endpoint connection status. + """ + + PENDING = "Pending" + APPROVED = "Approved" + REJECTED = "Rejected" + +class ProvisioningState(str, Enum, metaclass=CaseInsensitiveEnumMeta): ACCEPTED = "Accepted" CREATING = "Creating" @@ -61,7 +89,14 @@ class ProvisioningState(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): DELETED = "Deleted" NOT_SPECIFIED = "NotSpecified" -class ZoneRedundancy(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): +class PublicNetworkAccess(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Indicate the state for enable or disable traffic over the public interface. + """ + + ENABLED = "Enabled" + DISABLED = "Disabled" + +class ZoneRedundancy(str, Enum, metaclass=CaseInsensitiveEnumMeta): DISABLED = "Disabled" ENABLED = "Enabled" diff --git a/src/amg/azext_amg/vendored_sdks/models/_models_py3.py b/src/amg/azext_amg/vendored_sdks/models/_models_py3.py index 0b72d973be7..d6240c8e140 100644 --- a/src/amg/azext_amg/vendored_sdks/models/_models_py3.py +++ b/src/amg/azext_amg/vendored_sdks/models/_models_py3.py @@ -7,12 +7,14 @@ # -------------------------------------------------------------------------- import datetime -from typing import Dict, List, Optional, Union +from typing import Dict, List, Optional, TYPE_CHECKING, Union from azure.core.exceptions import HttpResponseError import msrest.serialization -from ._dashboard_management_client_enums import * +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + import __init__ as _models class ErrorAdditionalInfo(msrest.serialization.Model): @@ -59,9 +61,9 @@ class ErrorDetail(msrest.serialization.Model): :ivar target: The error target. :vartype target: str :ivar details: The error details. - :vartype details: list[~dashboard_management_client.models.ErrorDetail] + :vartype details: list[~azure.mgmt.dashboard.models.ErrorDetail] :ivar additional_info: The error additional info. - :vartype additional_info: list[~dashboard_management_client.models.ErrorAdditionalInfo] + :vartype additional_info: list[~azure.mgmt.dashboard.models.ErrorAdditionalInfo] """ _validation = { @@ -98,7 +100,7 @@ class ErrorResponse(msrest.serialization.Model): """Common error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.). :ivar error: The error object. - :vartype error: ~dashboard_management_client.models.ErrorDetail + :vartype error: ~azure.mgmt.dashboard.models.ErrorDetail """ _attribute_map = { @@ -108,18 +110,18 @@ class ErrorResponse(msrest.serialization.Model): def __init__( self, *, - error: Optional["ErrorDetail"] = None, + error: Optional["_models.ErrorDetail"] = None, **kwargs ): """ :keyword error: The error object. - :paramtype error: ~dashboard_management_client.models.ErrorDetail + :paramtype error: ~azure.mgmt.dashboard.models.ErrorDetail """ super(ErrorResponse, self).__init__(**kwargs) self.error = error -class GrafanaResource(msrest.serialization.Model): +class ManagedGrafana(msrest.serialization.Model): """The grafana resource type. Variables are only populated by the server, and will be ignored when sending a request. @@ -131,13 +133,13 @@ class GrafanaResource(msrest.serialization.Model): :ivar type: The type of the grafana resource. :vartype type: str :ivar sku: The Sku of the grafana resource. - :vartype sku: ~dashboard_management_client.models.ResourceSku + :vartype sku: ~azure.mgmt.dashboard.models.ResourceSku :ivar properties: Properties specific to the grafana resource. - :vartype properties: ~dashboard_management_client.models.GrafanaResourceProperties + :vartype properties: ~azure.mgmt.dashboard.models.ManagedGrafanaProperties :ivar identity: The managed identity of the grafana resource. - :vartype identity: ~dashboard_management_client.models.ManagedIdentity + :vartype identity: ~azure.mgmt.dashboard.models.ManagedServiceIdentity :ivar system_data: The system meta data relating to this grafana resource. - :vartype system_data: ~dashboard_management_client.models.SystemData + :vartype system_data: ~azure.mgmt.dashboard.models.SystemData :ivar tags: A set of tags. The tags for grafana resource. :vartype tags: dict[str, str] :ivar location: The geo-location where the grafana resource lives. @@ -156,8 +158,8 @@ class GrafanaResource(msrest.serialization.Model): 'name': {'key': 'name', 'type': 'str'}, 'type': {'key': 'type', 'type': 'str'}, 'sku': {'key': 'sku', 'type': 'ResourceSku'}, - 'properties': {'key': 'properties', 'type': 'GrafanaResourceProperties'}, - 'identity': {'key': 'identity', 'type': 'ManagedIdentity'}, + 'properties': {'key': 'properties', 'type': 'ManagedGrafanaProperties'}, + 'identity': {'key': 'identity', 'type': 'ManagedServiceIdentity'}, 'system_data': {'key': 'systemData', 'type': 'SystemData'}, 'tags': {'key': 'tags', 'type': '{str}'}, 'location': {'key': 'location', 'type': 'str'}, @@ -166,26 +168,26 @@ class GrafanaResource(msrest.serialization.Model): def __init__( self, *, - sku: Optional["ResourceSku"] = None, - properties: Optional["GrafanaResourceProperties"] = None, - identity: Optional["ManagedIdentity"] = None, + sku: Optional["_models.ResourceSku"] = None, + properties: Optional["_models.ManagedGrafanaProperties"] = None, + identity: Optional["_models.ManagedServiceIdentity"] = None, tags: Optional[Dict[str, str]] = None, location: Optional[str] = None, **kwargs ): """ :keyword sku: The Sku of the grafana resource. - :paramtype sku: ~dashboard_management_client.models.ResourceSku + :paramtype sku: ~azure.mgmt.dashboard.models.ResourceSku :keyword properties: Properties specific to the grafana resource. - :paramtype properties: ~dashboard_management_client.models.GrafanaResourceProperties + :paramtype properties: ~azure.mgmt.dashboard.models.ManagedGrafanaProperties :keyword identity: The managed identity of the grafana resource. - :paramtype identity: ~dashboard_management_client.models.ManagedIdentity + :paramtype identity: ~azure.mgmt.dashboard.models.ManagedServiceIdentity :keyword tags: A set of tags. The tags for grafana resource. :paramtype tags: dict[str, str] :keyword location: The geo-location where the grafana resource lives. :paramtype location: str """ - super(GrafanaResource, self).__init__(**kwargs) + super(ManagedGrafana, self).__init__(**kwargs) self.id = None self.name = None self.type = None @@ -197,190 +199,365 @@ def __init__( self.location = location -class GrafanaResourceListResponse(msrest.serialization.Model): - """GrafanaResourceListResponse. +class ManagedGrafanaListResponse(msrest.serialization.Model): + """ManagedGrafanaListResponse. :ivar value: - :vartype value: list[~dashboard_management_client.models.GrafanaResource] + :vartype value: list[~azure.mgmt.dashboard.models.ManagedGrafana] :ivar next_link: :vartype next_link: str """ _attribute_map = { - 'value': {'key': 'value', 'type': '[GrafanaResource]'}, + 'value': {'key': 'value', 'type': '[ManagedGrafana]'}, 'next_link': {'key': 'nextLink', 'type': 'str'}, } def __init__( self, *, - value: Optional[List["GrafanaResource"]] = None, + value: Optional[List["_models.ManagedGrafana"]] = None, next_link: Optional[str] = None, **kwargs ): """ :keyword value: - :paramtype value: list[~dashboard_management_client.models.GrafanaResource] + :paramtype value: list[~azure.mgmt.dashboard.models.ManagedGrafana] :keyword next_link: :paramtype next_link: str """ - super(GrafanaResourceListResponse, self).__init__(**kwargs) + super(ManagedGrafanaListResponse, self).__init__(**kwargs) self.value = value self.next_link = next_link -class GrafanaResourceProperties(msrest.serialization.Model): +class ManagedGrafanaProperties(msrest.serialization.Model): """Properties specific to the grafana resource. Variables are only populated by the server, and will be ignored when sending a request. - :ivar provisioning_state: Provisioning state of the resource. Possible values include: - "Accepted", "Creating", "Updating", "Deleting", "Succeeded", "Failed", "Canceled", "Deleted", + :ivar provisioning_state: Provisioning state of the resource. Known values are: "Accepted", + "Creating", "Updating", "Deleting", "Succeeded", "Failed", "Canceled", "Deleted", "NotSpecified". - :vartype provisioning_state: str or ~dashboard_management_client.models.ProvisioningState + :vartype provisioning_state: str or ~azure.mgmt.dashboard.models.ProvisioningState :ivar grafana_version: The Grafana software version. :vartype grafana_version: str :ivar endpoint: The endpoint of the Grafana instance. :vartype endpoint: str - :ivar zone_redundancy: Possible values include: "Disabled", "Enabled". Default value: - "Disabled". - :vartype zone_redundancy: str or ~dashboard_management_client.models.ZoneRedundancy + :ivar public_network_access: Indicate the state for enable or disable traffic over the public + interface. Known values are: "Enabled", "Disabled". + :vartype public_network_access: str or ~azure.mgmt.dashboard.models.PublicNetworkAccess + :ivar zone_redundancy: The zone redundancy setting of the Grafana instance. Known values are: + "Disabled", "Enabled". Default value: "Disabled". + :vartype zone_redundancy: str or ~azure.mgmt.dashboard.models.ZoneRedundancy + :ivar api_key: The api key setting of the Grafana instance. Known values are: "Disabled", + "Enabled". Default value: "Disabled". + :vartype api_key: str or ~azure.mgmt.dashboard.models.ApiKey + :ivar deterministic_outbound_ip: Whether a Grafana instance uses deterministic outbound IPs. + Known values are: "Disabled", "Enabled". Default value: "Disabled". + :vartype deterministic_outbound_ip: str or ~azure.mgmt.dashboard.models.DeterministicOutboundIP + :ivar outbound_i_ps: List of outbound IPs if deterministicOutboundIP is enabled. + :vartype outbound_i_ps: list[str] + :ivar private_endpoint_connections: The private endpoint connections of the Grafana instance. + :vartype private_endpoint_connections: + list[~azure.mgmt.dashboard.models.PrivateEndpointConnection] + :ivar auto_generated_domain_name_label_scope: Scope for dns deterministic name hash + calculation. Known values are: "TenantReuse". + :vartype auto_generated_domain_name_label_scope: str or + ~azure.mgmt.dashboard.models.AutoGeneratedDomainNameLabelScope """ _validation = { + 'provisioning_state': {'readonly': True}, 'grafana_version': {'readonly': True}, 'endpoint': {'readonly': True}, + 'outbound_i_ps': {'readonly': True}, + 'private_endpoint_connections': {'readonly': True}, } _attribute_map = { 'provisioning_state': {'key': 'provisioningState', 'type': 'str'}, 'grafana_version': {'key': 'grafanaVersion', 'type': 'str'}, 'endpoint': {'key': 'endpoint', 'type': 'str'}, + 'public_network_access': {'key': 'publicNetworkAccess', 'type': 'str'}, 'zone_redundancy': {'key': 'zoneRedundancy', 'type': 'str'}, + 'api_key': {'key': 'apiKey', 'type': 'str'}, + 'deterministic_outbound_ip': {'key': 'deterministicOutboundIP', 'type': 'str'}, + 'outbound_i_ps': {'key': 'outboundIPs', 'type': '[str]'}, + 'private_endpoint_connections': {'key': 'privateEndpointConnections', 'type': '[PrivateEndpointConnection]'}, + 'auto_generated_domain_name_label_scope': {'key': 'autoGeneratedDomainNameLabelScope', 'type': 'str'}, } def __init__( self, *, - provisioning_state: Optional[Union[str, "ProvisioningState"]] = None, - zone_redundancy: Optional[Union[str, "ZoneRedundancy"]] = "Disabled", + public_network_access: Optional[Union[str, "_models.PublicNetworkAccess"]] = None, + zone_redundancy: Optional[Union[str, "_models.ZoneRedundancy"]] = "Disabled", + api_key: Optional[Union[str, "_models.ApiKey"]] = "Disabled", + deterministic_outbound_ip: Optional[Union[str, "_models.DeterministicOutboundIP"]] = "Disabled", + auto_generated_domain_name_label_scope: Optional[Union[str, "_models.AutoGeneratedDomainNameLabelScope"]] = None, **kwargs ): """ - :keyword provisioning_state: Provisioning state of the resource. Possible values include: - "Accepted", "Creating", "Updating", "Deleting", "Succeeded", "Failed", "Canceled", "Deleted", - "NotSpecified". - :paramtype provisioning_state: str or ~dashboard_management_client.models.ProvisioningState - :keyword zone_redundancy: Possible values include: "Disabled", "Enabled". Default value: - "Disabled". - :paramtype zone_redundancy: str or ~dashboard_management_client.models.ZoneRedundancy + :keyword public_network_access: Indicate the state for enable or disable traffic over the + public interface. Known values are: "Enabled", "Disabled". + :paramtype public_network_access: str or ~azure.mgmt.dashboard.models.PublicNetworkAccess + :keyword zone_redundancy: The zone redundancy setting of the Grafana instance. Known values + are: "Disabled", "Enabled". Default value: "Disabled". + :paramtype zone_redundancy: str or ~azure.mgmt.dashboard.models.ZoneRedundancy + :keyword api_key: The api key setting of the Grafana instance. Known values are: "Disabled", + "Enabled". Default value: "Disabled". + :paramtype api_key: str or ~azure.mgmt.dashboard.models.ApiKey + :keyword deterministic_outbound_ip: Whether a Grafana instance uses deterministic outbound IPs. + Known values are: "Disabled", "Enabled". Default value: "Disabled". + :paramtype deterministic_outbound_ip: str or + ~azure.mgmt.dashboard.models.DeterministicOutboundIP + :keyword auto_generated_domain_name_label_scope: Scope for dns deterministic name hash + calculation. Known values are: "TenantReuse". + :paramtype auto_generated_domain_name_label_scope: str or + ~azure.mgmt.dashboard.models.AutoGeneratedDomainNameLabelScope """ - super(GrafanaResourceProperties, self).__init__(**kwargs) - self.provisioning_state = provisioning_state + super(ManagedGrafanaProperties, self).__init__(**kwargs) + self.provisioning_state = None self.grafana_version = None self.endpoint = None + self.public_network_access = public_network_access self.zone_redundancy = zone_redundancy + self.api_key = api_key + self.deterministic_outbound_ip = deterministic_outbound_ip + self.outbound_i_ps = None + self.private_endpoint_connections = None + self.auto_generated_domain_name_label_scope = auto_generated_domain_name_label_scope + + +class ManagedGrafanaPropertiesUpdateParameters(msrest.serialization.Model): + """The properties parameters for a PATCH request to a grafana resource. + + :ivar zone_redundancy: The zone redundancy setting of the Grafana instance. Known values are: + "Disabled", "Enabled". Default value: "Disabled". + :vartype zone_redundancy: str or ~azure.mgmt.dashboard.models.ZoneRedundancy + :ivar api_key: The api key setting of the Grafana instance. Known values are: "Disabled", + "Enabled". Default value: "Disabled". + :vartype api_key: str or ~azure.mgmt.dashboard.models.ApiKey + :ivar deterministic_outbound_ip: Whether a Grafana instance uses deterministic outbound IPs. + Known values are: "Disabled", "Enabled". Default value: "Disabled". + :vartype deterministic_outbound_ip: str or ~azure.mgmt.dashboard.models.DeterministicOutboundIP + :ivar public_network_access: Indicate the state for enable or disable traffic over the public + interface. Known values are: "Enabled", "Disabled". + :vartype public_network_access: str or ~azure.mgmt.dashboard.models.PublicNetworkAccess + """ + _attribute_map = { + 'zone_redundancy': {'key': 'zoneRedundancy', 'type': 'str'}, + 'api_key': {'key': 'apiKey', 'type': 'str'}, + 'deterministic_outbound_ip': {'key': 'deterministicOutboundIP', 'type': 'str'}, + 'public_network_access': {'key': 'publicNetworkAccess', 'type': 'str'}, + } -class GrafanaResourceUpdateParameters(msrest.serialization.Model): + def __init__( + self, + *, + zone_redundancy: Optional[Union[str, "_models.ZoneRedundancy"]] = "Disabled", + api_key: Optional[Union[str, "_models.ApiKey"]] = "Disabled", + deterministic_outbound_ip: Optional[Union[str, "_models.DeterministicOutboundIP"]] = "Disabled", + public_network_access: Optional[Union[str, "_models.PublicNetworkAccess"]] = None, + **kwargs + ): + """ + :keyword zone_redundancy: The zone redundancy setting of the Grafana instance. Known values + are: "Disabled", "Enabled". Default value: "Disabled". + :paramtype zone_redundancy: str or ~azure.mgmt.dashboard.models.ZoneRedundancy + :keyword api_key: The api key setting of the Grafana instance. Known values are: "Disabled", + "Enabled". Default value: "Disabled". + :paramtype api_key: str or ~azure.mgmt.dashboard.models.ApiKey + :keyword deterministic_outbound_ip: Whether a Grafana instance uses deterministic outbound IPs. + Known values are: "Disabled", "Enabled". Default value: "Disabled". + :paramtype deterministic_outbound_ip: str or + ~azure.mgmt.dashboard.models.DeterministicOutboundIP + :keyword public_network_access: Indicate the state for enable or disable traffic over the + public interface. Known values are: "Enabled", "Disabled". + :paramtype public_network_access: str or ~azure.mgmt.dashboard.models.PublicNetworkAccess + """ + super(ManagedGrafanaPropertiesUpdateParameters, self).__init__(**kwargs) + self.zone_redundancy = zone_redundancy + self.api_key = api_key + self.deterministic_outbound_ip = deterministic_outbound_ip + self.public_network_access = public_network_access + + +class ManagedGrafanaUpdateParameters(msrest.serialization.Model): """The parameters for a PATCH request to a grafana resource. :ivar identity: The managed identity of the grafana resource. - :vartype identity: ~dashboard_management_client.models.ManagedIdentity + :vartype identity: ~azure.mgmt.dashboard.models.ManagedServiceIdentity :ivar tags: A set of tags. The new tags of the grafana resource. :vartype tags: dict[str, str] + :ivar properties: Properties specific to the managed grafana resource. + :vartype properties: ~azure.mgmt.dashboard.models.ManagedGrafanaPropertiesUpdateParameters """ _attribute_map = { - 'identity': {'key': 'identity', 'type': 'ManagedIdentity'}, + 'identity': {'key': 'identity', 'type': 'ManagedServiceIdentity'}, 'tags': {'key': 'tags', 'type': '{str}'}, + 'properties': {'key': 'properties', 'type': 'ManagedGrafanaPropertiesUpdateParameters'}, } def __init__( self, *, - identity: Optional["ManagedIdentity"] = None, + identity: Optional["_models.ManagedServiceIdentity"] = None, tags: Optional[Dict[str, str]] = None, + properties: Optional["_models.ManagedGrafanaPropertiesUpdateParameters"] = None, **kwargs ): """ :keyword identity: The managed identity of the grafana resource. - :paramtype identity: ~dashboard_management_client.models.ManagedIdentity + :paramtype identity: ~azure.mgmt.dashboard.models.ManagedServiceIdentity :keyword tags: A set of tags. The new tags of the grafana resource. :paramtype tags: dict[str, str] + :keyword properties: Properties specific to the managed grafana resource. + :paramtype properties: ~azure.mgmt.dashboard.models.ManagedGrafanaPropertiesUpdateParameters """ - super(GrafanaResourceUpdateParameters, self).__init__(**kwargs) + super(ManagedGrafanaUpdateParameters, self).__init__(**kwargs) self.identity = identity self.tags = tags + self.properties = properties -class ManagedIdentity(msrest.serialization.Model): - """The managed identity of a resource. +class ManagedServiceIdentity(msrest.serialization.Model): + """Managed service identity (system assigned and/or user assigned identities). Variables are only populated by the server, and will be ignored when sending a request. - :ivar type: The type 'SystemAssigned, UserAssigned' includes both an implicitly created - identity and a set of user assigned identities. The type 'None' will remove any identities from - the resource. Possible values include: "None", "SystemAssigned". - :vartype type: str or ~dashboard_management_client.models.IdentityType - :ivar principal_id: The principal id of the system assigned identity. + All required parameters must be populated in order to send to Azure. + + :ivar principal_id: The service principal ID of the system assigned identity. This property + will only be provided for a system assigned identity. :vartype principal_id: str - :ivar tenant_id: The tenant id of the system assigned identity. + :ivar tenant_id: The tenant ID of the system assigned identity. This property will only be + provided for a system assigned identity. :vartype tenant_id: str - :ivar user_assigned_identities: Dictionary of user assigned identities. - :vartype user_assigned_identities: dict[str, - ~dashboard_management_client.models.UserAssignedIdentity] + :ivar type: Required. Type of managed service identity (where both SystemAssigned and + UserAssigned types are allowed). Known values are: "None", "SystemAssigned", "UserAssigned", + "SystemAssigned,UserAssigned". + :vartype type: str or ~azure.mgmt.dashboard.models.ManagedServiceIdentityType + :ivar user_assigned_identities: The set of user assigned identities associated with the + resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: + '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. + The dictionary values can be empty objects ({}) in requests. + :vartype user_assigned_identities: dict[str, ~azure.mgmt.dashboard.models.UserAssignedIdentity] """ _validation = { 'principal_id': {'readonly': True}, 'tenant_id': {'readonly': True}, + 'type': {'required': True}, } _attribute_map = { - 'type': {'key': 'type', 'type': 'str'}, 'principal_id': {'key': 'principalId', 'type': 'str'}, 'tenant_id': {'key': 'tenantId', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, 'user_assigned_identities': {'key': 'userAssignedIdentities', 'type': '{UserAssignedIdentity}'}, } def __init__( self, *, - type: Optional[Union[str, "IdentityType"]] = None, - user_assigned_identities: Optional[Dict[str, "UserAssignedIdentity"]] = None, + type: Union[str, "_models.ManagedServiceIdentityType"], + user_assigned_identities: Optional[Dict[str, "_models.UserAssignedIdentity"]] = None, **kwargs ): """ - :keyword type: The type 'SystemAssigned, UserAssigned' includes both an implicitly created - identity and a set of user assigned identities. The type 'None' will remove any identities from - the resource. Possible values include: "None", "SystemAssigned". - :paramtype type: str or ~dashboard_management_client.models.IdentityType - :keyword user_assigned_identities: Dictionary of user assigned identities. + :keyword type: Required. Type of managed service identity (where both SystemAssigned and + UserAssigned types are allowed). Known values are: "None", "SystemAssigned", "UserAssigned", + "SystemAssigned,UserAssigned". + :paramtype type: str or ~azure.mgmt.dashboard.models.ManagedServiceIdentityType + :keyword user_assigned_identities: The set of user assigned identities associated with the + resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: + '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. + The dictionary values can be empty objects ({}) in requests. :paramtype user_assigned_identities: dict[str, - ~dashboard_management_client.models.UserAssignedIdentity] + ~azure.mgmt.dashboard.models.UserAssignedIdentity] """ - super(ManagedIdentity, self).__init__(**kwargs) - self.type = type + super(ManagedServiceIdentity, self).__init__(**kwargs) self.principal_id = None self.tenant_id = None + self.type = type self.user_assigned_identities = user_assigned_identities +class Operation(msrest.serialization.Model): + """Details of a REST API operation, returned from the Resource Provider Operations API. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar name: The name of the operation, as per Resource-Based Access Control (RBAC). Examples: + "Microsoft.Compute/virtualMachines/write", "Microsoft.Compute/virtualMachines/capture/action". + :vartype name: str + :ivar is_data_action: Whether the operation applies to data-plane. This is "true" for + data-plane operations and "false" for ARM/control-plane operations. + :vartype is_data_action: bool + :ivar display: Localized display information for this particular operation. + :vartype display: ~azure.mgmt.dashboard.models.OperationDisplay + :ivar origin: The intended executor of the operation; as in Resource Based Access Control + (RBAC) and audit logs UX. Default value is "user,system". Known values are: "user", "system", + "user,system". + :vartype origin: str or ~azure.mgmt.dashboard.models.Origin + :ivar action_type: Enum. Indicates the action type. "Internal" refers to actions that are for + internal only APIs. Known values are: "Internal". + :vartype action_type: str or ~azure.mgmt.dashboard.models.ActionType + """ + + _validation = { + 'name': {'readonly': True}, + 'is_data_action': {'readonly': True}, + 'origin': {'readonly': True}, + 'action_type': {'readonly': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'is_data_action': {'key': 'isDataAction', 'type': 'bool'}, + 'display': {'key': 'display', 'type': 'OperationDisplay'}, + 'origin': {'key': 'origin', 'type': 'str'}, + 'action_type': {'key': 'actionType', 'type': 'str'}, + } + + def __init__( + self, + *, + display: Optional["_models.OperationDisplay"] = None, + **kwargs + ): + """ + :keyword display: Localized display information for this particular operation. + :paramtype display: ~azure.mgmt.dashboard.models.OperationDisplay + """ + super(Operation, self).__init__(**kwargs) + self.name = None + self.is_data_action = None + self.display = display + self.origin = None + self.action_type = None + + class OperationDisplay(msrest.serialization.Model): """Localized display information for this particular operation. Variables are only populated by the server, and will be ignored when sending a request. - :ivar provider: The localized friendly form of the resource provider name, i.e., - Microsoft.Dashboard. + :ivar provider: The localized friendly form of the resource provider name, e.g. "Microsoft + Monitoring Insights" or "Microsoft Compute". :vartype provider: str - :ivar resource: The localized friendly name of the resource type related to this operation, - e.g., 'grafana'. + :ivar resource: The localized friendly name of the resource type related to this operation. + E.g. "Virtual Machines" or "Job Schedule Collections". :vartype resource: str - :ivar operation: Operation type, e.g., read, write, delete, etc. + :ivar operation: The concise, localized friendly name for the operation; suitable for + dropdowns. E.g. "Create or Update Virtual Machine", "Restart Virtual Machine". :vartype operation: str - :ivar description: Description of the operation, e.g., 'Read grafana'. + :ivar description: The short, localized friendly description of the operation; suitable for + tool tips and detailed views. :vartype description: str """ @@ -412,13 +589,13 @@ def __init__( class OperationListResult(msrest.serialization.Model): - """A list of REST API operations supported by Microsoft.Dashboard provider. It contains an URL link to get the next set of results. + """A list of REST API operations supported by an Azure Resource Provider. It contains an URL link to get the next set of results. Variables are only populated by the server, and will be ignored when sending a request. - :ivar value: List of operations supported by the Microsoft.Dashboard provider. - :vartype value: list[~dashboard_management_client.models.OperationResult] - :ivar next_link: URL to get the next set of operation list results if there are any. + :ivar value: List of operations supported by the resource provider. + :vartype value: list[~azure.mgmt.dashboard.models.Operation] + :ivar next_link: URL to get the next set of operation list results (if there are any). :vartype next_link: str """ @@ -428,7 +605,7 @@ class OperationListResult(msrest.serialization.Model): } _attribute_map = { - 'value': {'key': 'value', 'type': '[OperationResult]'}, + 'value': {'key': 'value', 'type': '[Operation]'}, 'next_link': {'key': 'nextLink', 'type': 'str'}, } @@ -443,57 +620,329 @@ def __init__( self.next_link = None -class OperationResult(msrest.serialization.Model): - """A Microsoft.Dashboard REST API operation. +class PrivateEndpoint(msrest.serialization.Model): + """The Private Endpoint resource. Variables are only populated by the server, and will be ignored when sending a request. - :ivar name: Operation name, i.e., {provider}/{resource}/{operation}. + :ivar id: The ARM identifier for Private Endpoint. + :vartype id: str + """ + + _validation = { + 'id': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super(PrivateEndpoint, self).__init__(**kwargs) + self.id = None + + +class Resource(msrest.serialization.Model): + """Common fields that are returned in the response for all Azure Resource Manager resources. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Fully qualified resource ID for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. + :vartype id: str + :ivar name: The name of the resource. :vartype name: str - :ivar is_data_action: Indicates whether the operation applies to data-plane. Set "true" for - data-plane operations and "false" for ARM/control-plane operations. - :vartype is_data_action: bool - :ivar display: Localized display information for this particular operation. - :vartype display: ~dashboard_management_client.models.OperationDisplay - :ivar origin: The intended executor of the operation. Possible values include: "user", - "system", "user,system". - :vartype origin: str or ~dashboard_management_client.models.Origin - :ivar action_type: Indicates the action type. "Internal" refers to actions that are for - internal only APIs. Possible values include: "Internal". - :vartype action_type: str or ~dashboard_management_client.models.ActionType + :ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + "Microsoft.Storage/storageAccounts". + :vartype type: str + :ivar system_data: Azure Resource Manager metadata containing createdBy and modifiedBy + information. + :vartype system_data: ~azure.mgmt.dashboard.models.SystemData """ _validation = { + 'id': {'readonly': True}, 'name': {'readonly': True}, - 'is_data_action': {'readonly': True}, - 'origin': {'readonly': True}, - 'action_type': {'readonly': True}, + 'type': {'readonly': True}, + 'system_data': {'readonly': True}, } _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, 'name': {'key': 'name', 'type': 'str'}, - 'is_data_action': {'key': 'isDataAction', 'type': 'bool'}, - 'display': {'key': 'display', 'type': 'OperationDisplay'}, - 'origin': {'key': 'origin', 'type': 'str'}, - 'action_type': {'key': 'actionType', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'system_data': {'key': 'systemData', 'type': 'SystemData'}, } def __init__( self, - *, - display: Optional["OperationDisplay"] = None, **kwargs ): """ - :keyword display: Localized display information for this particular operation. - :paramtype display: ~dashboard_management_client.models.OperationDisplay """ - super(OperationResult, self).__init__(**kwargs) + super(Resource, self).__init__(**kwargs) + self.id = None self.name = None - self.is_data_action = None - self.display = display - self.origin = None - self.action_type = None + self.type = None + self.system_data = None + + +class PrivateEndpointConnection(Resource): + """The Private Endpoint Connection resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Fully qualified resource ID for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. + :vartype id: str + :ivar name: The name of the resource. + :vartype name: str + :ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + "Microsoft.Storage/storageAccounts". + :vartype type: str + :ivar system_data: Azure Resource Manager metadata containing createdBy and modifiedBy + information. + :vartype system_data: ~azure.mgmt.dashboard.models.SystemData + :ivar private_endpoint: The resource of private end point. + :vartype private_endpoint: ~azure.mgmt.dashboard.models.PrivateEndpoint + :ivar private_link_service_connection_state: A collection of information about the state of the + connection between service consumer and provider. + :vartype private_link_service_connection_state: + ~azure.mgmt.dashboard.models.PrivateLinkServiceConnectionState + :ivar group_ids: The private endpoint connection group ids. + :vartype group_ids: list[str] + :ivar provisioning_state: The provisioning state of the private endpoint connection resource. + Known values are: "Succeeded", "Creating", "Deleting", "Failed". + :vartype provisioning_state: str or + ~azure.mgmt.dashboard.models.PrivateEndpointConnectionProvisioningState + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'system_data': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'system_data': {'key': 'systemData', 'type': 'SystemData'}, + 'private_endpoint': {'key': 'properties.privateEndpoint', 'type': 'PrivateEndpoint'}, + 'private_link_service_connection_state': {'key': 'properties.privateLinkServiceConnectionState', 'type': 'PrivateLinkServiceConnectionState'}, + 'group_ids': {'key': 'properties.groupIds', 'type': '[str]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + private_endpoint: Optional["_models.PrivateEndpoint"] = None, + private_link_service_connection_state: Optional["_models.PrivateLinkServiceConnectionState"] = None, + group_ids: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword private_endpoint: The resource of private end point. + :paramtype private_endpoint: ~azure.mgmt.dashboard.models.PrivateEndpoint + :keyword private_link_service_connection_state: A collection of information about the state of + the connection between service consumer and provider. + :paramtype private_link_service_connection_state: + ~azure.mgmt.dashboard.models.PrivateLinkServiceConnectionState + :keyword group_ids: The private endpoint connection group ids. + :paramtype group_ids: list[str] + """ + super(PrivateEndpointConnection, self).__init__(**kwargs) + self.private_endpoint = private_endpoint + self.private_link_service_connection_state = private_link_service_connection_state + self.group_ids = group_ids + self.provisioning_state = None + + +class PrivateEndpointConnectionListResult(msrest.serialization.Model): + """List of private endpoint connection associated with the specified storage account. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: Array of private endpoint connections. + :vartype value: list[~azure.mgmt.dashboard.models.PrivateEndpointConnection] + :ivar next_link: URL to get the next set of operation list results (if there are any). + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[PrivateEndpointConnection]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["_models.PrivateEndpointConnection"]] = None, + **kwargs + ): + """ + :keyword value: Array of private endpoint connections. + :paramtype value: list[~azure.mgmt.dashboard.models.PrivateEndpointConnection] + """ + super(PrivateEndpointConnectionListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class PrivateLinkResource(Resource): + """A private link resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Fully qualified resource ID for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. + :vartype id: str + :ivar name: The name of the resource. + :vartype name: str + :ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + "Microsoft.Storage/storageAccounts". + :vartype type: str + :ivar system_data: Azure Resource Manager metadata containing createdBy and modifiedBy + information. + :vartype system_data: ~azure.mgmt.dashboard.models.SystemData + :ivar provisioning_state: Provisioning state of the resource. Known values are: "Accepted", + "Creating", "Updating", "Deleting", "Succeeded", "Failed", "Canceled", "Deleted", + "NotSpecified". + :vartype provisioning_state: str or ~azure.mgmt.dashboard.models.ProvisioningState + :ivar group_id: The private link resource group id. + :vartype group_id: str + :ivar required_members: The private link resource required member names. + :vartype required_members: list[str] + :ivar required_zone_names: The private link resource Private link DNS zone name. + :vartype required_zone_names: list[str] + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'system_data': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + 'group_id': {'readonly': True}, + 'required_members': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'system_data': {'key': 'systemData', 'type': 'SystemData'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'group_id': {'key': 'properties.groupId', 'type': 'str'}, + 'required_members': {'key': 'properties.requiredMembers', 'type': '[str]'}, + 'required_zone_names': {'key': 'properties.requiredZoneNames', 'type': '[str]'}, + } + + def __init__( + self, + *, + required_zone_names: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword required_zone_names: The private link resource Private link DNS zone name. + :paramtype required_zone_names: list[str] + """ + super(PrivateLinkResource, self).__init__(**kwargs) + self.provisioning_state = None + self.group_id = None + self.required_members = None + self.required_zone_names = required_zone_names + + +class PrivateLinkResourceListResult(msrest.serialization.Model): + """A list of private link resources. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: Array of private link resources. + :vartype value: list[~azure.mgmt.dashboard.models.PrivateLinkResource] + :ivar next_link: URL to get the next set of operation list results (if there are any). + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[PrivateLinkResource]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["_models.PrivateLinkResource"]] = None, + **kwargs + ): + """ + :keyword value: Array of private link resources. + :paramtype value: list[~azure.mgmt.dashboard.models.PrivateLinkResource] + """ + super(PrivateLinkResourceListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class PrivateLinkServiceConnectionState(msrest.serialization.Model): + """A collection of information about the state of the connection between service consumer and provider. + + :ivar status: Indicates whether the connection has been Approved/Rejected/Removed by the owner + of the service. Known values are: "Pending", "Approved", "Rejected". + :vartype status: str or ~azure.mgmt.dashboard.models.PrivateEndpointServiceConnectionStatus + :ivar description: The reason for approval/rejection of the connection. + :vartype description: str + :ivar actions_required: A message indicating if changes on the service provider require any + updates on the consumer. + :vartype actions_required: str + """ + + _attribute_map = { + 'status': {'key': 'status', 'type': 'str'}, + 'description': {'key': 'description', 'type': 'str'}, + 'actions_required': {'key': 'actionsRequired', 'type': 'str'}, + } + + def __init__( + self, + *, + status: Optional[Union[str, "_models.PrivateEndpointServiceConnectionStatus"]] = None, + description: Optional[str] = None, + actions_required: Optional[str] = None, + **kwargs + ): + """ + :keyword status: Indicates whether the connection has been Approved/Rejected/Removed by the + owner of the service. Known values are: "Pending", "Approved", "Rejected". + :paramtype status: str or ~azure.mgmt.dashboard.models.PrivateEndpointServiceConnectionStatus + :keyword description: The reason for approval/rejection of the connection. + :paramtype description: str + :keyword actions_required: A message indicating if changes on the service provider require any + updates on the consumer. + :paramtype actions_required: str + """ + super(PrivateLinkServiceConnectionState, self).__init__(**kwargs) + self.status = status + self.description = description + self.actions_required = actions_required class ResourceSku(msrest.serialization.Model): @@ -528,21 +977,21 @@ def __init__( class SystemData(msrest.serialization.Model): - """SystemData. + """Metadata pertaining to creation and last modification of the resource. - :ivar created_by: + :ivar created_by: The identity that created the resource. :vartype created_by: str - :ivar created_by_type: The type of identity that created the resource. Possible values include: + :ivar created_by_type: The type of identity that created the resource. Known values are: "User", "Application", "ManagedIdentity", "Key". - :vartype created_by_type: str or ~dashboard_management_client.models.CreatedByType - :ivar created_at: + :vartype created_by_type: str or ~azure.mgmt.dashboard.models.CreatedByType + :ivar created_at: The timestamp of resource creation (UTC). :vartype created_at: ~datetime.datetime - :ivar last_modified_by: + :ivar last_modified_by: The identity that last modified the resource. :vartype last_modified_by: str - :ivar last_modified_by_type: Possible values include: "User", "Application", "ManagedIdentity", - "Key". - :vartype last_modified_by_type: str or ~dashboard_management_client.models.LastModifiedByType - :ivar last_modified_at: + :ivar last_modified_by_type: The type of identity that last modified the resource. Known values + are: "User", "Application", "ManagedIdentity", "Key". + :vartype last_modified_by_type: str or ~azure.mgmt.dashboard.models.CreatedByType + :ivar last_modified_at: The timestamp of resource last modification (UTC). :vartype last_modified_at: ~datetime.datetime """ @@ -559,27 +1008,27 @@ def __init__( self, *, created_by: Optional[str] = None, - created_by_type: Optional[Union[str, "CreatedByType"]] = None, + created_by_type: Optional[Union[str, "_models.CreatedByType"]] = None, created_at: Optional[datetime.datetime] = None, last_modified_by: Optional[str] = None, - last_modified_by_type: Optional[Union[str, "LastModifiedByType"]] = None, + last_modified_by_type: Optional[Union[str, "_models.CreatedByType"]] = None, last_modified_at: Optional[datetime.datetime] = None, **kwargs ): """ - :keyword created_by: + :keyword created_by: The identity that created the resource. :paramtype created_by: str - :keyword created_by_type: The type of identity that created the resource. Possible values - include: "User", "Application", "ManagedIdentity", "Key". - :paramtype created_by_type: str or ~dashboard_management_client.models.CreatedByType - :keyword created_at: + :keyword created_by_type: The type of identity that created the resource. Known values are: + "User", "Application", "ManagedIdentity", "Key". + :paramtype created_by_type: str or ~azure.mgmt.dashboard.models.CreatedByType + :keyword created_at: The timestamp of resource creation (UTC). :paramtype created_at: ~datetime.datetime - :keyword last_modified_by: + :keyword last_modified_by: The identity that last modified the resource. :paramtype last_modified_by: str - :keyword last_modified_by_type: Possible values include: "User", "Application", - "ManagedIdentity", "Key". - :paramtype last_modified_by_type: str or ~dashboard_management_client.models.LastModifiedByType - :keyword last_modified_at: + :keyword last_modified_by_type: The type of identity that last modified the resource. Known + values are: "User", "Application", "ManagedIdentity", "Key". + :paramtype last_modified_by_type: str or ~azure.mgmt.dashboard.models.CreatedByType + :keyword last_modified_at: The timestamp of resource last modification (UTC). :paramtype last_modified_at: ~datetime.datetime """ super(SystemData, self).__init__(**kwargs) @@ -592,13 +1041,13 @@ def __init__( class UserAssignedIdentity(msrest.serialization.Model): - """UserAssignedIdentity. + """User assigned identity properties. Variables are only populated by the server, and will be ignored when sending a request. - :ivar principal_id: The principal id of user assigned identity. + :ivar principal_id: The principal ID of the assigned identity. :vartype principal_id: str - :ivar client_id: The client id of user assigned identity. + :ivar client_id: The client ID of the assigned identity. :vartype client_id: str """ diff --git a/src/amg/azext_amg/vendored_sdks/models/_patch.py b/src/amg/azext_amg/vendored_sdks/models/_patch.py new file mode 100644 index 00000000000..0ad201a8c58 --- /dev/null +++ b/src/amg/azext_amg/vendored_sdks/models/_patch.py @@ -0,0 +1,19 @@ +# ------------------------------------ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. +# ------------------------------------ +"""Customize generated code here. + +Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize +""" +from typing import List + +__all__: List[str] = [] # Add all objects you want publicly available to users at this package level + +def patch_sdk(): + """Do not remove from this file. + + `patch_sdk` is a last resort escape hatch that allows you to do customizations + you can't accomplish using the techniques described in + https://aka.ms/azsdk/python/dpcodegen/python/customize + """ diff --git a/src/amg/azext_amg/vendored_sdks/operations/__init__.py b/src/amg/azext_amg/vendored_sdks/operations/__init__.py index 81c85b3399f..84f1e6551d9 100644 --- a/src/amg/azext_amg/vendored_sdks/operations/__init__.py +++ b/src/amg/azext_amg/vendored_sdks/operations/__init__.py @@ -8,8 +8,17 @@ from ._operations import Operations from ._grafana_operations import GrafanaOperations +from ._private_endpoint_connections_operations import PrivateEndpointConnectionsOperations +from ._private_link_resources_operations import PrivateLinkResourcesOperations +from ._patch import __all__ as _patch_all +from ._patch import * # type: ignore # pylint: disable=unused-wildcard-import +from ._patch import patch_sdk as _patch_sdk __all__ = [ 'Operations', 'GrafanaOperations', + 'PrivateEndpointConnectionsOperations', + 'PrivateLinkResourcesOperations', ] +__all__.extend([p for p in _patch_all if p not in __all__]) +_patch_sdk() \ No newline at end of file diff --git a/src/amg/azext_amg/vendored_sdks/operations/_grafana_operations.py b/src/amg/azext_amg/vendored_sdks/operations/_grafana_operations.py index ca5fa25aaf3..6899c0a354d 100644 --- a/src/amg/azext_amg/vendored_sdks/operations/_grafana_operations.py +++ b/src/amg/azext_amg/vendored_sdks/operations/_grafana_operations.py @@ -1,3 +1,4 @@ +# pylint: disable=too-many-lines # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. @@ -5,9 +6,9 @@ # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -import functools -from typing import Any, Callable, Dict, Generic, Iterable, Optional, TypeVar, Union -import warnings +from typing import Any, Callable, Dict, Iterable, Optional, TypeVar, Union, cast + +from msrest import Serializer from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error from azure.core.paging import ItemPaged @@ -16,14 +17,13 @@ from azure.core.polling import LROPoller, NoPolling, PollingMethod from azure.core.rest import HttpRequest from azure.core.tracing.decorator import distributed_trace +from azure.core.utils import case_insensitive_dict from azure.mgmt.core.exceptions import ARMErrorFormat from azure.mgmt.core.polling.arm_polling import ARMPolling -from msrest import Serializer from .. import models as _models from .._vendor import _convert_request, _format_url_section T = TypeVar('T') -JSONType = Any ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] _SERIALIZER = Serializer() @@ -33,29 +33,31 @@ def build_list_request( subscription_id: str, **kwargs: Any ) -> HttpRequest: - api_version = "2021-09-01-preview" - accept = "application/json" + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + accept = _headers.pop('Accept', "application/json") + # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/providers/Microsoft.Dashboard/grafana') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Dashboard/grafana") path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="GET", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_params, + headers=_headers, **kwargs ) @@ -65,30 +67,32 @@ def build_list_by_resource_group_request( resource_group_name: str, **kwargs: Any ) -> HttpRequest: - api_version = "2021-09-01-preview" - accept = "application/json" + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + accept = _headers.pop('Accept', "application/json") + # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), - "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', min_length=1), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="GET", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_params, + headers=_headers, **kwargs ) @@ -99,31 +103,33 @@ def build_get_request( workspace_name: str, **kwargs: Any ) -> HttpRequest: - api_version = "2021-09-01-preview" - accept = "application/json" + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + accept = _headers.pop('Accept', "application/json") + # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), - "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', min_length=1), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "workspaceName": _SERIALIZER.url("workspace_name", workspace_name, 'str'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="GET", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_params, + headers=_headers, **kwargs ) @@ -133,39 +139,40 @@ def build_create_request_initial( resource_group_name: str, workspace_name: str, *, - json: JSONType = None, + json: Optional[_models.ManagedGrafana] = None, content: Any = None, **kwargs: Any ) -> HttpRequest: - content_type = kwargs.pop('content_type', None) # type: Optional[str] + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str] + accept = _headers.pop('Accept', "application/json") - api_version = "2021-09-01-preview" - accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), - "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', min_length=1), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "workspaceName": _SERIALIZER.url("workspace_name", workspace_name, 'str'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] if content_type is not None: - header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="PUT", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_params, + headers=_headers, json=json, content=content, **kwargs @@ -177,39 +184,40 @@ def build_update_request( resource_group_name: str, workspace_name: str, *, - json: JSONType = None, + json: Optional[_models.ManagedGrafanaUpdateParameters] = None, content: Any = None, **kwargs: Any ) -> HttpRequest: - content_type = kwargs.pop('content_type', None) # type: Optional[str] + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str] + accept = _headers.pop('Accept', "application/json") - api_version = "2021-09-01-preview" - accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), - "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', min_length=1), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "workspaceName": _SERIALIZER.url("workspace_name", workspace_name, 'str'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] if content_type is not None: - header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="PATCH", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_params, + headers=_headers, json=json, content=content, **kwargs @@ -222,100 +230,110 @@ def build_delete_request_initial( workspace_name: str, **kwargs: Any ) -> HttpRequest: - api_version = "2021-09-01-preview" - accept = "application/json" + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + accept = _headers.pop('Accept', "application/json") + # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), - "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', min_length=1), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "workspaceName": _SERIALIZER.url("workspace_name", workspace_name, 'str'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="DELETE", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_params, + headers=_headers, **kwargs ) -class GrafanaOperations(object): - """GrafanaOperations operations. - - You should not instantiate this class directly. Instead, you should create a Client instance that - instantiates it for you and attaches it as an attribute. +class GrafanaOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. - :ivar models: Alias to model classes used in this operation group. - :type models: ~dashboard_management_client.models - :param client: Client for service requests. - :param config: Configuration of service client. - :param serializer: An object model serializer. - :param deserializer: An object model deserializer. + Instead, you should access the following operations through + :class:`~azure.mgmt.dashboard.DashboardManagementClient`'s + :attr:`grafana` attribute. """ models = _models - def __init__(self, client, config, serializer, deserializer): - self._client = client - self._serialize = serializer - self._deserialize = deserializer - self._config = config + def __init__(self, *args, **kwargs): + input_args = list(args) + self._client = input_args.pop(0) if input_args else kwargs.pop("client") + self._config = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer") + @distributed_trace def list( self, **kwargs: Any - ) -> Iterable["_models.GrafanaResourceListResponse"]: + ) -> Iterable[_models.ManagedGrafanaListResponse]: """List all resources of workspaces for Grafana under the specified subscription. List all resources of workspaces for Grafana under the specified subscription. :keyword callable cls: A custom type or function that will be passed the direct response - :return: An iterator like instance of either GrafanaResourceListResponse or the result of + :return: An iterator like instance of either ManagedGrafanaListResponse or the result of cls(response) - :rtype: - ~azure.core.paging.ItemPaged[~dashboard_management_client.models.GrafanaResourceListResponse] + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.dashboard.models.ManagedGrafanaListResponse] :raises: ~azure.core.exceptions.HttpResponseError """ - cls = kwargs.pop('cls', None) # type: ClsType["_models.GrafanaResourceListResponse"] + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + cls = kwargs.pop('cls', None) # type: ClsType[_models.ManagedGrafanaListResponse] + error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } - error_map.update(kwargs.pop('error_map', {})) + error_map.update(kwargs.pop('error_map', {}) or {}) def prepare_request(next_link=None): if not next_link: request = build_list_request( subscription_id=self._config.subscription_id, + api_version=api_version, template_url=self.list.metadata['url'], + headers=_headers, + params=_params, ) request = _convert_request(request) - request.url = self._client.format_url(request.url) + request.url = self._client.format_url(request.url) # type: ignore else: request = build_list_request( subscription_id=self._config.subscription_id, + api_version=api_version, template_url=next_link, + headers=_headers, + params=_params, ) request = _convert_request(request) - request.url = self._client.format_url(request.url) + request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" return request def extract_data(pipeline_response): - deserialized = self._deserialize("GrafanaResourceListResponse", pipeline_response) + deserialized = self._deserialize("ManagedGrafanaListResponse", pipeline_response) list_of_elem = deserialized.value if cls: list_of_elem = cls(list_of_elem) @@ -324,7 +342,11 @@ def extract_data(pipeline_response): def get_next(next_link=None): request = prepare_request(next_link) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -338,14 +360,14 @@ def get_next(next_link=None): return ItemPaged( get_next, extract_data ) - list.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Dashboard/grafana'} # type: ignore + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Dashboard/grafana"} # type: ignore @distributed_trace def list_by_resource_group( self, resource_group_name: str, **kwargs: Any - ) -> Iterable["_models.GrafanaResourceListResponse"]: + ) -> Iterable[_models.ManagedGrafanaListResponse]: """List all resources of workspaces for Grafana under the specified resource group. List all resources of workspaces for Grafana under the specified resource group. @@ -353,42 +375,52 @@ def list_by_resource_group( :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :keyword callable cls: A custom type or function that will be passed the direct response - :return: An iterator like instance of either GrafanaResourceListResponse or the result of + :return: An iterator like instance of either ManagedGrafanaListResponse or the result of cls(response) - :rtype: - ~azure.core.paging.ItemPaged[~dashboard_management_client.models.GrafanaResourceListResponse] + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.dashboard.models.ManagedGrafanaListResponse] :raises: ~azure.core.exceptions.HttpResponseError """ - cls = kwargs.pop('cls', None) # type: ClsType["_models.GrafanaResourceListResponse"] + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + cls = kwargs.pop('cls', None) # type: ClsType[_models.ManagedGrafanaListResponse] + error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } - error_map.update(kwargs.pop('error_map', {})) + error_map.update(kwargs.pop('error_map', {}) or {}) def prepare_request(next_link=None): if not next_link: request = build_list_by_resource_group_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, + api_version=api_version, template_url=self.list_by_resource_group.metadata['url'], + headers=_headers, + params=_params, ) request = _convert_request(request) - request.url = self._client.format_url(request.url) + request.url = self._client.format_url(request.url) # type: ignore else: request = build_list_by_resource_group_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, + api_version=api_version, template_url=next_link, + headers=_headers, + params=_params, ) request = _convert_request(request) - request.url = self._client.format_url(request.url) + request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" return request def extract_data(pipeline_response): - deserialized = self._deserialize("GrafanaResourceListResponse", pipeline_response) + deserialized = self._deserialize("ManagedGrafanaListResponse", pipeline_response) list_of_elem = deserialized.value if cls: list_of_elem = cls(list_of_elem) @@ -397,7 +429,11 @@ def extract_data(pipeline_response): def get_next(next_link=None): request = prepare_request(next_link) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -411,7 +447,7 @@ def get_next(next_link=None): return ItemPaged( get_next, extract_data ) - list_by_resource_group.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana'} # type: ignore + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana"} # type: ignore @distributed_trace def get( @@ -419,37 +455,49 @@ def get( resource_group_name: str, workspace_name: str, **kwargs: Any - ) -> "_models.GrafanaResource": + ) -> _models.ManagedGrafana: """Get the properties of a specific workspace for Grafana resource. Get the properties of a specific workspace for Grafana resource. :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str - :param workspace_name: The name of Azure Managed Workspace for Grafana. + :param workspace_name: The workspace name of Azure Managed Grafana. :type workspace_name: str :keyword callable cls: A custom type or function that will be passed the direct response - :return: GrafanaResource, or the result of cls(response) - :rtype: ~dashboard_management_client.models.GrafanaResource + :return: ManagedGrafana, or the result of cls(response) + :rtype: ~azure.mgmt.dashboard.models.ManagedGrafana :raises: ~azure.core.exceptions.HttpResponseError """ - cls = kwargs.pop('cls', None) # type: ClsType["_models.GrafanaResource"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } - error_map.update(kwargs.pop('error_map', {})) + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + cls = kwargs.pop('cls', None) # type: ClsType[_models.ManagedGrafana] request = build_get_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, workspace_name=workspace_name, + api_version=api_version, template_url=self.get.metadata['url'], + headers=_headers, + params=_params, ) request = _convert_request(request) - request.url = self._client.format_url(request.url) + request.url = self._client.format_url(request.url) # type: ignore - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -457,48 +505,56 @@ def get( error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - deserialized = self._deserialize('GrafanaResource', pipeline_response) + deserialized = self._deserialize('ManagedGrafana', pipeline_response) if cls: return cls(pipeline_response, deserialized, {}) return deserialized - get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}'} # type: ignore + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}"} # type: ignore def _create_initial( self, resource_group_name: str, workspace_name: str, - body: Optional["_models.GrafanaResource"] = None, + request_body_parameters: _models.ManagedGrafana, **kwargs: Any - ) -> "_models.GrafanaResource": - cls = kwargs.pop('cls', None) # type: ClsType["_models.GrafanaResource"] + ) -> _models.ManagedGrafana: error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } - error_map.update(kwargs.pop('error_map', {})) + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str] + cls = kwargs.pop('cls', None) # type: ClsType[_models.ManagedGrafana] - if body is not None: - _json = self._serialize.body(body, 'GrafanaResource') - else: - _json = None + _json = self._serialize.body(request_body_parameters, 'ManagedGrafana') request = build_create_request_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, workspace_name=workspace_name, + api_version=api_version, content_type=content_type, json=_json, template_url=self._create_initial.metadata['url'], + headers=_headers, + params=_params, ) request = _convert_request(request) - request.url = self._client.format_url(request.url) + request.url = self._client.format_url(request.url) # type: ignore - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200, 201]: @@ -506,17 +562,17 @@ def _create_initial( raise HttpResponseError(response=response, error_format=ARMErrorFormat) if response.status_code == 200: - deserialized = self._deserialize('GrafanaResource', pipeline_response) + deserialized = self._deserialize('ManagedGrafana', pipeline_response) if response.status_code == 201: - deserialized = self._deserialize('GrafanaResource', pipeline_response) + deserialized = self._deserialize('ManagedGrafana', pipeline_response) if cls: return cls(pipeline_response, deserialized, {}) return deserialized - _create_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}'} # type: ignore + _create_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}"} # type: ignore @distributed_trace @@ -524,9 +580,9 @@ def begin_create( self, resource_group_name: str, workspace_name: str, - body: Optional["_models.GrafanaResource"] = None, + request_body_parameters: _models.ManagedGrafana, **kwargs: Any - ) -> LROPoller["_models.GrafanaResource"]: + ) -> LROPoller[_models.ManagedGrafana]: """Create or update a workspace for Grafana resource. This API is idempotent, so user can either create a new grafana or update an existing grafana. @@ -535,10 +591,10 @@ def begin_create( :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str - :param workspace_name: The name of Azure Managed Workspace for Grafana. + :param workspace_name: The workspace name of Azure Managed Grafana. :type workspace_name: str - :param body: - :type body: ~dashboard_management_client.models.GrafanaResource + :param request_body_parameters: + :type request_body_parameters: ~azure.mgmt.dashboard.models.ManagedGrafana :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this @@ -547,40 +603,52 @@ def begin_create( :paramtype polling: bool or ~azure.core.polling.PollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. - :return: An instance of LROPoller that returns either GrafanaResource or the result of + :return: An instance of LROPoller that returns either ManagedGrafana or the result of cls(response) - :rtype: ~azure.core.polling.LROPoller[~dashboard_management_client.models.GrafanaResource] + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.dashboard.models.ManagedGrafana] :raises: ~azure.core.exceptions.HttpResponseError """ - content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.PollingMethod] - cls = kwargs.pop('cls', None) # type: ClsType["_models.GrafanaResource"] + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str] + cls = kwargs.pop('cls', None) # type: ClsType[_models.ManagedGrafana] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] lro_delay = kwargs.pop( 'polling_interval', self._config.polling_interval ) cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] if cont_token is None: - raw_result = self._create_initial( + raw_result = self._create_initial( # type: ignore resource_group_name=resource_group_name, workspace_name=workspace_name, - body=body, + request_body_parameters=request_body_parameters, + api_version=api_version, content_type=content_type, cls=lambda x,y,z: x, + headers=_headers, + params=_params, **kwargs ) kwargs.pop('error_map', None) def get_long_running_output(pipeline_response): - response = pipeline_response.http_response - deserialized = self._deserialize('GrafanaResource', pipeline_response) + deserialized = self._deserialize('ManagedGrafana', pipeline_response) if cls: return cls(pipeline_response, deserialized, {}) return deserialized - if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) - elif polling is False: polling_method = NoPolling() + if polling is True: + polling_method = cast(PollingMethod, ARMPolling( + lro_delay, + lro_options={'final-state-via': 'azure-async-operation'}, + + **kwargs + )) # type: PollingMethod + elif polling is False: polling_method = cast(PollingMethod, NoPolling()) else: polling_method = polling if cont_token: return LROPoller.from_continuation_token( @@ -589,99 +657,122 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_create.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}'} # type: ignore + begin_create.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}"} # type: ignore @distributed_trace def update( self, resource_group_name: str, workspace_name: str, - body: Optional["_models.GrafanaResourceUpdateParameters"] = None, + request_body_parameters: _models.ManagedGrafanaUpdateParameters, **kwargs: Any - ) -> "_models.GrafanaResource": + ) -> _models.ManagedGrafana: """Update a workspace for Grafana resource. Update a workspace for Grafana resource. :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str - :param workspace_name: The name of Azure Managed Workspace for Grafana. + :param workspace_name: The workspace name of Azure Managed Grafana. :type workspace_name: str - :param body: - :type body: ~dashboard_management_client.models.GrafanaResourceUpdateParameters + :param request_body_parameters: + :type request_body_parameters: ~azure.mgmt.dashboard.models.ManagedGrafanaUpdateParameters :keyword callable cls: A custom type or function that will be passed the direct response - :return: GrafanaResource, or the result of cls(response) - :rtype: ~dashboard_management_client.models.GrafanaResource + :return: ManagedGrafana, or the result of cls(response) + :rtype: ~azure.mgmt.dashboard.models.ManagedGrafana :raises: ~azure.core.exceptions.HttpResponseError """ - cls = kwargs.pop('cls', None) # type: ClsType["_models.GrafanaResource"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } - error_map.update(kwargs.pop('error_map', {})) + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str] + cls = kwargs.pop('cls', None) # type: ClsType[_models.ManagedGrafana] - if body is not None: - _json = self._serialize.body(body, 'GrafanaResourceUpdateParameters') - else: - _json = None + _json = self._serialize.body(request_body_parameters, 'ManagedGrafanaUpdateParameters') request = build_update_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, workspace_name=workspace_name, + api_version=api_version, content_type=content_type, json=_json, template_url=self.update.metadata['url'], + headers=_headers, + params=_params, ) request = _convert_request(request) - request.url = self._client.format_url(request.url) + request.url = self._client.format_url(request.url) # type: ignore - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response - if response.status_code not in [200]: + if response.status_code not in [200, 202]: map_error(status_code=response.status_code, response=response, error_map=error_map) error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - deserialized = self._deserialize('GrafanaResource', pipeline_response) + if response.status_code == 200: + deserialized = self._deserialize('ManagedGrafana', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('ManagedGrafana', pipeline_response) if cls: return cls(pipeline_response, deserialized, {}) return deserialized - update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}'} # type: ignore + update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}"} # type: ignore - def _delete_initial( + def _delete_initial( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, workspace_name: str, **kwargs: Any ) -> None: - cls = kwargs.pop('cls', None) # type: ClsType[None] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } - error_map.update(kwargs.pop('error_map', {})) + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + cls = kwargs.pop('cls', None) # type: ClsType[None] request = build_delete_request_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, workspace_name=workspace_name, + api_version=api_version, template_url=self._delete_initial.metadata['url'], + headers=_headers, + params=_params, ) request = _convert_request(request) - request.url = self._client.format_url(request.url) + request.url = self._client.format_url(request.url) # type: ignore - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200, 202, 204]: @@ -691,11 +782,11 @@ def _delete_initial( if cls: return cls(pipeline_response, None, {}) - _delete_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}'} # type: ignore + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}"} # type: ignore @distributed_trace - def begin_delete( + def begin_delete( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, workspace_name: str, @@ -707,7 +798,7 @@ def begin_delete( :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str - :param workspace_name: The name of Azure Managed Workspace for Grafana. + :param workspace_name: The workspace name of Azure Managed Grafana. :type workspace_name: str :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. @@ -721,18 +812,25 @@ def begin_delete( :rtype: ~azure.core.polling.LROPoller[None] :raises: ~azure.core.exceptions.HttpResponseError """ - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.PollingMethod] + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str cls = kwargs.pop('cls', None) # type: ClsType[None] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] lro_delay = kwargs.pop( 'polling_interval', self._config.polling_interval ) cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] if cont_token is None: - raw_result = self._delete_initial( + raw_result = self._delete_initial( # type: ignore resource_group_name=resource_group_name, workspace_name=workspace_name, + api_version=api_version, cls=lambda x,y,z: x, + headers=_headers, + params=_params, **kwargs ) kwargs.pop('error_map', None) @@ -742,8 +840,14 @@ def get_long_running_output(pipeline_response): return cls(pipeline_response, None, {}) - if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) - elif polling is False: polling_method = NoPolling() + if polling is True: + polling_method = cast(PollingMethod, ARMPolling( + lro_delay, + lro_options={'final-state-via': 'azure-async-operation'}, + + **kwargs + )) # type: PollingMethod + elif polling is False: polling_method = cast(PollingMethod, NoPolling()) else: polling_method = polling if cont_token: return LROPoller.from_continuation_token( @@ -752,7 +856,6 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}'} # type: ignore + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}"} # type: ignore diff --git a/src/amg/azext_amg/vendored_sdks/operations/_operations.py b/src/amg/azext_amg/vendored_sdks/operations/_operations.py index 9102d9ad46f..b02140f432d 100644 --- a/src/amg/azext_amg/vendored_sdks/operations/_operations.py +++ b/src/amg/azext_amg/vendored_sdks/operations/_operations.py @@ -1,3 +1,4 @@ +# pylint: disable=too-many-lines # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. @@ -5,9 +6,9 @@ # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -import functools -from typing import Any, Callable, Dict, Generic, Iterable, Optional, TypeVar -import warnings +from typing import Any, Callable, Dict, Iterable, Optional, TypeVar + +from msrest import Serializer from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error from azure.core.paging import ItemPaged @@ -15,8 +16,8 @@ from azure.core.pipeline.transport import HttpResponse from azure.core.rest import HttpRequest from azure.core.tracing.decorator import distributed_trace +from azure.core.utils import case_insensitive_dict from azure.mgmt.core.exceptions import ARMErrorFormat -from msrest import Serializer from .. import models as _models from .._vendor import _convert_request @@ -29,84 +30,95 @@ def build_list_request( **kwargs: Any ) -> HttpRequest: - api_version = "2021-09-01-preview" - accept = "application/json" + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + accept = _headers.pop('Accept', "application/json") + # Construct URL - url = kwargs.pop("template_url", '/providers/Microsoft.Dashboard/operations') + _url = kwargs.pop("template_url", "/providers/Microsoft.Dashboard/operations") # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="GET", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_params, + headers=_headers, **kwargs ) -class Operations(object): - """Operations operations. - - You should not instantiate this class directly. Instead, you should create a Client instance that - instantiates it for you and attaches it as an attribute. +class Operations: + """ + .. warning:: + **DO NOT** instantiate this class directly. - :ivar models: Alias to model classes used in this operation group. - :type models: ~dashboard_management_client.models - :param client: Client for service requests. - :param config: Configuration of service client. - :param serializer: An object model serializer. - :param deserializer: An object model deserializer. + Instead, you should access the following operations through + :class:`~azure.mgmt.dashboard.DashboardManagementClient`'s + :attr:`operations` attribute. """ models = _models - def __init__(self, client, config, serializer, deserializer): - self._client = client - self._serialize = serializer - self._deserialize = deserializer - self._config = config + def __init__(self, *args, **kwargs): + input_args = list(args) + self._client = input_args.pop(0) if input_args else kwargs.pop("client") + self._config = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer") + @distributed_trace def list( self, **kwargs: Any - ) -> Iterable["_models.OperationListResult"]: + ) -> Iterable[_models.OperationListResult]: """List all available API operations provided by Microsoft.Dashboard. List all available API operations provided by Microsoft.Dashboard. :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either OperationListResult or the result of cls(response) - :rtype: ~azure.core.paging.ItemPaged[~dashboard_management_client.models.OperationListResult] + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.dashboard.models.OperationListResult] :raises: ~azure.core.exceptions.HttpResponseError """ - cls = kwargs.pop('cls', None) # type: ClsType["_models.OperationListResult"] + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + cls = kwargs.pop('cls', None) # type: ClsType[_models.OperationListResult] + error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } - error_map.update(kwargs.pop('error_map', {})) + error_map.update(kwargs.pop('error_map', {}) or {}) def prepare_request(next_link=None): if not next_link: request = build_list_request( + api_version=api_version, template_url=self.list.metadata['url'], + headers=_headers, + params=_params, ) request = _convert_request(request) - request.url = self._client.format_url(request.url) + request.url = self._client.format_url(request.url) # type: ignore else: request = build_list_request( + api_version=api_version, template_url=next_link, + headers=_headers, + params=_params, ) request = _convert_request(request) - request.url = self._client.format_url(request.url) + request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" return request @@ -120,7 +132,11 @@ def extract_data(pipeline_response): def get_next(next_link=None): request = prepare_request(next_link) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -134,4 +150,4 @@ def get_next(next_link=None): return ItemPaged( get_next, extract_data ) - list.metadata = {'url': '/providers/Microsoft.Dashboard/operations'} # type: ignore + list.metadata = {'url': "/providers/Microsoft.Dashboard/operations"} # type: ignore diff --git a/src/amg/azext_amg/vendored_sdks/operations/_patch.py b/src/amg/azext_amg/vendored_sdks/operations/_patch.py new file mode 100644 index 00000000000..0ad201a8c58 --- /dev/null +++ b/src/amg/azext_amg/vendored_sdks/operations/_patch.py @@ -0,0 +1,19 @@ +# ------------------------------------ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. +# ------------------------------------ +"""Customize generated code here. + +Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize +""" +from typing import List + +__all__: List[str] = [] # Add all objects you want publicly available to users at this package level + +def patch_sdk(): + """Do not remove from this file. + + `patch_sdk` is a last resort escape hatch that allows you to do customizations + you can't accomplish using the techniques described in + https://aka.ms/azsdk/python/dpcodegen/python/customize + """ diff --git a/src/amg/azext_amg/vendored_sdks/operations/_private_endpoint_connections_operations.py b/src/amg/azext_amg/vendored_sdks/operations/_private_endpoint_connections_operations.py new file mode 100644 index 00000000000..356e362603b --- /dev/null +++ b/src/amg/azext_amg/vendored_sdks/operations/_private_endpoint_connections_operations.py @@ -0,0 +1,654 @@ +# pylint: disable=too-many-lines +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, Callable, Dict, Iterable, Optional, TypeVar, Union, cast + +from msrest import Serializer + +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpResponse +from azure.core.polling import LROPoller, NoPolling, PollingMethod +from azure.core.rest import HttpRequest +from azure.core.tracing.decorator import distributed_trace +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.arm_polling import ARMPolling + +from .. import models as _models +from .._vendor import _convert_request, _format_url_section +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] + +_SERIALIZER = Serializer() +_SERIALIZER.client_side_validation = False + +def build_get_request( + subscription_id: str, + resource_group_name: str, + workspace_name: str, + private_endpoint_connection_name: str, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + accept = _headers.pop('Accept', "application/json") + + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}/privateEndpointConnections/{privateEndpointConnectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + "workspaceName": _SERIALIZER.url("workspace_name", workspace_name, 'str'), + "privateEndpointConnectionName": _SERIALIZER.url("private_endpoint_connection_name", private_endpoint_connection_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_params, + headers=_headers, + **kwargs + ) + + +def build_approve_request_initial( + subscription_id: str, + resource_group_name: str, + workspace_name: str, + private_endpoint_connection_name: str, + *, + json: Optional[_models.PrivateEndpointConnection] = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str] + accept = _headers.pop('Accept', "application/json") + + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}/privateEndpointConnections/{privateEndpointConnectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + "workspaceName": _SERIALIZER.url("workspace_name", workspace_name, 'str'), + "privateEndpointConnectionName": _SERIALIZER.url("private_endpoint_connection_name", private_endpoint_connection_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + if content_type is not None: + _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_params, + headers=_headers, + json=json, + content=content, + **kwargs + ) + + +def build_delete_request_initial( + subscription_id: str, + resource_group_name: str, + workspace_name: str, + private_endpoint_connection_name: str, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + accept = _headers.pop('Accept', "application/json") + + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}/privateEndpointConnections/{privateEndpointConnectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + "workspaceName": _SERIALIZER.url("workspace_name", workspace_name, 'str'), + "privateEndpointConnectionName": _SERIALIZER.url("private_endpoint_connection_name", private_endpoint_connection_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_params, + headers=_headers, + **kwargs + ) + + +def build_list_request( + subscription_id: str, + resource_group_name: str, + workspace_name: str, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + accept = _headers.pop('Accept', "application/json") + + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}/privateEndpointConnections") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + "workspaceName": _SERIALIZER.url("workspace_name", workspace_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_params, + headers=_headers, + **kwargs + ) + +class PrivateEndpointConnectionsOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.dashboard.DashboardManagementClient`'s + :attr:`private_endpoint_connections` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs): + input_args = list(args) + self._client = input_args.pop(0) if input_args else kwargs.pop("client") + self._config = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + + @distributed_trace + def get( + self, + resource_group_name: str, + workspace_name: str, + private_endpoint_connection_name: str, + **kwargs: Any + ) -> _models.PrivateEndpointConnection: + """Get private endpoint connections. + + Get private endpoint connections. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param workspace_name: The workspace name of Azure Managed Grafana. + :type workspace_name: str + :param private_endpoint_connection_name: The private endpoint connection name of Azure Managed + Grafana. + :type private_endpoint_connection_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PrivateEndpointConnection, or the result of cls(response) + :rtype: ~azure.mgmt.dashboard.models.PrivateEndpointConnection + :raises: ~azure.core.exceptions.HttpResponseError + """ + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + cls = kwargs.pop('cls', None) # type: ClsType[_models.PrivateEndpointConnection] + + + request = build_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + workspace_name=workspace_name, + private_endpoint_connection_name=private_endpoint_connection_name, + api_version=api_version, + template_url=self.get.metadata['url'], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) # type: ignore + + pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PrivateEndpointConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}/privateEndpointConnections/{privateEndpointConnectionName}"} # type: ignore + + + def _approve_initial( + self, + resource_group_name: str, + workspace_name: str, + private_endpoint_connection_name: str, + body: Optional[_models.PrivateEndpointConnection] = None, + **kwargs: Any + ) -> _models.PrivateEndpointConnection: + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str] + cls = kwargs.pop('cls', None) # type: ClsType[_models.PrivateEndpointConnection] + + if body is not None: + _json = self._serialize.body(body, 'PrivateEndpointConnection') + else: + _json = None + + request = build_approve_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + workspace_name=workspace_name, + private_endpoint_connection_name=private_endpoint_connection_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._approve_initial.metadata['url'], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) # type: ignore + + pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PrivateEndpointConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _approve_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}/privateEndpointConnections/{privateEndpointConnectionName}"} # type: ignore + + + @distributed_trace + def begin_approve( + self, + resource_group_name: str, + workspace_name: str, + private_endpoint_connection_name: str, + body: Optional[_models.PrivateEndpointConnection] = None, + **kwargs: Any + ) -> LROPoller[_models.PrivateEndpointConnection]: + """Manual approve private endpoint connection. + + Manual approve private endpoint connection. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param workspace_name: The workspace name of Azure Managed Grafana. + :type workspace_name: str + :param private_endpoint_connection_name: The private endpoint connection name of Azure Managed + Grafana. + :type private_endpoint_connection_name: str + :param body: Default value is None. + :type body: ~azure.mgmt.dashboard.models.PrivateEndpointConnection + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either PrivateEndpointConnection or the result + of cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.dashboard.models.PrivateEndpointConnection] + :raises: ~azure.core.exceptions.HttpResponseError + """ + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + content_type = kwargs.pop('content_type', _headers.pop('Content-Type', "application/json")) # type: Optional[str] + cls = kwargs.pop('cls', None) # type: ClsType[_models.PrivateEndpointConnection] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._approve_initial( # type: ignore + resource_group_name=resource_group_name, + workspace_name=workspace_name, + private_endpoint_connection_name=private_endpoint_connection_name, + body=body, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + headers=_headers, + params=_params, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('PrivateEndpointConnection', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: + polling_method = cast(PollingMethod, ARMPolling( + lro_delay, + lro_options={'final-state-via': 'azure-async-operation'}, + + **kwargs + )) # type: PollingMethod + elif polling is False: polling_method = cast(PollingMethod, NoPolling()) + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_approve.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}/privateEndpointConnections/{privateEndpointConnectionName}"} # type: ignore + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + workspace_name: str, + private_endpoint_connection_name: str, + **kwargs: Any + ) -> None: + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + cls = kwargs.pop('cls', None) # type: ClsType[None] + + + request = build_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + workspace_name=workspace_name, + private_endpoint_connection_name=private_endpoint_connection_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) # type: ignore + + pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}/privateEndpointConnections/{privateEndpointConnectionName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + workspace_name: str, + private_endpoint_connection_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Delete private endpoint connection. + + Delete private endpoint connection. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param workspace_name: The workspace name of Azure Managed Grafana. + :type workspace_name: str + :param private_endpoint_connection_name: The private endpoint connection name of Azure Managed + Grafana. + :type private_endpoint_connection_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + cls = kwargs.pop('cls', None) # type: ClsType[None] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( # type: ignore + resource_group_name=resource_group_name, + workspace_name=workspace_name, + private_endpoint_connection_name=private_endpoint_connection_name, + api_version=api_version, + cls=lambda x,y,z: x, + headers=_headers, + params=_params, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: + polling_method = cast(PollingMethod, ARMPolling( + lro_delay, + lro_options={'final-state-via': 'azure-async-operation'}, + + **kwargs + )) # type: PollingMethod + elif polling is False: polling_method = cast(PollingMethod, NoPolling()) + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}/privateEndpointConnections/{privateEndpointConnectionName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + workspace_name: str, + **kwargs: Any + ) -> Iterable[_models.PrivateEndpointConnectionListResult]: + """Get private endpoint connection. + + Get private endpoint connection. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param workspace_name: The workspace name of Azure Managed Grafana. + :type workspace_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PrivateEndpointConnectionListResult or the result + of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.dashboard.models.PrivateEndpointConnectionListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + cls = kwargs.pop('cls', None) # type: ClsType[_models.PrivateEndpointConnectionListResult] + + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + def prepare_request(next_link=None): + if not next_link: + + request = build_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + workspace_name=workspace_name, + api_version=api_version, + template_url=self.list.metadata['url'], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) # type: ignore + + else: + + request = build_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + workspace_name=workspace_name, + api_version=api_version, + template_url=next_link, + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) # type: ignore + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("PrivateEndpointConnectionListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}/privateEndpointConnections"} # type: ignore diff --git a/src/amg/azext_amg/vendored_sdks/operations/_private_link_resources_operations.py b/src/amg/azext_amg/vendored_sdks/operations/_private_link_resources_operations.py new file mode 100644 index 00000000000..2c3319bb4f0 --- /dev/null +++ b/src/amg/azext_amg/vendored_sdks/operations/_private_link_resources_operations.py @@ -0,0 +1,286 @@ +# pylint: disable=too-many-lines +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, Callable, Dict, Iterable, Optional, TypeVar + +from msrest import Serializer + +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpResponse +from azure.core.rest import HttpRequest +from azure.core.tracing.decorator import distributed_trace +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat + +from .. import models as _models +from .._vendor import _convert_request, _format_url_section +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] + +_SERIALIZER = Serializer() +_SERIALIZER.client_side_validation = False + +def build_list_request( + subscription_id: str, + resource_group_name: str, + workspace_name: str, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + accept = _headers.pop('Accept', "application/json") + + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}/privateLinkResources") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + "workspaceName": _SERIALIZER.url("workspace_name", workspace_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_params, + headers=_headers, + **kwargs + ) + + +def build_get_request( + subscription_id: str, + resource_group_name: str, + workspace_name: str, + private_link_resource_name: str, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + accept = _headers.pop('Accept', "application/json") + + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}/privateLinkResources/{privateLinkResourceName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + "workspaceName": _SERIALIZER.url("workspace_name", workspace_name, 'str'), + "privateLinkResourceName": _SERIALIZER.url("private_link_resource_name", private_link_resource_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_params, + headers=_headers, + **kwargs + ) + +class PrivateLinkResourcesOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.dashboard.DashboardManagementClient`'s + :attr:`private_link_resources` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs): + input_args = list(args) + self._client = input_args.pop(0) if input_args else kwargs.pop("client") + self._config = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + + @distributed_trace + def list( + self, + resource_group_name: str, + workspace_name: str, + **kwargs: Any + ) -> Iterable[_models.PrivateLinkResourceListResult]: + """List all private link resources information for this grafana resource. + + List all private link resources information for this grafana resource. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param workspace_name: The workspace name of Azure Managed Grafana. + :type workspace_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PrivateLinkResourceListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.dashboard.models.PrivateLinkResourceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + cls = kwargs.pop('cls', None) # type: ClsType[_models.PrivateLinkResourceListResult] + + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + def prepare_request(next_link=None): + if not next_link: + + request = build_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + workspace_name=workspace_name, + api_version=api_version, + template_url=self.list.metadata['url'], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) # type: ignore + + else: + + request = build_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + workspace_name=workspace_name, + api_version=api_version, + template_url=next_link, + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) # type: ignore + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("PrivateLinkResourceListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}/privateLinkResources"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + workspace_name: str, + private_link_resource_name: str, + **kwargs: Any + ) -> _models.PrivateLinkResource: + """Get specific private link resource information for this grafana resource. + + Get specific private link resource information for this grafana resource. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param workspace_name: The workspace name of Azure Managed Grafana. + :type workspace_name: str + :param private_link_resource_name: + :type private_link_resource_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PrivateLinkResource, or the result of cls(response) + :rtype: ~azure.mgmt.dashboard.models.PrivateLinkResource + :raises: ~azure.core.exceptions.HttpResponseError + """ + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-08-01")) # type: str + cls = kwargs.pop('cls', None) # type: ClsType[_models.PrivateLinkResource] + + + request = build_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + workspace_name=workspace_name, + private_link_resource_name=private_link_resource_name, + api_version=api_version, + template_url=self.get.metadata['url'], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) # type: ignore + + pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PrivateLinkResource', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}/privateLinkResources/{privateLinkResourceName}"} # type: ignore + diff --git a/src/amg/setup.py b/src/amg/setup.py index eb81734685f..9d7996d2832 100644 --- a/src/amg/setup.py +++ b/src/amg/setup.py @@ -16,9 +16,7 @@ # TODO: Confirm this is the right version number you want and it matches your # HISTORY.rst entry. - -VERSION = '0.1.3' - +VERSION = '0.2.0' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers From ec39c71193f6735f25f7caa43975ca60988bd515 Mon Sep 17 00:00:00 2001 From: rguptar <69279773+rguptar@users.noreply.github.com> Date: Sun, 7 Aug 2022 18:34:41 -0700 Subject: [PATCH 2/7] [serial-console] Add support for managed boot diagnostics storage account (#5203) * Add support for managed boot diagnostics storage account * Fix typo in help --- src/serial-console/HISTORY.rst | 4 + .../azext_serialconsole/_help.py | 2 +- .../azext_serialconsole/custom.py | 28 +- .../recordings/test_check_resource_VM.yaml | 1635 ++++++++------ .../recordings/test_check_resource_VMSS.yaml | 1986 +++++++++-------- .../recordings/test_enable_disable.yaml | 16 +- .../latest/test_serialconsole_scenario.py | 15 +- src/serial-console/setup.py | 2 +- 8 files changed, 2001 insertions(+), 1687 deletions(-) diff --git a/src/serial-console/HISTORY.rst b/src/serial-console/HISTORY.rst index 267601a795b..1b68bd0f626 100644 --- a/src/serial-console/HISTORY.rst +++ b/src/serial-console/HISTORY.rst @@ -1,6 +1,10 @@ Release History =============== +0.1.2 +++++++ +* Change to make custom boot diagnostics optional + 0.1.1 ++++++ * Change to require custom boot diagnostics diff --git a/src/serial-console/azext_serialconsole/_help.py b/src/serial-console/azext_serialconsole/_help.py index e98c68c3312..ba8df3e6652 100644 --- a/src/serial-console/azext_serialconsole/_help.py +++ b/src/serial-console/azext_serialconsole/_help.py @@ -9,7 +9,7 @@ helps['serial-console'] = """ type: group - short-summary: Connent to the Serial Console of a Linux/Windows Virtual Machine or VMSS Instance. + short-summary: Connect to the Serial Console of a Linux/Windows Virtual Machine or VMSS Instance. """ helps['serial-console send'] = """ diff --git a/src/serial-console/azext_serialconsole/custom.py b/src/serial-console/azext_serialconsole/custom.py index 1c6ee3d0202..c225b61b2a8 100644 --- a/src/serial-console/azext_serialconsole/custom.py +++ b/src/serial-console/azext_serialconsole/custom.py @@ -597,14 +597,14 @@ def check_resource(cli_ctx, resource_group_name, vm_vmss_name, vmss_instanceid): raise AzureConnectionError( error_message, recommendation=recommendation) - if result.boot_diagnostics is None or result.boot_diagnostics.serial_console_log_blob_uri is None: - error_message = ("Azure Serial Console requires boot diagnostics to be enabled. Additionally, " - "Serial Console requires a custom boot diagnostics storage account to be " - "used, and is not yet fully compatible with managed boot diagnostics storage accounts.") + if result.boot_diagnostics is None: + error_message = ("Azure Serial Console requires boot diagnostics to be enabled.") recommendation = ('Use "az vmss update --name MyScaleSet --resource-group MyResourceGroup --set ' 'virtualMachineProfile.diagnosticsProfile="{\\"bootDiagnostics\\": {\\"Enabled\\" : ' - '\\"True\\",\\"StorageUri\\":\\"https://mystorageacct.blob.core.windows.net/\\"}}""' - 'to enable boot diagnostics.') + '\\"True\\",\\"StorageUri\\" : null}}"" to enable boot diagnostics. ' + 'You can replace "null" with a custom storage account ' + '\\"https://mystor.blob.windows.net/"\\. Then run "az vmss update-instances -n ' + 'MyScaleSet -g MyResourceGroup --instance-ids *".') raise AzureConnectionError( error_message, recommendation=recommendation) else: @@ -640,21 +640,13 @@ def check_resource(cli_ctx, resource_group_name, vm_vmss_name, vmss_instanceid): raise AzureConnectionError( error_message, recommendation=recommendation) - recommendation = ('Use "az vm boot-diagnostics enable --name MyVM --resource-group MyResourceGroup ' - '--storage https://mystor.blob.core.windows.net/" to enable boot diagnostics and ' - 'make sure to specify a storage account with the --storage parameter.') - if (result.diagnostics_profile is None or result.diagnostics_profile.boot_diagnostics is None or not result.diagnostics_profile.boot_diagnostics.enabled): - error_message = ("Azure Serial Console requires boot diagnostics to be enabled. Additionally, " - "Serial Console requires a custom boot diagnostics storage account to be " - "used, and is not yet fully compatible with managed boot diagnostics storage accounts.") - raise AzureConnectionError( - error_message, recommendation=recommendation) - if result.diagnostics_profile.boot_diagnostics.storage_uri is None: - error_message = ("Serial Console requires a custom boot diagnostics storage account to be used, " - "and is not yet fully compatible with managed boot diagnostics storage accounts.") + error_message = ("Azure Serial Console requires boot diagnostics to be enabled.") + recommendation = ('Use "az vm boot-diagnostics enable --name MyVM --resource-group MyResourceGroup" ' + 'to enable boot diagnostics. You can specify a custom storage account with the ' + 'parameter "--storage https://mystor.blob.windows.net/".') raise AzureConnectionError( error_message, recommendation=recommendation) diff --git a/src/serial-console/azext_serialconsole/tests/latest/recordings/test_check_resource_VM.yaml b/src/serial-console/azext_serialconsole/tests/latest/recordings/test_check_resource_VM.yaml index ec68f3b82e4..ae7e7197e16 100644 --- a/src/serial-console/azext_serialconsole/tests/latest/recordings/test_check_resource_VM.yaml +++ b/src/serial-console/azext_serialconsole/tests/latest/recordings/test_check_resource_VM.yaml @@ -11,8 +11,8 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -26,7 +26,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 03:07:12 GMT + - Thu, 04 Aug 2022 17:10:29 GMT expires: - '-1' pragma: @@ -58,9 +58,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/virtualMachines/cli000003'' @@ -70,11 +70,11 @@ interactions: cache-control: - no-cache content-length: - - '305' + - '243' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:07:13 GMT + - Thu, 04 Aug 2022 17:10:30 GMT expires: - '-1' pragma: @@ -100,9 +100,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/virtualMachineScaleSets/cli000003'' @@ -112,11 +112,11 @@ interactions: cache-control: - no-cache content-length: - - '313' + - '251' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:07:14 GMT + - Thu, 04 Aug 2022 17:10:30 GMT expires: - '-1' pragma: @@ -142,8 +142,8 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -157,7 +157,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 03:07:15 GMT + - Thu, 04 Aug 2022 17:10:31 GMT expires: - '-1' pragma: @@ -189,9 +189,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/0/instanceView?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/0/instanceView?api-version=2022-03-01 response: body: string: '{"error":{"code":"ParentResourceNotFound","message":"Can not perform @@ -201,11 +201,11 @@ interactions: cache-control: - no-cache content-length: - - '165' + - '150' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:07:16 GMT + - Thu, 04 Aug 2022 17:10:31 GMT expires: - '-1' pragma: @@ -229,9 +229,9 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.25.1 + - python-requests/2.26.0 method: GET - uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json + uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json response: body: string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n @@ -239,36 +239,47 @@ interactions: {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n - \ \"sku\": \"7.5\",\n \"version\": \"latest\"\n },\n - \ \"Debian\": {\n \"publisher\": \"Debian\",\n \"offer\": - \"debian-10\",\n \"sku\": \"10\",\n \"version\": \"latest\"\n + \ \"sku\": \"7.5\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Debian\": {\n \"publisher\": + \"Debian\",\n \"offer\": \"debian-10\",\n \"sku\": \"10\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": - \"stable\",\n \"version\": \"latest\"\n },\n \"openSUSE-Leap\": - {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n - \ \"sku\": \"42.3\",\n \"version\": \"latest\"\n },\n - \ \"RHEL\": {\n \"publisher\": \"RedHat\",\n \"offer\": - \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n - \ },\n \"SLES\": {\n \"publisher\": \"SUSE\",\n - \ \"offer\": \"SLES\",\n \"sku\": \"15\",\n \"version\": - \"latest\"\n },\n \"UbuntuLTS\": {\n \"publisher\": + \"stable\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": + \"SUSE\",\n \"offer\": \"opensuse-leap-15-3\",\n \"sku\": + \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHEL\": {\n \"publisher\": \"RedHat\",\n + \ \"offer\": \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": + \"latest\",\n \"architecture\": \"x64\"\n },\n \"SLES\": + {\n \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": - \"18.04-LTS\",\n \"version\": \"latest\"\n }\n },\n - \ \"Windows\": {\n \"Win2019Datacenter\": {\n \"publisher\": - \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2019-Datacenter\",\n \"version\": \"latest\"\n },\n - \ \"Win2016Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n - \ \"version\": \"latest\"\n },\n \"Win2012R2Datacenter\": + \"18.04-LTS\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n }\n },\n \"Windows\": {\n \"Win2022Datacenter\": + {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": + \"WindowsServer\",\n \"sku\": \"2022-Datacenter\",\n \"version\": + \"latest\",\n \"architecture\": \"x64\"\n },\n \"Win2022AzureEditionCore\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2012-R2-Datacenter\",\n \"version\": - \"latest\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": + \"WindowsServer\",\n \"sku\": \"2022-datacenter-azure-edition-core\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"Win2019Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2019-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2016Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2016-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-R2-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2012-Datacenter\",\n \"version\": \"latest\"\n },\n - \ \"Win2008R2SP1\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n - \ \"version\": \"latest\"\n }\n }\n }\n }\n - \ }\n}\n" + \"2012-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n }\n }\n }\n }\n }\n}" headers: accept-ranges: - bytes @@ -279,19 +290,19 @@ interactions: connection: - keep-alive content-length: - - '2525' + - '3463' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: - text/plain; charset=utf-8 date: - - Thu, 28 Oct 2021 03:07:18 GMT + - Thu, 04 Aug 2022 17:10:32 GMT etag: - - W/"54bceef15b892f2aa7f4c2145a49f1b5e33608722acdbb47933d7b6cbebbd7f4" + - W/"41b202f4dc5098d126019dc00721a4c5e30df0c5196794514fadc3710ee2a5cb" expires: - - Thu, 28 Oct 2021 03:12:18 GMT + - Thu, 04 Aug 2022 17:15:32 GMT source-age: - - '0' + - '154' strict-transport-security: - max-age=31536000 vary: @@ -299,26 +310,137 @@ interactions: via: - 1.1 varnish x-cache: - - MISS + - HIT x-cache-hits: - - '0' + - '1' x-content-type-options: - nosniff x-fastly-request-id: - - 3511bd2c275753d1a32eaac27f0dd80f017d795b + - e094d23543d00b0b2fb9b969ba4aaaf5e3e68b2f x-frame-options: - deny x-github-request-id: - - 9676:31F6:A82E9A:C1375F:617A0DB6 + - 5064:23C7:122D3E:1DAA5F:62EBFB90 x-served-by: - - cache-nrt18348-NRT + - cache-pao17467-PAO x-timer: - - S1635390439.630696,VS0,VE151 + - S1659633032.083799,VS0,VE1 x-xss-protection: - 1; mode=block status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image -l --generate-ssh-keys + User-Agent: + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$top=1&$orderby=name%20desc&api-version=2022-03-01 + response: + body: + string: "[\r\n {\r\n \"location\": \"westus2\",\r\n \"name\": \"18.04.202207120\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus2/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202207120\"\r\n + \ }\r\n]" + headers: + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Aug 2022 17:10:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15991,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43971 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image -l --generate-ssh-keys + User-Agent: + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202207120?api-version=2022-03-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n + \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": + {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": + {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n + \ \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n + \ \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": + 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": + \"westus2\",\r\n \"name\": \"18.04.202207120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus2/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202207120\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1044' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Aug 2022 17:10:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetVMImageFromLocation3Min;12996,Microsoft.Compute/GetVMImageFromLocation30Min;73987 + status: + code: 200 + message: OK - request: body: null headers: @@ -333,7 +455,7 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: @@ -347,7 +469,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:07:19 GMT + - Thu, 04 Aug 2022 17:10:32 GMT expires: - '-1' pragma: @@ -383,7 +505,7 @@ interactions: {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"}, "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003PublicIP"}}}], "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkSecurityGroups/cli000003NSG"}}}, - {"apiVersion": "2021-07-01", "type": "Microsoft.Compute/virtualMachines", "name": + {"apiVersion": "2022-03-01", "type": "Microsoft.Compute/virtualMachines", "name": "cli000003", "location": "westus2", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/cli000003VMNic"], "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic", @@ -391,9 +513,9 @@ interactions: "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku": "18.04-LTS", "version": "latest"}}, "osProfile": {"computerName": "cli000003", - "adminUsername": "azureuser", "linuxConfiguration": {"disablePasswordAuthentication": - true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh", - "path": "/home/azureuser/.ssh/authorized_keys"}]}}}}}], "outputs": {}}, "parameters": + "adminUsername": "rhl", "linuxConfiguration": {"disablePasswordAuthentication": + true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5", + "path": "/home/rhl/.ssh/authorized_keys"}]}}}}}], "outputs": {}}, "parameters": {}, "mode": "incremental"}}' headers: Accept: @@ -405,29 +527,29 @@ interactions: Connection: - keep-alive Content-Length: - - '4059' + - '3604' Content-Type: - application/json ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vm_deploy_RHVVH3qF84oj8sQOO3Dj0WtAPiZmLFpK","name":"vm_deploy_RHVVH3qF84oj8sQOO3Dj0WtAPiZmLFpK","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3354594277500336887","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-10-28T03:07:24.181983Z","duration":"PT2.1247807S","correlationId":"e6db93dd-203d-4c1c-9e3a-eb410889cb60","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus2"]},{"resourceType":"networkSecurityGroups","locations":["westus2"]},{"resourceType":"publicIPAddresses","locations":["westus2"]},{"resourceType":"networkInterfaces","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkSecurityGroups/cli000003NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"cli000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli000003PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli000003VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli000003VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"cli000003"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vm_deploy_4DzMptweDBWqE0NyUzbtmyKes2ujJpLJ","name":"vm_deploy_4DzMptweDBWqE0NyUzbtmyKes2ujJpLJ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3174778786938806105","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-08-04T17:10:34.1268595Z","duration":"PT0.000621S","correlationId":"a96cd311-4406-46f5-b215-69ad6a4b319d","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus2"]},{"resourceType":"networkSecurityGroups","locations":["westus2"]},{"resourceType":"publicIPAddresses","locations":["westus2"]},{"resourceType":"networkInterfaces","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkSecurityGroups/cli000003NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"cli000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli000003PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli000003VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli000003VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"cli000003"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vm_deploy_RHVVH3qF84oj8sQOO3Dj0WtAPiZmLFpK/operationStatuses/08585662164434204449?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vm_deploy_4DzMptweDBWqE0NyUzbtmyKes2ujJpLJ/operationStatuses/08585419738520445305?api-version=2021-04-01 cache-control: - no-cache content-length: - - '2998' + - '2489' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:07:24 GMT + - Thu, 04 Aug 2022 17:10:33 GMT expires: - '-1' pragma: @@ -437,7 +559,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1198' status: code: 201 message: Created @@ -455,9 +577,9 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585662164434204449?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585419738520445305?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -469,7 +591,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:07:55 GMT + - Thu, 04 Aug 2022 17:11:03 GMT expires: - '-1' pragma: @@ -497,9 +619,9 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585662164434204449?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585419738520445305?api-version=2021-04-01 response: body: string: '{"status":"Succeeded"}' @@ -511,7 +633,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:08:25 GMT + - Thu, 04 Aug 2022 17:11:34 GMT expires: - '-1' pragma: @@ -539,21 +661,21 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vm_deploy_RHVVH3qF84oj8sQOO3Dj0WtAPiZmLFpK","name":"vm_deploy_RHVVH3qF84oj8sQOO3Dj0WtAPiZmLFpK","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3354594277500336887","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-10-28T03:08:03.3513444Z","duration":"PT41.2941421S","correlationId":"e6db93dd-203d-4c1c-9e3a-eb410889cb60","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus2"]},{"resourceType":"networkSecurityGroups","locations":["westus2"]},{"resourceType":"publicIPAddresses","locations":["westus2"]},{"resourceType":"networkInterfaces","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkSecurityGroups/cli000003NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"cli000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli000003PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli000003VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli000003VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"cli000003"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkSecurityGroups/cli000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vm_deploy_4DzMptweDBWqE0NyUzbtmyKes2ujJpLJ","name":"vm_deploy_4DzMptweDBWqE0NyUzbtmyKes2ujJpLJ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3174778786938806105","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-08-04T17:11:17.2771259Z","duration":"PT43.1508874S","correlationId":"a96cd311-4406-46f5-b215-69ad6a4b319d","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus2"]},{"resourceType":"networkSecurityGroups","locations":["westus2"]},{"resourceType":"publicIPAddresses","locations":["westus2"]},{"resourceType":"networkInterfaces","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkSecurityGroups/cli000003NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"cli000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli000003PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli000003VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli000003VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"cli000003"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkSecurityGroups/cli000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET"}]}}' headers: cache-control: - no-cache content-length: - - '4169' + - '3350' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:08:25 GMT + - Thu, 04 Aug 2022 17:11:34 GMT expires: - '-1' pragma: @@ -581,62 +703,64 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202110250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\",\r\n + \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"azureuser\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": \"cli000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.5.0.2\",\r\n \"statuses\": + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.3.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2021-10-28T03:08:10+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\",\r\n + \"2022-08-04T17:11:30+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-10-28T03:07:47.8603491+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-08-04T17:10:51.5255088+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-10-28T03:08:00.5321724+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-08-04T17:11:16.4472219+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n - \ }\r\n ]\r\n }\r\n }\r\n}" + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '4072' + - '3913' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:08:29 GMT + - Thu, 04 Aug 2022 17:11:35 GMT expires: - '-1' pragma: @@ -653,7 +777,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31974 + - Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31940 status: code: 200 message: OK @@ -671,18 +795,18 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"cli000003VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\",\r\n - \ \"etag\": \"W/\\\"72b68953-b85d-4a7b-9ad3-bdaa42cc8332\\\"\",\r\n \"location\": - \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"04fa1b64-c771-4bdc-9ade-b61b8606441f\",\r\n - \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigcli000003\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic/ipConfigurations/ipconfigcli000003\",\r\n - \ \"etag\": \"W/\\\"72b68953-b85d-4a7b-9ad3-bdaa42cc8332\\\"\",\r\n + \ \"etag\": \"W/\\\"aa101b49-17b4-47d7-b456-b0440c039d94\\\"\",\r\n \"tags\": + {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"601b5ed0-d41f-4643-8e93-f1c73b03c315\",\r\n \"ipConfigurations\": + [\r\n {\r\n \"name\": \"ipconfigcli000003\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic/ipConfigurations/ipconfigcli000003\",\r\n + \ \"etag\": \"W/\\\"aa101b49-17b4-47d7-b456-b0440c039d94\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -691,24 +815,25 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"budvgf443mwurllcffbhqdaonc.xx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-78-5B-F0\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"kzhglzq3n3getbkfek1c4nh5uc.xx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-77-28-51\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkSecurityGroups/cli000003NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\"\r\n - \ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + \ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n + \ \"location\": \"westus2\"\r\n}" headers: cache-control: - no-cache content-length: - - '2779' + - '2347' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:08:30 GMT + - Thu, 04 Aug 2022 17:11:34 GMT etag: - - W/"72b68953-b85d-4a7b-9ad3-bdaa42cc8332" + - W/"aa101b49-17b4-47d7-b456-b0440c039d94" expires: - '-1' pragma: @@ -725,7 +850,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d77ae8ed-c8d2-45df-b21c-54d5bc54bfed + - 55f55800-aef1-4d1c-91b7-4e700fa97487 status: code: 200 message: OK @@ -743,16 +868,16 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003PublicIP?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"cli000003PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003PublicIP\",\r\n - \ \"etag\": \"W/\\\"d00fc467-d2e5-4e34-ac96-99f49d976444\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"0289d247-5917-4b30-b9a3-abdec4758c7f\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"37b01213-7d72-4563-84d9-848058dc2f72\",\r\n - \ \"ipAddress\": \"20.69.167.152\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"379f9ab3-9fbd-43b4-922e-1e62313bcd59\",\r\n + \ \"ipAddress\": \"20.112.39.82\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic/ipConfigurations/ipconfigcli000003\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -761,13 +886,13 @@ interactions: cache-control: - no-cache content-length: - - '1082' + - '927' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:08:30 GMT + - Thu, 04 Aug 2022 17:11:34 GMT etag: - - W/"d00fc467-d2e5-4e34-ac96-99f49d976444" + - W/"0289d247-5917-4b30-b9a3-abdec4758c7f" expires: - '-1' pragma: @@ -784,7 +909,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - deefcad6-8e3f-4868-83d8-47cb964ed6be + - 06230199-dc1b-4e72-9e85-320ed4ee9c4d status: code: 200 message: OK @@ -802,8 +927,8 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -817,7 +942,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 03:08:32 GMT + - Thu, 04 Aug 2022 17:11:35 GMT expires: - '-1' pragma: @@ -851,62 +976,64 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202110250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\",\r\n + \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"azureuser\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": \"cli000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.5.0.2\",\r\n \"statuses\": + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.3.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2021-10-28T03:08:10+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\",\r\n + \"2022-08-04T17:11:30+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-10-28T03:07:47.8603491+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-08-04T17:10:51.5255088+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-10-28T03:08:00.5321724+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-08-04T17:11:16.4472219+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n - \ }\r\n ]\r\n }\r\n }\r\n}" + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '4072' + - '3913' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:08:33 GMT + - Thu, 04 Aug 2022 17:11:35 GMT expires: - '-1' pragma: @@ -923,7 +1050,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31973 + - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31939 status: code: 200 message: OK @@ -941,45 +1068,47 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202110250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\",\r\n + \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"azureuser\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2740' + - '2608' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:08:35 GMT + - Thu, 04 Aug 2022 17:11:35 GMT expires: - '-1' pragma: @@ -996,19 +1125,19 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31972 + - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31938 status: code: 200 message: OK - request: body: '{"location": "westus2", "tags": {}, "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "storageProfile": {"osDisk": {"osType": "Linux", "name": - "cli000003_disk1_6199206330ee4a8498bd48c63ae90af4", "caching": "ReadWrite", - "createOption": "FromImage", "diskSizeGB": 30, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_6199206330ee4a8498bd48c63ae90af4", + "cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474", "caching": "ReadWrite", + "createOption": "FromImage", "diskSizeGB": 30, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474", "storageAccountType": "Premium_LRS"}, "deleteOption": "Detach"}, "dataDisks": - []}, "osProfile": {"computerName": "cli000003", "adminUsername": "azureuser", - "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": - [{"path": "/home/azureuser/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh"}]}, + []}, "osProfile": {"computerName": "cli000003", "adminUsername": "rhl", "linuxConfiguration": + {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/rhl/.ssh/authorized_keys", + "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5"}]}, "provisionVMAgent": true, "patchSettings": {"patchMode": "ImageDefault", "assessmentMode": "ImageDefault"}}, "secrets": [], "allowExtensionOperations": true, "requireGuestProvisionSignal": true}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic"}]}, @@ -1023,56 +1152,58 @@ interactions: Connection: - keep-alive Content-Length: - - '1796' + - '1636' Content-Type: - application/json ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202110250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\",\r\n + \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"azureuser\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": - true\r\n }\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}" + true\r\n }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n + \ \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/21934474-52a9-429d-be3d-5d2bd9ee0877?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/84c4b08a-9fe7-46e5-833f-e3caa74dba4f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - - '2838' + - '2706' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:08:40 GMT + - Thu, 04 Aug 2022 17:11:36 GMT expires: - '-1' pragma: @@ -1089,9 +1220,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1195 + - Microsoft.Compute/PutVM3Min;500,Microsoft.Compute/PutVM30Min;2507 x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1199' status: code: 200 message: OK @@ -1109,23 +1240,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/21934474-52a9-429d-be3d-5d2bd9ee0877?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/84c4b08a-9fe7-46e5-833f-e3caa74dba4f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T03:08:38.0321718+00:00\",\r\n \"endTime\": - \"2021-10-28T03:08:44.1415873+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"21934474-52a9-429d-be3d-5d2bd9ee0877\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:11:37.181473+00:00\",\r\n \"endTime\": + \"2022-08-04T17:11:42.3690015+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"84c4b08a-9fe7-46e5-833f-e3caa74dba4f\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:09:10 GMT + - Thu, 04 Aug 2022 17:12:07 GMT expires: - '-1' pragma: @@ -1142,7 +1273,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29901 + - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29871 status: code: 200 message: OK @@ -1160,47 +1291,48 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202110250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\",\r\n + \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"azureuser\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": - true\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n - \ }\r\n}" + true\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2839' + - '2707' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:09:10 GMT + - Thu, 04 Aug 2022 17:12:07 GMT expires: - '-1' pragma: @@ -1217,7 +1349,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31970 + - Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31933 status: code: 200 message: OK @@ -1235,8 +1367,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -1250,7 +1382,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 03:09:12 GMT + - Thu, 04 Aug 2022 17:12:08 GMT expires: - '-1' pragma: @@ -1284,65 +1416,67 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202110250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\",\r\n + \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"azureuser\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"instanceView\": {\r\n \"computerName\": \"cli000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n - \ \"vmAgentVersion\": \"2.5.0.2\",\r\n \"statuses\": [\r\n {\r\n + \ \"vmAgentVersion\": \"2.7.3.0\",\r\n \"statuses\": [\r\n {\r\n \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2021-10-28T03:08:46+00:00\"\r\n + \"Guest Agent is running\",\r\n \"time\": \"2022-08-04T17:11:48+00:00\"\r\n \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\",\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-10-28T03:08:38.5321689+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-08-04T17:11:37.6971283+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {},\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2021-10-28T03:08:44.1415873+00:00\"\r\n },\r\n + \ \"time\": \"2022-08-04T17:11:42.3533387+00:00\"\r\n },\r\n \ {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n - \ ]\r\n }\r\n }\r\n}" + \ ]\r\n },\r\n \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '4201' + - '4042' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:09:14 GMT + - Thu, 04 Aug 2022 17:12:08 GMT expires: - '-1' pragma: @@ -1359,7 +1493,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31969 + - Microsoft.Compute/LowCostGet3Min;3985,Microsoft.Compute/LowCostGet30Min;31932 status: code: 200 message: OK @@ -1367,7 +1501,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1379,25 +1513,25 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/deallocate?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/deallocate?api-version=2022-03-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b9f47f33-b52b-446b-a186-9375657e6a3f?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d7a758b8-1915-42bb-a410-7f6f3405c9bb?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 28 Oct 2021 03:09:16 GMT + - Thu, 04 Aug 2022 17:12:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b9f47f33-b52b-446b-a186-9375657e6a3f?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d7a758b8-1915-42bb-a410-7f6f3405c9bb?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -1408,9 +1542,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1197 + - Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1194 x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1198' status: code: 202 message: Accepted @@ -1428,13 +1562,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b9f47f33-b52b-446b-a186-9375657e6a3f?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d7a758b8-1915-42bb-a410-7f6f3405c9bb?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T03:09:16.7977844+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"b9f47f33-b52b-446b-a186-9375657e6a3f\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:12:09.1656681+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d7a758b8-1915-42bb-a410-7f6f3405c9bb\"\r\n}" headers: cache-control: - no-cache @@ -1443,7 +1577,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:09:26 GMT + - Thu, 04 Aug 2022 17:12:19 GMT expires: - '-1' pragma: @@ -1460,7 +1594,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29900 + - Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29870 status: code: 200 message: OK @@ -1478,14 +1612,14 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b9f47f33-b52b-446b-a186-9375657e6a3f?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d7a758b8-1915-42bb-a410-7f6f3405c9bb?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T03:09:16.7977844+00:00\",\r\n \"endTime\": - \"2021-10-28T03:09:47.0788847+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"b9f47f33-b52b-446b-a186-9375657e6a3f\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:12:09.1656681+00:00\",\r\n \"endTime\": + \"2022-08-04T17:12:38.2123701+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"d7a758b8-1915-42bb-a410-7f6f3405c9bb\"\r\n}" headers: cache-control: - no-cache @@ -1494,7 +1628,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:10:02 GMT + - Thu, 04 Aug 2022 17:12:55 GMT expires: - '-1' pragma: @@ -1511,7 +1645,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29919 + - Microsoft.Compute/GetOperation3Min;14962,Microsoft.Compute/GetOperation30Min;29856 status: code: 200 message: OK @@ -1529,9 +1663,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b9f47f33-b52b-446b-a186-9375657e6a3f?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d7a758b8-1915-42bb-a410-7f6f3405c9bb?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -1541,7 +1675,7 @@ interactions: content-length: - '0' date: - - Thu, 28 Oct 2021 03:10:03 GMT + - Thu, 04 Aug 2022 17:12:55 GMT expires: - '-1' pragma: @@ -1554,7 +1688,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29918 + - Microsoft.Compute/GetOperation3Min;14961,Microsoft.Compute/GetOperation30Min;29855 status: code: 200 message: OK @@ -1572,8 +1706,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -1587,7 +1721,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 03:10:04 GMT + - Thu, 04 Aug 2022 17:12:55 GMT expires: - '-1' pragma: @@ -1621,57 +1755,59 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202110250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\",\r\n + \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n - \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\"\r\n + \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n \ },\r\n \"deleteOption\": \"Detach\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n - \ \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n - \ \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n - \ \"publicKeys\": [\r\n {\r\n \"path\": \"/home/azureuser/.ssh/authorized_keys\",\r\n - \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \ \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"instanceView\": {\r\n \"disks\": [\r\n {\r\n \"name\": - \"cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\",\r\n \"statuses\": + \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-10-28T03:09:46.7820622+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-08-04T17:12:37.8998954+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {},\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2021-10-28T03:09:46.7976489+00:00\"\r\n },\r\n + \ \"time\": \"2022-08-04T17:12:37.9155549+00:00\"\r\n },\r\n \ {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n - \ ]\r\n }\r\n }\r\n}" + \ ]\r\n },\r\n \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '3645' + - '3501' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:10:06 GMT + - Thu, 04 Aug 2022 17:12:55 GMT expires: - '-1' pragma: @@ -1688,7 +1824,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31978 + - Microsoft.Compute/LowCostGet3Min;3980,Microsoft.Compute/LowCostGet30Min;31926 status: code: 200 message: OK @@ -1696,7 +1832,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1708,25 +1844,25 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/start?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/start?api-version=2022-03-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e36df34d-f489-45f8-a9c7-da246be1997e?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f7eea585-6ef7-480e-8e82-1309aec78928?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 28 Oct 2021 03:10:08 GMT + - Thu, 04 Aug 2022 17:12:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e36df34d-f489-45f8-a9c7-da246be1997e?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f7eea585-6ef7-480e-8e82-1309aec78928?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -1737,9 +1873,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1197 + - Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1195 x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 202 message: Accepted @@ -1757,13 +1893,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e36df34d-f489-45f8-a9c7-da246be1997e?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f7eea585-6ef7-480e-8e82-1309aec78928?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T03:10:08.0007768+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e36df34d-f489-45f8-a9c7-da246be1997e\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:12:56.6498162+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"f7eea585-6ef7-480e-8e82-1309aec78928\"\r\n}" headers: cache-control: - no-cache @@ -1772,7 +1908,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:10:18 GMT + - Thu, 04 Aug 2022 17:13:06 GMT expires: - '-1' pragma: @@ -1789,7 +1925,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29917 + - Microsoft.Compute/GetOperation3Min;14961,Microsoft.Compute/GetOperation30Min;29850 status: code: 200 message: OK @@ -1807,14 +1943,14 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e36df34d-f489-45f8-a9c7-da246be1997e?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f7eea585-6ef7-480e-8e82-1309aec78928?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T03:10:08.0007768+00:00\",\r\n \"endTime\": - \"2021-10-28T03:10:22.8757532+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"e36df34d-f489-45f8-a9c7-da246be1997e\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:12:56.6498162+00:00\",\r\n \"endTime\": + \"2022-08-04T17:13:14.8372222+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"f7eea585-6ef7-480e-8e82-1309aec78928\"\r\n}" headers: cache-control: - no-cache @@ -1823,7 +1959,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:10:27 GMT + - Thu, 04 Aug 2022 17:13:36 GMT expires: - '-1' pragma: @@ -1840,7 +1976,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29915 + - Microsoft.Compute/GetOperation3Min;14951,Microsoft.Compute/GetOperation30Min;29836 status: code: 200 message: OK @@ -1858,9 +1994,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e36df34d-f489-45f8-a9c7-da246be1997e?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f7eea585-6ef7-480e-8e82-1309aec78928?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -1870,7 +2006,7 @@ interactions: content-length: - '0' date: - - Thu, 28 Oct 2021 03:10:27 GMT + - Thu, 04 Aug 2022 17:13:36 GMT expires: - '-1' pragma: @@ -1883,7 +2019,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29914 + - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29834 status: code: 200 message: OK @@ -1891,7 +2027,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1903,25 +2039,25 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/powerOff?skipShutdown=false&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/powerOff?skipShutdown=false&api-version=2022-03-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/7824ad1d-7388-4c7a-b950-29d8a997a4a3?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b0708181-81f0-4bad-8c47-7171f5883c6e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 28 Oct 2021 03:10:29 GMT + - Thu, 04 Aug 2022 17:13:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/7824ad1d-7388-4c7a-b950-29d8a997a4a3?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b0708181-81f0-4bad-8c47-7171f5883c6e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -1932,9 +2068,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1196 + - Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1194 x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 202 message: Accepted @@ -1952,23 +2088,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/7824ad1d-7388-4c7a-b950-29d8a997a4a3?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b0708181-81f0-4bad-8c47-7171f5883c6e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T03:10:30.3131568+00:00\",\r\n \"endTime\": - \"2021-10-28T03:10:35.0162579+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"7824ad1d-7388-4c7a-b950-29d8a997a4a3\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:13:37.8527352+00:00\",\r\n \"endTime\": + \"2022-08-04T17:13:46.103382+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"b0708181-81f0-4bad-8c47-7171f5883c6e\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:10:59 GMT + - Thu, 04 Aug 2022 17:14:07 GMT expires: - '-1' pragma: @@ -1985,7 +2121,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29911 + - Microsoft.Compute/GetOperation3Min;14944,Microsoft.Compute/GetOperation30Min;29825 status: code: 200 message: OK @@ -2003,9 +2139,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/7824ad1d-7388-4c7a-b950-29d8a997a4a3?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b0708181-81f0-4bad-8c47-7171f5883c6e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -2015,7 +2151,7 @@ interactions: content-length: - '0' date: - - Thu, 28 Oct 2021 03:10:59 GMT + - Thu, 04 Aug 2022 17:14:07 GMT expires: - '-1' pragma: @@ -2028,7 +2164,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29910 + - Microsoft.Compute/GetOperation3Min;14943,Microsoft.Compute/GetOperation30Min;29824 status: code: 200 message: OK @@ -2046,8 +2182,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -2061,7 +2197,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 03:11:02 GMT + - Thu, 04 Aug 2022 17:14:08 GMT expires: - '-1' pragma: @@ -2095,64 +2231,67 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202110250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\",\r\n + \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLENMEBLJOJH524M3NQUC34XQ73SVNQM6DBJQ25BQ2UPG75GO5ONKNX6/providers/Microsoft.Compute/disks/cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"azureuser\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": - \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": - \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n - \ \"displayStatus\": \"Not Ready\",\r\n \"message\": - \"VM status blob is found but not yet populated.\",\r\n \"time\": - \"2021-10-28T03:11:04+00:00\"\r\n }\r\n ]\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\",\r\n + \ \"instanceView\": {\r\n \"computerName\": \"cli000003\",\r\n \"osName\": + \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n + \ \"vmAgentVersion\": \"2.7.3.0\",\r\n \"statuses\": [\r\n {\r\n + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": + \"Guest Agent is running\",\r\n \"time\": \"2022-08-04T17:13:30+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-10-28T03:10:10.2820631+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-08-04T17:12:57.8216908+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {},\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2021-10-28T03:10:35.0006517+00:00\"\r\n },\r\n + \ \"time\": \"2022-08-04T17:13:46.0870281+00:00\"\r\n },\r\n \ {\r\n \"code\": \"PowerState/stopped\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM stopped\"\r\n }\r\n - \ ]\r\n }\r\n }\r\n}" + \ ]\r\n },\r\n \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '4093' + - '4089' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:11:03 GMT + - Thu, 04 Aug 2022 17:14:09 GMT expires: - '-1' pragma: @@ -2169,7 +2308,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31976 + - Microsoft.Compute/LowCostGet3Min;3978,Microsoft.Compute/LowCostGet30Min;31919 status: code: 200 message: OK @@ -2187,47 +2326,48 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202110250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\",\r\n + \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLENMEBLJOJH524M3NQUC34XQ73SVNQM6DBJQ25BQ2UPG75GO5ONKNX6/providers/Microsoft.Compute/disks/cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"azureuser\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": - true\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n - \ }\r\n}" + true\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2839' + - '2754' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:11:05 GMT + - Thu, 04 Aug 2022 17:14:09 GMT expires: - '-1' pragma: @@ -2244,19 +2384,19 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31975 + - Microsoft.Compute/LowCostGet3Min;3977,Microsoft.Compute/LowCostGet30Min;31918 status: code: 200 message: OK - request: body: '{"location": "westus2", "tags": {}, "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "storageProfile": {"osDisk": {"osType": "Linux", "name": - "cli000003_disk1_6199206330ee4a8498bd48c63ae90af4", "caching": "ReadWrite", - "createOption": "FromImage", "diskSizeGB": 30, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLENMEBLJOJH524M3NQUC34XQ73SVNQM6DBJQ25BQ2UPG75GO5ONKNX6/providers/Microsoft.Compute/disks/cli000003_disk1_6199206330ee4a8498bd48c63ae90af4", + "cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474", "caching": "ReadWrite", + "createOption": "FromImage", "diskSizeGB": 30, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474", "storageAccountType": "Premium_LRS"}, "deleteOption": "Detach"}, "dataDisks": - []}, "osProfile": {"computerName": "cli000003", "adminUsername": "azureuser", - "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": - [{"path": "/home/azureuser/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh"}]}, + []}, "osProfile": {"computerName": "cli000003", "adminUsername": "rhl", "linuxConfiguration": + {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/rhl/.ssh/authorized_keys", + "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5"}]}, "provisionVMAgent": true, "patchSettings": {"patchMode": "ImageDefault", "assessmentMode": "ImageDefault"}}, "secrets": [], "allowExtensionOperations": true, "requireGuestProvisionSignal": true}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic"}]}, @@ -2271,57 +2411,58 @@ interactions: Connection: - keep-alive Content-Length: - - '1797' + - '1684' Content-Type: - application/json ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202110250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\",\r\n + \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLENMEBLJOJH524M3NQUC34XQ73SVNQM6DBJQ25BQ2UPG75GO5ONKNX6/providers/Microsoft.Compute/disks/cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"azureuser\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": - false\r\n }\r\n },\r\n \"provisioningState\": \"Updating\"\r\n - \ }\r\n}" + false\r\n }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n + \ \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/77dba377-a1c8-4db3-9b7e-168efd1cf03d?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/74879055-383b-4ae3-91fb-897edde33812?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - - '2839' + - '2754' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:11:09 GMT + - Thu, 04 Aug 2022 17:14:10 GMT expires: - '-1' pragma: @@ -2338,9 +2479,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1196 + - Microsoft.Compute/PutVM3Min;479,Microsoft.Compute/PutVM30Min;2399 x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' status: code: 200 message: OK @@ -2358,14 +2499,14 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/77dba377-a1c8-4db3-9b7e-168efd1cf03d?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/74879055-383b-4ae3-91fb-897edde33812?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T03:11:07.7037367+00:00\",\r\n \"endTime\": - \"2021-10-28T03:11:09.8599999+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"77dba377-a1c8-4db3-9b7e-168efd1cf03d\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:14:10.4462305+00:00\",\r\n \"endTime\": + \"2022-08-04T17:14:12.3993014+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"74879055-383b-4ae3-91fb-897edde33812\"\r\n}" headers: cache-control: - no-cache @@ -2374,7 +2515,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:11:40 GMT + - Thu, 04 Aug 2022 17:14:40 GMT expires: - '-1' pragma: @@ -2391,7 +2532,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29908 + - Microsoft.Compute/GetOperation3Min;14939,Microsoft.Compute/GetOperation30Min;29813 status: code: 200 message: OK @@ -2409,47 +2550,48 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202110250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\",\r\n + \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLENMEBLJOJH524M3NQUC34XQ73SVNQM6DBJQ25BQ2UPG75GO5ONKNX6/providers/Microsoft.Compute/disks/cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"azureuser\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": - false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n - \ }\r\n}" + false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2840' + - '2755' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:11:40 GMT + - Thu, 04 Aug 2022 17:14:40 GMT expires: - '-1' pragma: @@ -2466,7 +2608,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31973 + - Microsoft.Compute/LowCostGet3Min;3978,Microsoft.Compute/LowCostGet30Min;31915 status: code: 200 message: OK @@ -2484,8 +2626,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -2499,7 +2641,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 03:11:40 GMT + - Thu, 04 Aug 2022 17:14:41 GMT expires: - '-1' pragma: @@ -2533,63 +2675,66 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202110250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\",\r\n + \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLENMEBLJOJH524M3NQUC34XQ73SVNQM6DBJQ25BQ2UPG75GO5ONKNX6/providers/Microsoft.Compute/disks/cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"azureuser\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": - \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": - \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n - \ \"displayStatus\": \"Not Ready\",\r\n \"message\": - \"VM status blob is found but not yet populated.\",\r\n \"time\": - \"2021-10-28T03:11:43+00:00\"\r\n }\r\n ]\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\",\r\n + \ \"instanceView\": {\r\n \"computerName\": \"cli000003\",\r\n \"osName\": + \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n + \ \"vmAgentVersion\": \"2.7.3.0\",\r\n \"statuses\": [\r\n {\r\n + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": + \"Guest Agent is running\",\r\n \"time\": \"2022-08-04T17:13:30+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-10-28T03:11:08.1727361+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-08-04T17:14:10.9774837+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-10-28T03:11:09.8599999+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-08-04T17:14:12.3837386+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/stopped\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM stopped\"\r\n - \ }\r\n ]\r\n }\r\n }\r\n}" + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '4064' + - '4060' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:11:43 GMT + - Thu, 04 Aug 2022 17:14:41 GMT expires: - '-1' pragma: @@ -2606,7 +2751,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31972 + - Microsoft.Compute/LowCostGet3Min;3977,Microsoft.Compute/LowCostGet30Min;31914 status: code: 200 message: OK @@ -2614,7 +2759,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -2626,25 +2771,25 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/start?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/start?api-version=2022-03-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9cfff5fa-7988-405a-96d7-dbc211c4af62?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b9043596-332a-4c89-bdc0-047ff78b5a94?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 28 Oct 2021 03:11:44 GMT + - Thu, 04 Aug 2022 17:14:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9cfff5fa-7988-405a-96d7-dbc211c4af62?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b9043596-332a-4c89-bdc0-047ff78b5a94?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -2655,9 +2800,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;237,Microsoft.Compute/UpdateVM30Min;1195 + - Microsoft.Compute/UpdateVM3Min;237,Microsoft.Compute/UpdateVM30Min;1193 x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' status: code: 202 message: Accepted @@ -2675,14 +2820,14 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9cfff5fa-7988-405a-96d7-dbc211c4af62?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b9043596-332a-4c89-bdc0-047ff78b5a94?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T03:11:44.6412812+00:00\",\r\n \"endTime\": - \"2021-10-28T03:11:53.0786917+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"9cfff5fa-7988-405a-96d7-dbc211c4af62\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:14:42.6335413+00:00\",\r\n \"endTime\": + \"2022-08-04T17:14:51.3366103+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"b9043596-332a-4c89-bdc0-047ff78b5a94\"\r\n}" headers: cache-control: - no-cache @@ -2691,7 +2836,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:11:54 GMT + - Thu, 04 Aug 2022 17:14:52 GMT expires: - '-1' pragma: @@ -2708,7 +2853,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29907 + - Microsoft.Compute/GetOperation3Min;14937,Microsoft.Compute/GetOperation30Min;29811 status: code: 200 message: OK @@ -2726,9 +2871,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9cfff5fa-7988-405a-96d7-dbc211c4af62?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b9043596-332a-4c89-bdc0-047ff78b5a94?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -2738,7 +2883,7 @@ interactions: content-length: - '0' date: - - Thu, 28 Oct 2021 03:11:54 GMT + - Thu, 04 Aug 2022 17:14:52 GMT expires: - '-1' pragma: @@ -2751,7 +2896,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29906 + - Microsoft.Compute/GetOperation3Min;14935,Microsoft.Compute/GetOperation30Min;29809 status: code: 200 message: OK @@ -2769,8 +2914,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -2784,7 +2929,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 03:11:55 GMT + - Thu, 04 Aug 2022 17:14:53 GMT expires: - '-1' pragma: @@ -2818,63 +2963,66 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202110250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\",\r\n + \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLENMEBLJOJH524M3NQUC34XQ73SVNQM6DBJQ25BQ2UPG75GO5ONKNX6/providers/Microsoft.Compute/disks/cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"azureuser\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": - \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": - \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n - \ \"displayStatus\": \"Not Ready\",\r\n \"message\": - \"VM status blob is found but not yet populated.\",\r\n \"time\": - \"2021-10-28T03:11:57+00:00\"\r\n }\r\n ]\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\",\r\n + \ \"instanceView\": {\r\n \"computerName\": \"cli000003\",\r\n \"osName\": + \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n + \ \"vmAgentVersion\": \"2.7.3.0\",\r\n \"statuses\": [\r\n {\r\n + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": + \"Guest Agent is running\",\r\n \"time\": \"2022-08-04T17:13:30+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-10-28T03:11:08.1727361+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-08-04T17:14:10.9774837+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-10-28T03:11:53.0630915+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-08-04T17:14:51.3209989+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n - \ }\r\n ]\r\n }\r\n }\r\n}" + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '4064' + - '4060' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:11:57 GMT + - Thu, 04 Aug 2022 17:14:53 GMT expires: - '-1' pragma: @@ -2891,7 +3039,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3989,Microsoft.Compute/LowCostGet30Min;31970 + - Microsoft.Compute/LowCostGet3Min;3975,Microsoft.Compute/LowCostGet30Min;31912 status: code: 200 message: OK @@ -2909,47 +3057,48 @@ interactions: ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202110250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\",\r\n + \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLENMEBLJOJH524M3NQUC34XQ73SVNQM6DBJQ25BQ2UPG75GO5ONKNX6/providers/Microsoft.Compute/disks/cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"azureuser\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": - false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n - \ }\r\n}" + false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2840' + - '2755' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:11:58 GMT + - Thu, 04 Aug 2022 17:14:53 GMT expires: - '-1' pragma: @@ -2966,7 +3115,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31969 + - Microsoft.Compute/LowCostGet3Min;3974,Microsoft.Compute/LowCostGet30Min;31911 status: code: 200 message: OK @@ -2984,21 +3133,21 @@ interactions: ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2021-09-01 response: body: - string: '{"value":[{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/azext","name":"azext","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-15T07:20:26.3629732Z","key2":"2021-10-15T07:20:26.3629732Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T07:20:26.3629732Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T07:20:26.3629732Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-15T07:20:26.2379798Z","primaryEndpoints":{"dfs":"https://azext.dfs.core.windows.net/","web":"https://azext.z13.web.core.windows.net/","blob":"https://azext.blob.core.windows.net/","queue":"https://azext.queue.core.windows.net/","table":"https://azext.table.core.windows.net/","file":"https://azext.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azext-secondary.dfs.core.windows.net/","web":"https://azext-secondary.z13.web.core.windows.net/","blob":"https://azext-secondary.blob.core.windows.net/","queue":"https://azext-secondary.queue.core.windows.net/","table":"https://azext-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGZRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-beta/providers/Microsoft.Storage/storageAccounts/azureclibetarelease","name":"azureclibetarelease","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-11T10:32:24.8036511Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-11T10:32:24.8036511Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-06-11T10:32:24.7099044Z","primaryEndpoints":{"dfs":"https://azureclibetarelease.dfs.core.windows.net/","web":"https://azureclibetarelease.z13.web.core.windows.net/","blob":"https://azureclibetarelease.blob.core.windows.net/","queue":"https://azureclibetarelease.queue.core.windows.net/","table":"https://azureclibetarelease.table.core.windows.net/","file":"https://azureclibetarelease.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azureclibetarelease-secondary.dfs.core.windows.net/","web":"https://azureclibetarelease-secondary.z13.web.core.windows.net/","blob":"https://azureclibetarelease-secondary.blob.core.windows.net/","queue":"https://azureclibetarelease-secondary.queue.core.windows.net/","table":"https://azureclibetarelease-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestresult/providers/Microsoft.Storage/storageAccounts/clitestresultstac","name":"clitestresultstac","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-15T06:20:52.7844389Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-15T06:20:52.7844389Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-15T06:20:52.6907255Z","primaryEndpoints":{"dfs":"https://clitestresultstac.dfs.core.windows.net/","web":"https://clitestresultstac.z13.web.core.windows.net/","blob":"https://clitestresultstac.blob.core.windows.net/","queue":"https://clitestresultstac.queue.core.windows.net/","table":"https://clitestresultstac.table.core.windows.net/","file":"https://clitestresultstac.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clitestresultstac-secondary.dfs.core.windows.net/","web":"https://clitestresultstac-secondary.z13.web.core.windows.net/","blob":"https://clitestresultstac-secondary.blob.core.windows.net/","queue":"https://clitestresultstac-secondary.queue.core.windows.net/","table":"https://clitestresultstac-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MSP_bez-rg_bez-diskpool_eastus/providers/Microsoft.Storage/storageAccounts/diag211012t072040rmjrhhi","name":"diag211012t072040rmjrhhi","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"MSP_BuildVersion":"20211008-2.master.5bd2896a","MSP_DPMajorVersion":"v2_DualVm","MSP_DPMinorVersion":"0","k":"v"},"properties":{"keyCreationTime":{"key1":"2021-10-12T07:20:43.6860609Z","key2":"2021-10-12T07:20:43.6860609Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-12T07:20:43.7016857Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-12T07:20:43.7016857Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-12T07:20:43.5611096Z","primaryEndpoints":{"dfs":"https://diag211012t072040rmjrhhi.dfs.core.windows.net/","web":"https://diag211012t072040rmjrhhi.z13.web.core.windows.net/","blob":"https://diag211012t072040rmjrhhi.blob.core.windows.net/","queue":"https://diag211012t072040rmjrhhi.queue.core.windows.net/","table":"https://diag211012t072040rmjrhhi.table.core.windows.net/","file":"https://diag211012t072040rmjrhhi.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryapptest/providers/Microsoft.Storage/storageAccounts/galleryappaccount","name":"galleryappaccount","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-20T06:11:14.2816483Z","key2":"2021-10-20T06:11:14.2816483Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-20T06:11:14.2972777Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-20T06:11:14.2972777Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-20T06:11:14.1723329Z","primaryEndpoints":{"dfs":"https://galleryappaccount.dfs.core.windows.net/","web":"https://galleryappaccount.z13.web.core.windows.net/","blob":"https://galleryappaccount.blob.core.windows.net/","queue":"https://galleryappaccount.queue.core.windows.net/","table":"https://galleryappaccount.table.core.windows.net/","file":"https://galleryappaccount.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://galleryappaccount-secondary.dfs.core.windows.net/","web":"https://galleryappaccount-secondary.z13.web.core.windows.net/","blob":"https://galleryappaccount-secondary.blob.core.windows.net/","queue":"https://galleryappaccount-secondary.queue.core.windows.net/","table":"https://galleryappaccount-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/galleryapptestaccount","name":"galleryapptestaccount","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-20T02:51:38.9977139Z","key2":"2021-10-20T02:51:38.9977139Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-20T02:51:38.9977139Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-20T02:51:38.9977139Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-20T02:51:38.8727156Z","primaryEndpoints":{"dfs":"https://galleryapptestaccount.dfs.core.windows.net/","web":"https://galleryapptestaccount.z13.web.core.windows.net/","blob":"https://galleryapptestaccount.blob.core.windows.net/","queue":"https://galleryapptestaccount.queue.core.windows.net/","table":"https://galleryapptestaccount.table.core.windows.net/","file":"https://galleryapptestaccount.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-dev/providers/Microsoft.Storage/storageAccounts/jlst1007","name":"jlst1007","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-14T03:14:38.1272477Z","key2":"2021-10-07T06:12:08.4901645Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-07T06:12:08.4901645Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-07T06:12:08.4901645Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2021-10-07T06:12:08.3807870Z","primaryEndpoints":{"dfs":"https://jlst1007.dfs.core.windows.net/","web":"https://jlst1007.z13.web.core.windows.net/","blob":"https://jlst1007.blob.core.windows.net/","queue":"https://jlst1007.queue.core.windows.net/","table":"https://jlst1007.table.core.windows.net/","file":"https://jlst1007.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portal2cli/providers/Microsoft.Storage/storageAccounts/portal2clistorage","name":"portal2clistorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-14T07:23:08.8752602Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-14T07:23:08.8752602Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-14T07:23:08.7502552Z","primaryEndpoints":{"dfs":"https://portal2clistorage.dfs.core.windows.net/","web":"https://portal2clistorage.z13.web.core.windows.net/","blob":"https://portal2clistorage.blob.core.windows.net/","queue":"https://portal2clistorage.queue.core.windows.net/","table":"https://portal2clistorage.table.core.windows.net/","file":"https://portal2clistorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://portal2clistorage-secondary.dfs.core.windows.net/","web":"https://portal2clistorage-secondary.z13.web.core.windows.net/","blob":"https://portal2clistorage-secondary.blob.core.windows.net/","queue":"https://portal2clistorage-secondary.queue.core.windows.net/","table":"https://portal2clistorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/privatepackage","name":"privatepackage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-19T08:53:09.0238938Z","key2":"2021-10-19T08:53:09.0238938Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-19T08:53:09.0238938Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-19T08:53:09.0238938Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-19T08:53:08.9301661Z","primaryEndpoints":{"dfs":"https://privatepackage.dfs.core.windows.net/","web":"https://privatepackage.z13.web.core.windows.net/","blob":"https://privatepackage.blob.core.windows.net/","queue":"https://privatepackage.queue.core.windows.net/","table":"https://privatepackage.table.core.windows.net/","file":"https://privatepackage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://privatepackage-secondary.dfs.core.windows.net/","web":"https://privatepackage-secondary.z13.web.core.windows.net/","blob":"https://privatepackage-secondary.blob.core.windows.net/","queue":"https://privatepackage-secondary.queue.core.windows.net/","table":"https://privatepackage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-purview-msyyc/providers/Microsoft.Storage/storageAccounts/scaneastusxncccyt","name":"scaneastusxncccyt","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-23T01:56:19.6672075Z","key2":"2021-08-23T01:56:19.6672075Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-23T01:56:19.6672075Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-23T01:56:19.6672075Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-23T01:56:19.5422473Z","primaryEndpoints":{"dfs":"https://scaneastusxncccyt.dfs.core.windows.net/","web":"https://scaneastusxncccyt.z13.web.core.windows.net/","blob":"https://scaneastusxncccyt.blob.core.windows.net/","queue":"https://scaneastusxncccyt.queue.core.windows.net/","table":"https://scaneastusxncccyt.table.core.windows.net/","file":"https://scaneastusxncccyt.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testvlw","name":"testvlw","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-27T06:47:50.5497427Z","key2":"2021-10-27T06:47:50.5497427Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T06:47:50.5497427Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T06:47:50.5497427Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-27T06:47:50.4247606Z","primaryEndpoints":{"dfs":"https://testvlw.dfs.core.windows.net/","web":"https://testvlw.z13.web.core.windows.net/","blob":"https://testvlw.blob.core.windows.net/","queue":"https://testvlw.queue.core.windows.net/","table":"https://testvlw.table.core.windows.net/","file":"https://testvlw.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testvlw-secondary.dfs.core.windows.net/","web":"https://testvlw-secondary.z13.web.core.windows.net/","blob":"https://testvlw-secondary.blob.core.windows.net/","queue":"https://testvlw-secondary.queue.core.windows.net/","table":"https://testvlw-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssa","name":"yssa","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"key1":"value1"},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-08-16T08:39:21.3287573Z","key2":"2021-08-16T08:39:21.3287573Z"},"privateEndpointConnections":[],"hnsOnMigrationInProgress":false,"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-16T08:39:21.3287573Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-16T08:39:21.3287573Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-16T08:39:21.2193709Z","primaryEndpoints":{"dfs":"https://yssa.dfs.core.windows.net/","web":"https://yssa.z13.web.core.windows.net/","blob":"https://yssa.blob.core.windows.net/","queue":"https://yssa.queue.core.windows.net/","table":"https://yssa.table.core.windows.net/","file":"https://yssa.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/zhiyihuangsa","name":"zhiyihuangsa","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-09-10T05:47:01.2111871Z","key2":"2021-09-10T05:47:01.2111871Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T05:47:01.2111871Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T05:47:01.2111871Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-10T05:47:01.0861745Z","primaryEndpoints":{"dfs":"https://zhiyihuangsa.dfs.core.windows.net/","web":"https://zhiyihuangsa.z13.web.core.windows.net/","blob":"https://zhiyihuangsa.blob.core.windows.net/","queue":"https://zhiyihuangsa.queue.core.windows.net/","table":"https://zhiyihuangsa.table.core.windows.net/","file":"https://zhiyihuangsa.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zhiyihuangsa-secondary.dfs.core.windows.net/","web":"https://zhiyihuangsa-secondary.z13.web.core.windows.net/","blob":"https://zhiyihuangsa-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsa-secondary.queue.core.windows.net/","table":"https://zhiyihuangsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge/providers/Microsoft.Storage/storageAccounts/azextensionedge","name":"azextensionedge","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-22T08:51:57.7728758Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-22T08:51:57.7728758Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-22T08:51:57.6947156Z","primaryEndpoints":{"dfs":"https://azextensionedge.dfs.core.windows.net/","web":"https://azextensionedge.z22.web.core.windows.net/","blob":"https://azextensionedge.blob.core.windows.net/","queue":"https://azextensionedge.queue.core.windows.net/","table":"https://azextensionedge.table.core.windows.net/","file":"https://azextensionedge.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azextensionedge-secondary.dfs.core.windows.net/","web":"https://azextensionedge-secondary.z22.web.core.windows.net/","blob":"https://azextensionedge-secondary.blob.core.windows.net/","queue":"https://azextensionedge-secondary.queue.core.windows.net/","table":"https://azextensionedge-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge/providers/Microsoft.Storage/storageAccounts/azurecliedge","name":"azurecliedge","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T08:41:36.3326539Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T08:41:36.3326539Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-13T08:41:36.2389304Z","primaryEndpoints":{"dfs":"https://azurecliedge.dfs.core.windows.net/","web":"https://azurecliedge.z22.web.core.windows.net/","blob":"https://azurecliedge.blob.core.windows.net/","queue":"https://azurecliedge.queue.core.windows.net/","table":"https://azurecliedge.table.core.windows.net/","file":"https://azurecliedge.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhddmban3xow2tgyly5j6xaruoliqaj443p3brq46idi/providers/Microsoft.Storage/storageAccounts/clitest4ydp57ynxl5tcjktl","name":"clitest4ydp57ynxl5tcjktl","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-21T06:49:12.4084643Z","key2":"2021-04-21T06:49:12.4084643Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-21T06:49:12.4240887Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-21T06:49:12.4240887Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-21T06:49:12.3303684Z","primaryEndpoints":{"blob":"https://clitest4ydp57ynxl5tcjktl.blob.core.windows.net/","queue":"https://clitest4ydp57ynxl5tcjktl.queue.core.windows.net/","table":"https://clitest4ydp57ynxl5tcjktl.table.core.windows.net/","file":"https://clitest4ydp57ynxl5tcjktl.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhddqxkb6y7azmjc53fhkyr66se7po4i2ve5es2y46av/providers/Microsoft.Storage/storageAccounts/clitestuxrcexs7kgo3dqsiz","name":"clitestuxrcexs7kgo3dqsiz","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-21T07:08:35.7386114Z","key2":"2021-04-21T07:08:35.7386114Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-21T07:08:35.7386114Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-21T07:08:35.7386114Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-21T07:08:35.6448419Z","primaryEndpoints":{"blob":"https://clitestuxrcexs7kgo3dqsiz.blob.core.windows.net/","queue":"https://clitestuxrcexs7kgo3dqsiz.queue.core.windows.net/","table":"https://clitestuxrcexs7kgo3dqsiz.table.core.windows.net/","file":"https://clitestuxrcexs7kgo3dqsiz.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kairu-persist/providers/Microsoft.Storage/storageAccounts/kairu","name":"kairu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T07:35:19.0950431Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T07:35:19.0950431Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-01-13T07:35:18.9856251Z","primaryEndpoints":{"blob":"https://kairu.blob.core.windows.net/","queue":"https://kairu.queue.core.windows.net/","table":"https://kairu.table.core.windows.net/","file":"https://kairu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ethan_rg/providers/Microsoft.Storage/storageAccounts/necusjz","name":"necusjz","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-26T09:39:42.6169237Z","key2":"2021-10-26T09:39:42.6169237Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-26T09:39:42.6169237Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-26T09:39:42.6169237Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-26T09:39:42.5231711Z","primaryEndpoints":{"dfs":"https://necusjz.dfs.core.windows.net/","web":"https://necusjz.z22.web.core.windows.net/","blob":"https://necusjz.blob.core.windows.net/","queue":"https://necusjz.queue.core.windows.net/","table":"https://necusjz.table.core.windows.net/","file":"https://necusjz.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/pythonsdkmsyyc","name":"pythonsdkmsyyc","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-30T09:03:04.8209550Z","key2":"2021-06-30T09:03:04.8209550Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-30T09:03:04.8209550Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-30T09:03:04.8209550Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-30T09:03:04.7272348Z","primaryEndpoints":{"dfs":"https://pythonsdkmsyyc.dfs.core.windows.net/","web":"https://pythonsdkmsyyc.z22.web.core.windows.net/","blob":"https://pythonsdkmsyyc.blob.core.windows.net/","queue":"https://pythonsdkmsyyc.queue.core.windows.net/","table":"https://pythonsdkmsyyc.table.core.windows.net/","file":"https://pythonsdkmsyyc.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Storage/storageAccounts/storageyyc","name":"storageyyc","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-09-26T05:53:22.9974267Z","key2":"2021-09-26T05:53:22.9974267Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:53:22.9974267Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:53:22.9974267Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:53:22.9192578Z","primaryEndpoints":{"dfs":"https://storageyyc.dfs.core.windows.net/","web":"https://storageyyc.z22.web.core.windows.net/","blob":"https://storageyyc.blob.core.windows.net/","queue":"https://storageyyc.queue.core.windows.net/","table":"https://storageyyc.table.core.windows.net/","file":"https://storageyyc.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw","name":"testalw","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"immutableStorageWithVersioning":{"enabled":true,"immutabilityPolicy":{"immutabilityPeriodSinceCreationInDays":3,"state":"Disabled"}},"keyCreationTime":{"key1":"2021-10-27T06:27:50.3554138Z","key2":"2021-10-27T06:27:50.3554138Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T06:27:50.3554138Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T06:27:50.3554138Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-27T06:27:50.2616355Z","primaryEndpoints":{"dfs":"https://testalw.dfs.core.windows.net/","web":"https://testalw.z22.web.core.windows.net/","blob":"https://testalw.blob.core.windows.net/","queue":"https://testalw.queue.core.windows.net/","table":"https://testalw.table.core.windows.net/","file":"https://testalw.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testalw-secondary.dfs.core.windows.net/","web":"https://testalw-secondary.z22.web.core.windows.net/","blob":"https://testalw-secondary.blob.core.windows.net/","queue":"https://testalw-secondary.queue.core.windows.net/","table":"https://testalw-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw1027","name":"testalw1027","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"immutableStorageWithVersioning":{"enabled":true,"immutabilityPolicy":{"immutabilityPeriodSinceCreationInDays":1,"state":"Unlocked"}},"keyCreationTime":{"key1":"2021-10-27T07:34:49.7592232Z","key2":"2021-10-27T07:34:49.7592232Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T07:34:49.7592232Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T07:34:49.7592232Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-27T07:34:49.6810731Z","primaryEndpoints":{"dfs":"https://testalw1027.dfs.core.windows.net/","web":"https://testalw1027.z22.web.core.windows.net/","blob":"https://testalw1027.blob.core.windows.net/","queue":"https://testalw1027.queue.core.windows.net/","table":"https://testalw1027.table.core.windows.net/","file":"https://testalw1027.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testalw1027-secondary.dfs.core.windows.net/","web":"https://testalw1027-secondary.z22.web.core.windows.net/","blob":"https://testalw1027-secondary.blob.core.windows.net/","queue":"https://testalw1027-secondary.queue.core.windows.net/","table":"https://testalw1027-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw1028","name":"testalw1028","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"immutableStorageWithVersioning":{"enabled":true,"immutabilityPolicy":{"immutabilityPeriodSinceCreationInDays":1,"state":"Unlocked"}},"keyCreationTime":{"key1":"2021-10-28T01:49:10.2414505Z","key2":"2021-10-28T01:49:10.2414505Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T01:49:10.2414505Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T01:49:10.2414505Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-28T01:49:10.1633042Z","primaryEndpoints":{"dfs":"https://testalw1028.dfs.core.windows.net/","web":"https://testalw1028.z22.web.core.windows.net/","blob":"https://testalw1028.blob.core.windows.net/","queue":"https://testalw1028.queue.core.windows.net/","table":"https://testalw1028.table.core.windows.net/","file":"https://testalw1028.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testalw1028-secondary.dfs.core.windows.net/","web":"https://testalw1028-secondary.z22.web.core.windows.net/","blob":"https://testalw1028-secondary.blob.core.windows.net/","queue":"https://testalw1028-secondary.queue.core.windows.net/","table":"https://testalw1028-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yshns","name":"yshns","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-15T02:10:28.4103368Z","key2":"2021-10-15T02:10:28.4103368Z"},"privateEndpointConnections":[],"hnsOnMigrationInProgress":false,"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T02:10:28.4103368Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T02:10:28.4103368Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-15T02:10:28.3165819Z","primaryEndpoints":{"dfs":"https://yshns.dfs.core.windows.net/","web":"https://yshns.z22.web.core.windows.net/","blob":"https://yshns.blob.core.windows.net/","queue":"https://yshns.queue.core.windows.net/","table":"https://yshns.table.core.windows.net/","file":"https://yshns.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yshns-secondary.dfs.core.windows.net/","web":"https://yshns-secondary.z22.web.core.windows.net/","blob":"https://yshns-secondary.blob.core.windows.net/","queue":"https://yshns-secondary.queue.core.windows.net/","table":"https://yshns-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/azuresdktest","name":"azuresdktest","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-12T06:32:07.1157877Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-12T06:32:07.1157877Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-08-12T06:32:07.0689199Z","primaryEndpoints":{"dfs":"https://azuresdktest.dfs.core.windows.net/","web":"https://azuresdktest.z7.web.core.windows.net/","blob":"https://azuresdktest.blob.core.windows.net/","queue":"https://azuresdktest.queue.core.windows.net/","table":"https://azuresdktest.table.core.windows.net/","file":"https://azuresdktest.file.core.windows.net/"},"primaryLocation":"eastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrglkh7zr7/providers/Microsoft.Storage/storageAccounts/clitest2f63bh43aix4wcnlh","name":"clitest2f63bh43aix4wcnlh","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:17:38.5541453Z","key2":"2021-04-22T08:17:38.5541453Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.5541453Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.5541453Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.4760163Z","primaryEndpoints":{"blob":"https://clitest2f63bh43aix4wcnlh.blob.core.windows.net/","queue":"https://clitest2f63bh43aix4wcnlh.queue.core.windows.net/","table":"https://clitest2f63bh43aix4wcnlh.table.core.windows.net/","file":"https://clitest2f63bh43aix4wcnlh.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgh5duq2f6uh/providers/Microsoft.Storage/storageAccounts/clitest2vjedutxs37ymp4ni","name":"clitest2vjedutxs37ymp4ni","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:21.0424866Z","key2":"2021-04-23T07:13:21.0424866Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0581083Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0581083Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.9643257Z","primaryEndpoints":{"blob":"https://clitest2vjedutxs37ymp4ni.blob.core.windows.net/","queue":"https://clitest2vjedutxs37ymp4ni.queue.core.windows.net/","table":"https://clitest2vjedutxs37ymp4ni.table.core.windows.net/","file":"https://clitest2vjedutxs37ymp4ni.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgl6l3rg6atb/providers/Microsoft.Storage/storageAccounts/clitest4sjmiwke5nz3f67pu","name":"clitest4sjmiwke5nz3f67pu","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:02:15.3305055Z","key2":"2021-04-22T08:02:15.3305055Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.3305055Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.3305055Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:02:15.2523305Z","primaryEndpoints":{"blob":"https://clitest4sjmiwke5nz3f67pu.blob.core.windows.net/","queue":"https://clitest4sjmiwke5nz3f67pu.queue.core.windows.net/","table":"https://clitest4sjmiwke5nz3f67pu.table.core.windows.net/","file":"https://clitest4sjmiwke5nz3f67pu.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbbt37xr2le/providers/Microsoft.Storage/storageAccounts/clitest5frikrzhxwryrkfel","name":"clitest5frikrzhxwryrkfel","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:19:22.9620171Z","key2":"2021-04-22T08:19:22.9620171Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:19:22.9776721Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:19:22.9776721Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:19:22.8838883Z","primaryEndpoints":{"blob":"https://clitest5frikrzhxwryrkfel.blob.core.windows.net/","queue":"https://clitest5frikrzhxwryrkfel.queue.core.windows.net/","table":"https://clitest5frikrzhxwryrkfel.table.core.windows.net/","file":"https://clitest5frikrzhxwryrkfel.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrc4sjsrzt4/providers/Microsoft.Storage/storageAccounts/clitest63b5vtkhuf7auho6z","name":"clitest63b5vtkhuf7auho6z","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:17:38.3198561Z","key2":"2021-04-22T08:17:38.3198561Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.3198561Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.3198561Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.2416459Z","primaryEndpoints":{"blob":"https://clitest63b5vtkhuf7auho6z.blob.core.windows.net/","queue":"https://clitest63b5vtkhuf7auho6z.queue.core.windows.net/","table":"https://clitest63b5vtkhuf7auho6z.table.core.windows.net/","file":"https://clitest63b5vtkhuf7auho6z.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgekim5ct43n/providers/Microsoft.Storage/storageAccounts/clitest6jusqp4qvczw52pql","name":"clitest6jusqp4qvczw52pql","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:05:08.7847684Z","key2":"2021-04-22T08:05:08.7847684Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:05:08.8003328Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:05:08.8003328Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:05:08.7065579Z","primaryEndpoints":{"blob":"https://clitest6jusqp4qvczw52pql.blob.core.windows.net/","queue":"https://clitest6jusqp4qvczw52pql.queue.core.windows.net/","table":"https://clitest6jusqp4qvczw52pql.table.core.windows.net/","file":"https://clitest6jusqp4qvczw52pql.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu7jwflzo6g/providers/Microsoft.Storage/storageAccounts/clitest6qixwlhm5see7ipqv","name":"clitest6qixwlhm5see7ipqv","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T03:42:54.6967487Z","key2":"2021-04-23T03:42:54.6967487Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.6967487Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.6967487Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T03:42:54.6186031Z","primaryEndpoints":{"blob":"https://clitest6qixwlhm5see7ipqv.blob.core.windows.net/","queue":"https://clitest6qixwlhm5see7ipqv.queue.core.windows.net/","table":"https://clitest6qixwlhm5see7ipqv.table.core.windows.net/","file":"https://clitest6qixwlhm5see7ipqv.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbbt37xr2le/providers/Microsoft.Storage/storageAccounts/clitest74vl6rwuxl5fbuklw","name":"clitest74vl6rwuxl5fbuklw","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:17:38.2260082Z","key2":"2021-04-22T08:17:38.2260082Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.2260082Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.2260082Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.1635154Z","primaryEndpoints":{"blob":"https://clitest74vl6rwuxl5fbuklw.blob.core.windows.net/","queue":"https://clitest74vl6rwuxl5fbuklw.queue.core.windows.net/","table":"https://clitest74vl6rwuxl5fbuklw.table.core.windows.net/","file":"https://clitest74vl6rwuxl5fbuklw.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgekim5ct43n/providers/Microsoft.Storage/storageAccounts/clitestaxzz2w4ay2wruyjs5","name":"clitestaxzz2w4ay2wruyjs5","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:02:15.6585801Z","key2":"2021-04-22T08:02:15.6585801Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.6585801Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.6585801Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:02:15.5804737Z","primaryEndpoints":{"blob":"https://clitestaxzz2w4ay2wruyjs5.blob.core.windows.net/","queue":"https://clitestaxzz2w4ay2wruyjs5.queue.core.windows.net/","table":"https://clitestaxzz2w4ay2wruyjs5.table.core.windows.net/","file":"https://clitestaxzz2w4ay2wruyjs5.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiudkrkxpl4/providers/Microsoft.Storage/storageAccounts/clitestbiegaggvgwivkqyyi","name":"clitestbiegaggvgwivkqyyi","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:20.8705764Z","key2":"2021-04-23T07:13:20.8705764Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.8861995Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.8861995Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.7925187Z","primaryEndpoints":{"blob":"https://clitestbiegaggvgwivkqyyi.blob.core.windows.net/","queue":"https://clitestbiegaggvgwivkqyyi.queue.core.windows.net/","table":"https://clitestbiegaggvgwivkqyyi.table.core.windows.net/","file":"https://clitestbiegaggvgwivkqyyi.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg46ia57tmnz/providers/Microsoft.Storage/storageAccounts/clitestdlxtp24ycnjl3jui2","name":"clitestdlxtp24ycnjl3jui2","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T03:42:54.3217696Z","key2":"2021-04-23T03:42:54.3217696Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.3217696Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.3217696Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T03:42:54.2436164Z","primaryEndpoints":{"blob":"https://clitestdlxtp24ycnjl3jui2.blob.core.windows.net/","queue":"https://clitestdlxtp24ycnjl3jui2.queue.core.windows.net/","table":"https://clitestdlxtp24ycnjl3jui2.table.core.windows.net/","file":"https://clitestdlxtp24ycnjl3jui2.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg23akmjlz2r/providers/Microsoft.Storage/storageAccounts/clitestdmmxq6bklh35yongi","name":"clitestdmmxq6bklh35yongi","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-05T19:49:04.6966074Z","key2":"2021-08-05T19:49:04.6966074Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.6966074Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.6966074Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-08-05T19:49:04.6185933Z","primaryEndpoints":{"blob":"https://clitestdmmxq6bklh35yongi.blob.core.windows.net/","queue":"https://clitestdmmxq6bklh35yongi.queue.core.windows.net/","table":"https://clitestdmmxq6bklh35yongi.table.core.windows.net/","file":"https://clitestdmmxq6bklh35yongi.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv3m577d7ho/providers/Microsoft.Storage/storageAccounts/clitestej2fvhoj3zogyp5e7","name":"clitestej2fvhoj3zogyp5e7","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T03:42:54.7279926Z","key2":"2021-04-23T03:42:54.7279926Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.7279926Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.7279926Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T03:42:54.6342444Z","primaryEndpoints":{"blob":"https://clitestej2fvhoj3zogyp5e7.blob.core.windows.net/","queue":"https://clitestej2fvhoj3zogyp5e7.queue.core.windows.net/","table":"https://clitestej2fvhoj3zogyp5e7.table.core.windows.net/","file":"https://clitestej2fvhoj3zogyp5e7.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp6ikwpcsq7/providers/Microsoft.Storage/storageAccounts/clitestggvkyebv5o55dhakj","name":"clitestggvkyebv5o55dhakj","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:21.2300019Z","key2":"2021-04-23T07:13:21.2300019Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.2456239Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.2456239Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:21.1518492Z","primaryEndpoints":{"blob":"https://clitestggvkyebv5o55dhakj.blob.core.windows.net/","queue":"https://clitestggvkyebv5o55dhakj.queue.core.windows.net/","table":"https://clitestggvkyebv5o55dhakj.table.core.windows.net/","file":"https://clitestggvkyebv5o55dhakj.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn6glpfa25c/providers/Microsoft.Storage/storageAccounts/clitestgt3fjzabc7taya5zo","name":"clitestgt3fjzabc7taya5zo","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:20.6675009Z","key2":"2021-04-23T07:13:20.6675009Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6831653Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6831653Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.5894204Z","primaryEndpoints":{"blob":"https://clitestgt3fjzabc7taya5zo.blob.core.windows.net/","queue":"https://clitestgt3fjzabc7taya5zo.queue.core.windows.net/","table":"https://clitestgt3fjzabc7taya5zo.table.core.windows.net/","file":"https://clitestgt3fjzabc7taya5zo.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgptzwacrnwa/providers/Microsoft.Storage/storageAccounts/clitestivtrt5tp624n63ast","name":"clitestivtrt5tp624n63ast","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:17:38.1166795Z","key2":"2021-04-22T08:17:38.1166795Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.1166795Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.1166795Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.0541529Z","primaryEndpoints":{"blob":"https://clitestivtrt5tp624n63ast.blob.core.windows.net/","queue":"https://clitestivtrt5tp624n63ast.queue.core.windows.net/","table":"https://clitestivtrt5tp624n63ast.table.core.windows.net/","file":"https://clitestivtrt5tp624n63ast.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdc25pvki6m/providers/Microsoft.Storage/storageAccounts/clitestkxu4ahsqaxv42cyyf","name":"clitestkxu4ahsqaxv42cyyf","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:02:15.7523496Z","key2":"2021-04-22T08:02:15.7523496Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.7523496Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.7523496Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:02:15.6742355Z","primaryEndpoints":{"blob":"https://clitestkxu4ahsqaxv42cyyf.blob.core.windows.net/","queue":"https://clitestkxu4ahsqaxv42cyyf.queue.core.windows.net/","table":"https://clitestkxu4ahsqaxv42cyyf.table.core.windows.net/","file":"https://clitestkxu4ahsqaxv42cyyf.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgghkyqf7pb5/providers/Microsoft.Storage/storageAccounts/clitestpuea6vlqwxw6ihiws","name":"clitestpuea6vlqwxw6ihiws","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:21.0581083Z","key2":"2021-04-23T07:13:21.0581083Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0737014Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0737014Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.9799581Z","primaryEndpoints":{"blob":"https://clitestpuea6vlqwxw6ihiws.blob.core.windows.net/","queue":"https://clitestpuea6vlqwxw6ihiws.queue.core.windows.net/","table":"https://clitestpuea6vlqwxw6ihiws.table.core.windows.net/","file":"https://clitestpuea6vlqwxw6ihiws.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbo2ure7pgp/providers/Microsoft.Storage/storageAccounts/clitestsnv7joygpazk23npj","name":"clitestsnv7joygpazk23npj","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-05-21T02:19:20.7474327Z","key2":"2021-05-21T02:19:20.7474327Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-21T02:19:20.7474327Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-21T02:19:20.7474327Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-21T02:19:20.6537267Z","primaryEndpoints":{"blob":"https://clitestsnv7joygpazk23npj.blob.core.windows.net/","queue":"https://clitestsnv7joygpazk23npj.queue.core.windows.net/","table":"https://clitestsnv7joygpazk23npj.table.core.windows.net/","file":"https://clitestsnv7joygpazk23npj.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6i4hl6iakg/providers/Microsoft.Storage/storageAccounts/clitestu3p7a7ib4n4y7gt4m","name":"clitestu3p7a7ib4n4y7gt4m","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T01:51:53.0189478Z","primaryEndpoints":{"blob":"https://clitestu3p7a7ib4n4y7gt4m.blob.core.windows.net/","queue":"https://clitestu3p7a7ib4n4y7gt4m.queue.core.windows.net/","table":"https://clitestu3p7a7ib4n4y7gt4m.table.core.windows.net/","file":"https://clitestu3p7a7ib4n4y7gt4m.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu7jwflzo6g/providers/Microsoft.Storage/storageAccounts/clitestwqzjytdeun46rphfd","name":"clitestwqzjytdeun46rphfd","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T03:44:35.3668592Z","key2":"2021-04-23T03:44:35.3668592Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:44:35.3668592Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:44:35.3668592Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T03:44:35.2887580Z","primaryEndpoints":{"blob":"https://clitestwqzjytdeun46rphfd.blob.core.windows.net/","queue":"https://clitestwqzjytdeun46rphfd.queue.core.windows.net/","table":"https://clitestwqzjytdeun46rphfd.table.core.windows.net/","file":"https://clitestwqzjytdeun46rphfd.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgltfej7yr4u/providers/Microsoft.Storage/storageAccounts/clitestwvsg2uskf4i7vjfto","name":"clitestwvsg2uskf4i7vjfto","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-05-13T07:48:30.9247776Z","key2":"2021-05-13T07:48:30.9247776Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-13T07:48:30.9403727Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-13T07:48:30.9403727Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-13T07:48:30.8309682Z","primaryEndpoints":{"blob":"https://clitestwvsg2uskf4i7vjfto.blob.core.windows.net/","queue":"https://clitestwvsg2uskf4i7vjfto.queue.core.windows.net/","table":"https://clitestwvsg2uskf4i7vjfto.table.core.windows.net/","file":"https://clitestwvsg2uskf4i7vjfto.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzjznhcqaoh/providers/Microsoft.Storage/storageAccounts/clitestwznnmnfot33xjztmk","name":"clitestwznnmnfot33xjztmk","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:20.7299628Z","key2":"2021-04-23T07:13:20.7299628Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.7456181Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.7456181Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.6518776Z","primaryEndpoints":{"blob":"https://clitestwznnmnfot33xjztmk.blob.core.windows.net/","queue":"https://clitestwznnmnfot33xjztmk.queue.core.windows.net/","table":"https://clitestwznnmnfot33xjztmk.table.core.windows.net/","file":"https://clitestwznnmnfot33xjztmk.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4yns4yxisb/providers/Microsoft.Storage/storageAccounts/clitestyt6rxgad3kebqzh26","name":"clitestyt6rxgad3kebqzh26","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-05T19:49:04.8528440Z","key2":"2021-08-05T19:49:04.8528440Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.8528440Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.8528440Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-08-05T19:49:04.7747435Z","primaryEndpoints":{"blob":"https://clitestyt6rxgad3kebqzh26.blob.core.windows.net/","queue":"https://clitestyt6rxgad3kebqzh26.queue.core.windows.net/","table":"https://clitestyt6rxgad3kebqzh26.table.core.windows.net/","file":"https://clitestyt6rxgad3kebqzh26.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgovptfsocfg/providers/Microsoft.Storage/storageAccounts/clitestz72bbbbv2cio2pmom","name":"clitestz72bbbbv2cio2pmom","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:21.0112600Z","key2":"2021-04-23T07:13:21.0112600Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0268549Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0268549Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.9330720Z","primaryEndpoints":{"blob":"https://clitestz72bbbbv2cio2pmom.blob.core.windows.net/","queue":"https://clitestz72bbbbv2cio2pmom.queue.core.windows.net/","table":"https://clitestz72bbbbv2cio2pmom.table.core.windows.net/","file":"https://clitestz72bbbbv2cio2pmom.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxp7uwuibs5/providers/Microsoft.Storage/storageAccounts/clitestzrwidkqplnw3jmz4z","name":"clitestzrwidkqplnw3jmz4z","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:20.6831653Z","key2":"2021-04-23T07:13:20.6831653Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6987004Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6987004Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.6049571Z","primaryEndpoints":{"blob":"https://clitestzrwidkqplnw3jmz4z.blob.core.windows.net/","queue":"https://clitestzrwidkqplnw3jmz4z.queue.core.windows.net/","table":"https://clitestzrwidkqplnw3jmz4z.table.core.windows.net/","file":"https://clitestzrwidkqplnw3jmz4z.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524","name":"cs1100320004dd89524","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-03-26T05:48:15.7013062Z","key2":"2021-03-26T05:48:15.7013062Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-26T05:48:15.7169621Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-26T05:48:15.7169621Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-26T05:48:15.6545059Z","primaryEndpoints":{"dfs":"https://cs1100320004dd89524.dfs.core.windows.net/","web":"https://cs1100320004dd89524.z23.web.core.windows.net/","blob":"https://cs1100320004dd89524.blob.core.windows.net/","queue":"https://cs1100320004dd89524.queue.core.windows.net/","table":"https://cs1100320004dd89524.table.core.windows.net/","file":"https://cs1100320004dd89524.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320005416c8c9","name":"cs1100320005416c8c9","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-07-09T05:58:20.1898753Z","key2":"2021-07-09T05:58:20.1898753Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-09T05:58:20.2055665Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-09T05:58:20.2055665Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-09T05:58:20.0961322Z","primaryEndpoints":{"dfs":"https://cs1100320005416c8c9.dfs.core.windows.net/","web":"https://cs1100320005416c8c9.z23.web.core.windows.net/","blob":"https://cs1100320005416c8c9.blob.core.windows.net/","queue":"https://cs1100320005416c8c9.queue.core.windows.net/","table":"https://cs1100320005416c8c9.table.core.windows.net/","file":"https://cs1100320005416c8c9.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320007b1ce356","name":"cs1100320007b1ce356","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-08-31T13:56:10.5497663Z","key2":"2021-08-31T13:56:10.5497663Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T13:56:10.5497663Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T13:56:10.5497663Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-31T13:56:10.4560533Z","primaryEndpoints":{"dfs":"https://cs1100320007b1ce356.dfs.core.windows.net/","web":"https://cs1100320007b1ce356.z23.web.core.windows.net/","blob":"https://cs1100320007b1ce356.blob.core.windows.net/","queue":"https://cs1100320007b1ce356.queue.core.windows.net/","table":"https://cs1100320007b1ce356.table.core.windows.net/","file":"https://cs1100320007b1ce356.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867","name":"cs1100320007de01867","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-25T03:24:00.9959166Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-25T03:24:00.9959166Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-25T03:24:00.9490326Z","primaryEndpoints":{"dfs":"https://cs1100320007de01867.dfs.core.windows.net/","web":"https://cs1100320007de01867.z23.web.core.windows.net/","blob":"https://cs1100320007de01867.blob.core.windows.net/","queue":"https://cs1100320007de01867.queue.core.windows.net/","table":"https://cs1100320007de01867.table.core.windows.net/","file":"https://cs1100320007de01867.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200087c55daf","name":"cs11003200087c55daf","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-07-21T00:43:24.0011691Z","key2":"2021-07-21T00:43:24.0011691Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-21T00:43:24.0011691Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-21T00:43:24.0011691Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-21T00:43:23.9230250Z","primaryEndpoints":{"dfs":"https://cs11003200087c55daf.dfs.core.windows.net/","web":"https://cs11003200087c55daf.z23.web.core.windows.net/","blob":"https://cs11003200087c55daf.blob.core.windows.net/","queue":"https://cs11003200087c55daf.queue.core.windows.net/","table":"https://cs11003200087c55daf.table.core.windows.net/","file":"https://cs11003200087c55daf.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc","name":"cs1100320008debd5bc","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-03-17T07:12:44.1132341Z","key2":"2021-03-17T07:12:44.1132341Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-17T07:12:44.1132341Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-17T07:12:44.1132341Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-17T07:12:44.0351358Z","primaryEndpoints":{"dfs":"https://cs1100320008debd5bc.dfs.core.windows.net/","web":"https://cs1100320008debd5bc.z23.web.core.windows.net/","blob":"https://cs1100320008debd5bc.blob.core.windows.net/","queue":"https://cs1100320008debd5bc.queue.core.windows.net/","table":"https://cs1100320008debd5bc.table.core.windows.net/","file":"https://cs1100320008debd5bc.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000919ef7c5","name":"cs110032000919ef7c5","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-10-09T02:02:43.1652268Z","key2":"2021-10-09T02:02:43.1652268Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-09T02:02:43.1652268Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-09T02:02:43.1652268Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-09T02:02:43.0714900Z","primaryEndpoints":{"dfs":"https://cs110032000919ef7c5.dfs.core.windows.net/","web":"https://cs110032000919ef7c5.z23.web.core.windows.net/","blob":"https://cs110032000919ef7c5.blob.core.windows.net/","queue":"https://cs110032000919ef7c5.queue.core.windows.net/","table":"https://cs110032000919ef7c5.table.core.windows.net/","file":"https://cs110032000919ef7c5.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771","name":"cs11003200092fe0771","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-03-23T07:08:51.1436686Z","key2":"2021-03-23T07:08:51.1436686Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-23T07:08:51.1593202Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-23T07:08:51.1593202Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-23T07:08:51.0811120Z","primaryEndpoints":{"dfs":"https://cs11003200092fe0771.dfs.core.windows.net/","web":"https://cs11003200092fe0771.z23.web.core.windows.net/","blob":"https://cs11003200092fe0771.blob.core.windows.net/","queue":"https://cs11003200092fe0771.queue.core.windows.net/","table":"https://cs11003200092fe0771.table.core.windows.net/","file":"https://cs11003200092fe0771.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000b6f3c90c","name":"cs110032000b6f3c90c","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-05-06T05:28:23.2493456Z","key2":"2021-05-06T05:28:23.2493456Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-06T05:28:23.2493456Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-06T05:28:23.2493456Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-06T05:28:23.1868245Z","primaryEndpoints":{"dfs":"https://cs110032000b6f3c90c.dfs.core.windows.net/","web":"https://cs110032000b6f3c90c.z23.web.core.windows.net/","blob":"https://cs110032000b6f3c90c.blob.core.windows.net/","queue":"https://cs110032000b6f3c90c.queue.core.windows.net/","table":"https://cs110032000b6f3c90c.table.core.windows.net/","file":"https://cs110032000b6f3c90c.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71","name":"cs110032000c31bae71","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-04-15T06:39:35.4649198Z","key2":"2021-04-15T06:39:35.4649198Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T06:39:35.4649198Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T06:39:35.4649198Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-15T06:39:35.4180004Z","primaryEndpoints":{"dfs":"https://cs110032000c31bae71.dfs.core.windows.net/","web":"https://cs110032000c31bae71.z23.web.core.windows.net/","blob":"https://cs110032000c31bae71.blob.core.windows.net/","queue":"https://cs110032000c31bae71.queue.core.windows.net/","table":"https://cs110032000c31bae71.table.core.windows.net/","file":"https://cs110032000c31bae71.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00","name":"cs110032000ca62af00","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-22T02:06:18.4998653Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-22T02:06:18.4998653Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-22T02:06:18.4217109Z","primaryEndpoints":{"dfs":"https://cs110032000ca62af00.dfs.core.windows.net/","web":"https://cs110032000ca62af00.z23.web.core.windows.net/","blob":"https://cs110032000ca62af00.blob.core.windows.net/","queue":"https://cs110032000ca62af00.queue.core.windows.net/","table":"https://cs110032000ca62af00.table.core.windows.net/","file":"https://cs110032000ca62af00.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e1cb9f41","name":"cs110032000e1cb9f41","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-06-01T02:14:02.8985613Z","key2":"2021-06-01T02:14:02.8985613Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-01T02:14:02.9140912Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-01T02:14:02.9140912Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-01T02:14:02.8047066Z","primaryEndpoints":{"dfs":"https://cs110032000e1cb9f41.dfs.core.windows.net/","web":"https://cs110032000e1cb9f41.z23.web.core.windows.net/","blob":"https://cs110032000e1cb9f41.blob.core.windows.net/","queue":"https://cs110032000e1cb9f41.queue.core.windows.net/","table":"https://cs110032000e1cb9f41.table.core.windows.net/","file":"https://cs110032000e1cb9f41.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e3121978","name":"cs110032000e3121978","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-04-25T07:26:43.6124221Z","key2":"2021-04-25T07:26:43.6124221Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-25T07:26:43.6124221Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-25T07:26:43.6124221Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-25T07:26:43.5343583Z","primaryEndpoints":{"dfs":"https://cs110032000e3121978.dfs.core.windows.net/","web":"https://cs110032000e3121978.z23.web.core.windows.net/","blob":"https://cs110032000e3121978.blob.core.windows.net/","queue":"https://cs110032000e3121978.queue.core.windows.net/","table":"https://cs110032000e3121978.table.core.windows.net/","file":"https://cs110032000e3121978.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000f3aac891","name":"cs110032000f3aac891","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-10-08T11:18:17.0122606Z","key2":"2021-10-08T11:18:17.0122606Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-08T11:18:17.0122606Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-08T11:18:17.0122606Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-08T11:18:16.9184856Z","primaryEndpoints":{"dfs":"https://cs110032000f3aac891.dfs.core.windows.net/","web":"https://cs110032000f3aac891.z23.web.core.windows.net/","blob":"https://cs110032000f3aac891.blob.core.windows.net/","queue":"https://cs110032000f3aac891.queue.core.windows.net/","table":"https://cs110032000f3aac891.table.core.windows.net/","file":"https://cs110032000f3aac891.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320010339dce7","name":"cs1100320010339dce7","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-07-01T12:55:31.1442388Z","key2":"2021-07-01T12:55:31.1442388Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-01T12:55:31.1442388Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-01T12:55:31.1442388Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-01T12:55:31.0661165Z","primaryEndpoints":{"dfs":"https://cs1100320010339dce7.dfs.core.windows.net/","web":"https://cs1100320010339dce7.z23.web.core.windows.net/","blob":"https://cs1100320010339dce7.blob.core.windows.net/","queue":"https://cs1100320010339dce7.queue.core.windows.net/","table":"https://cs1100320010339dce7.table.core.windows.net/","file":"https://cs1100320010339dce7.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47","name":"cs11003200127365c47","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-03-25T03:10:52.6098894Z","key2":"2021-03-25T03:10:52.6098894Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-25T03:10:52.6098894Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-25T03:10:52.6098894Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-25T03:10:52.5318146Z","primaryEndpoints":{"dfs":"https://cs11003200127365c47.dfs.core.windows.net/","web":"https://cs11003200127365c47.z23.web.core.windows.net/","blob":"https://cs11003200127365c47.blob.core.windows.net/","queue":"https://cs11003200127365c47.queue.core.windows.net/","table":"https://cs11003200127365c47.table.core.windows.net/","file":"https://cs11003200127365c47.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200129e38348","name":"cs11003200129e38348","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-05-24T06:59:16.3135399Z","key2":"2021-05-24T06:59:16.3135399Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-24T06:59:16.3135399Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-24T06:59:16.3135399Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-24T06:59:16.2198282Z","primaryEndpoints":{"dfs":"https://cs11003200129e38348.dfs.core.windows.net/","web":"https://cs11003200129e38348.z23.web.core.windows.net/","blob":"https://cs11003200129e38348.blob.core.windows.net/","queue":"https://cs11003200129e38348.queue.core.windows.net/","table":"https://cs11003200129e38348.table.core.windows.net/","file":"https://cs11003200129e38348.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452","name":"cs1100320012c36c452","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-04-09T08:04:25.5979407Z","key2":"2021-04-09T08:04:25.5979407Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-09T08:04:25.5979407Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-09T08:04:25.5979407Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-09T08:04:25.5198295Z","primaryEndpoints":{"dfs":"https://cs1100320012c36c452.dfs.core.windows.net/","web":"https://cs1100320012c36c452.z23.web.core.windows.net/","blob":"https://cs1100320012c36c452.blob.core.windows.net/","queue":"https://cs1100320012c36c452.queue.core.windows.net/","table":"https://cs1100320012c36c452.table.core.windows.net/","file":"https://cs1100320012c36c452.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001520b2764","name":"cs110032001520b2764","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-09-03T08:56:46.2009376Z","key2":"2021-09-03T08:56:46.2009376Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-03T08:56:46.2009376Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-03T08:56:46.2009376Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-03T08:56:46.1071770Z","primaryEndpoints":{"dfs":"https://cs110032001520b2764.dfs.core.windows.net/","web":"https://cs110032001520b2764.z23.web.core.windows.net/","blob":"https://cs110032001520b2764.blob.core.windows.net/","queue":"https://cs110032001520b2764.queue.core.windows.net/","table":"https://cs110032001520b2764.table.core.windows.net/","file":"https://cs110032001520b2764.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320016ac59291","name":"cs1100320016ac59291","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-08-10T06:12:25.7518719Z","key2":"2021-08-10T06:12:25.7518719Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-10T06:12:25.7518719Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-10T06:12:25.7518719Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-10T06:12:25.6581170Z","primaryEndpoints":{"dfs":"https://cs1100320016ac59291.dfs.core.windows.net/","web":"https://cs1100320016ac59291.z23.web.core.windows.net/","blob":"https://cs1100320016ac59291.blob.core.windows.net/","queue":"https://cs1100320016ac59291.queue.core.windows.net/","table":"https://cs1100320016ac59291.table.core.windows.net/","file":"https://cs1100320016ac59291.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-dev/providers/Microsoft.Storage/storageAccounts/jl0927","name":"jl0927","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-09-27T09:22:48.0910647Z","key2":"2021-09-27T09:22:48.0910647Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-27T09:22:48.0910647Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-27T09:22:48.0910647Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-27T09:22:47.9973304Z","primaryEndpoints":{"dfs":"https://jl0927.dfs.core.windows.net/","web":"https://jl0927.z23.web.core.windows.net/","blob":"https://jl0927.blob.core.windows.net/","queue":"https://jl0927.queue.core.windows.net/","table":"https://jl0927.table.core.windows.net/","file":"https://jl0927.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-feng-purview/providers/Microsoft.Storage/storageAccounts/scansouthcentralusdteqbx","name":"scansouthcentralusdteqbx","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-23T06:00:34.2251607Z","key2":"2021-09-23T06:00:34.2251607Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-23T06:00:34.2251607Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-23T06:00:34.2251607Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-23T06:00:34.1313540Z","primaryEndpoints":{"dfs":"https://scansouthcentralusdteqbx.dfs.core.windows.net/","web":"https://scansouthcentralusdteqbx.z21.web.core.windows.net/","blob":"https://scansouthcentralusdteqbx.blob.core.windows.net/","queue":"https://scansouthcentralusdteqbx.queue.core.windows.net/","table":"https://scansouthcentralusdteqbx.table.core.windows.net/","file":"https://scansouthcentralusdteqbx.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/extmigrate","name":"extmigrate","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T08:26:10.6796218Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T08:26:10.6796218Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-16T08:26:10.5858998Z","primaryEndpoints":{"blob":"https://extmigrate.blob.core.windows.net/","queue":"https://extmigrate.queue.core.windows.net/","table":"https://extmigrate.table.core.windows.net/","file":"https://extmigrate.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://extmigrate-secondary.blob.core.windows.net/","queue":"https://extmigrate-secondary.queue.core.windows.net/","table":"https://extmigrate-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengsa","name":"fengsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-05-14T06:47:20.1106748Z","key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-06T04:33:22.8754625Z","primaryEndpoints":{"dfs":"https://fengsa.dfs.core.windows.net/","web":"https://fengsa.z19.web.core.windows.net/","blob":"https://fengsa.blob.core.windows.net/","queue":"https://fengsa.queue.core.windows.net/","table":"https://fengsa.table.core.windows.net/","file":"https://fengsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fengsa-secondary.dfs.core.windows.net/","web":"https://fengsa-secondary.z19.web.core.windows.net/","blob":"https://fengsa-secondary.blob.core.windows.net/","queue":"https://fengsa-secondary.queue.core.windows.net/","table":"https://fengsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengtestsa","name":"fengtestsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T03:10:28.7204355Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T03:10:28.7204355Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-29T03:10:28.6266623Z","primaryEndpoints":{"dfs":"https://fengtestsa.dfs.core.windows.net/","web":"https://fengtestsa.z19.web.core.windows.net/","blob":"https://fengtestsa.blob.core.windows.net/","queue":"https://fengtestsa.queue.core.windows.net/","table":"https://fengtestsa.table.core.windows.net/","file":"https://fengtestsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fengtestsa-secondary.dfs.core.windows.net/","web":"https://fengtestsa-secondary.z19.web.core.windows.net/","blob":"https://fengtestsa-secondary.blob.core.windows.net/","queue":"https://fengtestsa-secondary.queue.core.windows.net/","table":"https://fengtestsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro1","name":"storagesfrepro1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:07:42.1277444Z","primaryEndpoints":{"dfs":"https://storagesfrepro1.dfs.core.windows.net/","web":"https://storagesfrepro1.z19.web.core.windows.net/","blob":"https://storagesfrepro1.blob.core.windows.net/","queue":"https://storagesfrepro1.queue.core.windows.net/","table":"https://storagesfrepro1.table.core.windows.net/","file":"https://storagesfrepro1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro1-secondary.dfs.core.windows.net/","web":"https://storagesfrepro1-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro1-secondary.blob.core.windows.net/","queue":"https://storagesfrepro1-secondary.queue.core.windows.net/","table":"https://storagesfrepro1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro10","name":"storagesfrepro10","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:00.7815921Z","primaryEndpoints":{"dfs":"https://storagesfrepro10.dfs.core.windows.net/","web":"https://storagesfrepro10.z19.web.core.windows.net/","blob":"https://storagesfrepro10.blob.core.windows.net/","queue":"https://storagesfrepro10.queue.core.windows.net/","table":"https://storagesfrepro10.table.core.windows.net/","file":"https://storagesfrepro10.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro10-secondary.dfs.core.windows.net/","web":"https://storagesfrepro10-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro10-secondary.blob.core.windows.net/","queue":"https://storagesfrepro10-secondary.queue.core.windows.net/","table":"https://storagesfrepro10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro11","name":"storagesfrepro11","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:28.8609347Z","primaryEndpoints":{"dfs":"https://storagesfrepro11.dfs.core.windows.net/","web":"https://storagesfrepro11.z19.web.core.windows.net/","blob":"https://storagesfrepro11.blob.core.windows.net/","queue":"https://storagesfrepro11.queue.core.windows.net/","table":"https://storagesfrepro11.table.core.windows.net/","file":"https://storagesfrepro11.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro11-secondary.dfs.core.windows.net/","web":"https://storagesfrepro11-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro11-secondary.blob.core.windows.net/","queue":"https://storagesfrepro11-secondary.queue.core.windows.net/","table":"https://storagesfrepro11-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro12","name":"storagesfrepro12","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:15:15.5848345Z","primaryEndpoints":{"dfs":"https://storagesfrepro12.dfs.core.windows.net/","web":"https://storagesfrepro12.z19.web.core.windows.net/","blob":"https://storagesfrepro12.blob.core.windows.net/","queue":"https://storagesfrepro12.queue.core.windows.net/","table":"https://storagesfrepro12.table.core.windows.net/","file":"https://storagesfrepro12.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro12-secondary.dfs.core.windows.net/","web":"https://storagesfrepro12-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro12-secondary.blob.core.windows.net/","queue":"https://storagesfrepro12-secondary.queue.core.windows.net/","table":"https://storagesfrepro12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro13","name":"storagesfrepro13","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:16:55.6671828Z","primaryEndpoints":{"dfs":"https://storagesfrepro13.dfs.core.windows.net/","web":"https://storagesfrepro13.z19.web.core.windows.net/","blob":"https://storagesfrepro13.blob.core.windows.net/","queue":"https://storagesfrepro13.queue.core.windows.net/","table":"https://storagesfrepro13.table.core.windows.net/","file":"https://storagesfrepro13.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro13-secondary.dfs.core.windows.net/","web":"https://storagesfrepro13-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro13-secondary.blob.core.windows.net/","queue":"https://storagesfrepro13-secondary.queue.core.windows.net/","table":"https://storagesfrepro13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro14","name":"storagesfrepro14","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:17:40.6880204Z","primaryEndpoints":{"dfs":"https://storagesfrepro14.dfs.core.windows.net/","web":"https://storagesfrepro14.z19.web.core.windows.net/","blob":"https://storagesfrepro14.blob.core.windows.net/","queue":"https://storagesfrepro14.queue.core.windows.net/","table":"https://storagesfrepro14.table.core.windows.net/","file":"https://storagesfrepro14.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro14-secondary.dfs.core.windows.net/","web":"https://storagesfrepro14-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro14-secondary.blob.core.windows.net/","queue":"https://storagesfrepro14-secondary.queue.core.windows.net/","table":"https://storagesfrepro14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro15","name":"storagesfrepro15","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:18:52.0718543Z","primaryEndpoints":{"dfs":"https://storagesfrepro15.dfs.core.windows.net/","web":"https://storagesfrepro15.z19.web.core.windows.net/","blob":"https://storagesfrepro15.blob.core.windows.net/","queue":"https://storagesfrepro15.queue.core.windows.net/","table":"https://storagesfrepro15.table.core.windows.net/","file":"https://storagesfrepro15.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro15-secondary.dfs.core.windows.net/","web":"https://storagesfrepro15-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro15-secondary.blob.core.windows.net/","queue":"https://storagesfrepro15-secondary.queue.core.windows.net/","table":"https://storagesfrepro15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro16","name":"storagesfrepro16","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:19:33.0770034Z","primaryEndpoints":{"dfs":"https://storagesfrepro16.dfs.core.windows.net/","web":"https://storagesfrepro16.z19.web.core.windows.net/","blob":"https://storagesfrepro16.blob.core.windows.net/","queue":"https://storagesfrepro16.queue.core.windows.net/","table":"https://storagesfrepro16.table.core.windows.net/","file":"https://storagesfrepro16.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro16-secondary.dfs.core.windows.net/","web":"https://storagesfrepro16-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro16-secondary.blob.core.windows.net/","queue":"https://storagesfrepro16-secondary.queue.core.windows.net/","table":"https://storagesfrepro16-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro17","name":"storagesfrepro17","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:23.4771469Z","primaryEndpoints":{"dfs":"https://storagesfrepro17.dfs.core.windows.net/","web":"https://storagesfrepro17.z19.web.core.windows.net/","blob":"https://storagesfrepro17.blob.core.windows.net/","queue":"https://storagesfrepro17.queue.core.windows.net/","table":"https://storagesfrepro17.table.core.windows.net/","file":"https://storagesfrepro17.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro17-secondary.dfs.core.windows.net/","web":"https://storagesfrepro17-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro17-secondary.blob.core.windows.net/","queue":"https://storagesfrepro17-secondary.queue.core.windows.net/","table":"https://storagesfrepro17-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro18","name":"storagesfrepro18","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:53.7383176Z","primaryEndpoints":{"dfs":"https://storagesfrepro18.dfs.core.windows.net/","web":"https://storagesfrepro18.z19.web.core.windows.net/","blob":"https://storagesfrepro18.blob.core.windows.net/","queue":"https://storagesfrepro18.queue.core.windows.net/","table":"https://storagesfrepro18.table.core.windows.net/","file":"https://storagesfrepro18.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro18-secondary.dfs.core.windows.net/","web":"https://storagesfrepro18-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro18-secondary.blob.core.windows.net/","queue":"https://storagesfrepro18-secondary.queue.core.windows.net/","table":"https://storagesfrepro18-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro19","name":"storagesfrepro19","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:05:26.2556326Z","primaryEndpoints":{"dfs":"https://storagesfrepro19.dfs.core.windows.net/","web":"https://storagesfrepro19.z19.web.core.windows.net/","blob":"https://storagesfrepro19.blob.core.windows.net/","queue":"https://storagesfrepro19.queue.core.windows.net/","table":"https://storagesfrepro19.table.core.windows.net/","file":"https://storagesfrepro19.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro19-secondary.dfs.core.windows.net/","web":"https://storagesfrepro19-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro19-secondary.blob.core.windows.net/","queue":"https://storagesfrepro19-secondary.queue.core.windows.net/","table":"https://storagesfrepro19-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro2","name":"storagesfrepro2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:08:45.7717196Z","primaryEndpoints":{"dfs":"https://storagesfrepro2.dfs.core.windows.net/","web":"https://storagesfrepro2.z19.web.core.windows.net/","blob":"https://storagesfrepro2.blob.core.windows.net/","queue":"https://storagesfrepro2.queue.core.windows.net/","table":"https://storagesfrepro2.table.core.windows.net/","file":"https://storagesfrepro2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro2-secondary.dfs.core.windows.net/","web":"https://storagesfrepro2-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro2-secondary.blob.core.windows.net/","queue":"https://storagesfrepro2-secondary.queue.core.windows.net/","table":"https://storagesfrepro2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro20","name":"storagesfrepro20","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:07.3358422Z","primaryEndpoints":{"dfs":"https://storagesfrepro20.dfs.core.windows.net/","web":"https://storagesfrepro20.z19.web.core.windows.net/","blob":"https://storagesfrepro20.blob.core.windows.net/","queue":"https://storagesfrepro20.queue.core.windows.net/","table":"https://storagesfrepro20.table.core.windows.net/","file":"https://storagesfrepro20.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro20-secondary.dfs.core.windows.net/","web":"https://storagesfrepro20-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro20-secondary.blob.core.windows.net/","queue":"https://storagesfrepro20-secondary.queue.core.windows.net/","table":"https://storagesfrepro20-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro21","name":"storagesfrepro21","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:37.3686460Z","primaryEndpoints":{"dfs":"https://storagesfrepro21.dfs.core.windows.net/","web":"https://storagesfrepro21.z19.web.core.windows.net/","blob":"https://storagesfrepro21.blob.core.windows.net/","queue":"https://storagesfrepro21.queue.core.windows.net/","table":"https://storagesfrepro21.table.core.windows.net/","file":"https://storagesfrepro21.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro21-secondary.dfs.core.windows.net/","web":"https://storagesfrepro21-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro21-secondary.blob.core.windows.net/","queue":"https://storagesfrepro21-secondary.queue.core.windows.net/","table":"https://storagesfrepro21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro22","name":"storagesfrepro22","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:59.7201581Z","primaryEndpoints":{"dfs":"https://storagesfrepro22.dfs.core.windows.net/","web":"https://storagesfrepro22.z19.web.core.windows.net/","blob":"https://storagesfrepro22.blob.core.windows.net/","queue":"https://storagesfrepro22.queue.core.windows.net/","table":"https://storagesfrepro22.table.core.windows.net/","file":"https://storagesfrepro22.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro22-secondary.dfs.core.windows.net/","web":"https://storagesfrepro22-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro22-secondary.blob.core.windows.net/","queue":"https://storagesfrepro22-secondary.queue.core.windows.net/","table":"https://storagesfrepro22-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro23","name":"storagesfrepro23","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:29.0065050Z","primaryEndpoints":{"dfs":"https://storagesfrepro23.dfs.core.windows.net/","web":"https://storagesfrepro23.z19.web.core.windows.net/","blob":"https://storagesfrepro23.blob.core.windows.net/","queue":"https://storagesfrepro23.queue.core.windows.net/","table":"https://storagesfrepro23.table.core.windows.net/","file":"https://storagesfrepro23.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro23-secondary.dfs.core.windows.net/","web":"https://storagesfrepro23-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro23-secondary.blob.core.windows.net/","queue":"https://storagesfrepro23-secondary.queue.core.windows.net/","table":"https://storagesfrepro23-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro24","name":"storagesfrepro24","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:53.1565651Z","primaryEndpoints":{"dfs":"https://storagesfrepro24.dfs.core.windows.net/","web":"https://storagesfrepro24.z19.web.core.windows.net/","blob":"https://storagesfrepro24.blob.core.windows.net/","queue":"https://storagesfrepro24.queue.core.windows.net/","table":"https://storagesfrepro24.table.core.windows.net/","file":"https://storagesfrepro24.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro24-secondary.dfs.core.windows.net/","web":"https://storagesfrepro24-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro24-secondary.blob.core.windows.net/","queue":"https://storagesfrepro24-secondary.queue.core.windows.net/","table":"https://storagesfrepro24-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro25","name":"storagesfrepro25","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:08:18.6338258Z","primaryEndpoints":{"dfs":"https://storagesfrepro25.dfs.core.windows.net/","web":"https://storagesfrepro25.z19.web.core.windows.net/","blob":"https://storagesfrepro25.blob.core.windows.net/","queue":"https://storagesfrepro25.queue.core.windows.net/","table":"https://storagesfrepro25.table.core.windows.net/","file":"https://storagesfrepro25.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro25-secondary.dfs.core.windows.net/","web":"https://storagesfrepro25-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro25-secondary.blob.core.windows.net/","queue":"https://storagesfrepro25-secondary.queue.core.windows.net/","table":"https://storagesfrepro25-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro3","name":"storagesfrepro3","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:19.3510997Z","primaryEndpoints":{"dfs":"https://storagesfrepro3.dfs.core.windows.net/","web":"https://storagesfrepro3.z19.web.core.windows.net/","blob":"https://storagesfrepro3.blob.core.windows.net/","queue":"https://storagesfrepro3.queue.core.windows.net/","table":"https://storagesfrepro3.table.core.windows.net/","file":"https://storagesfrepro3.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro3-secondary.dfs.core.windows.net/","web":"https://storagesfrepro3-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro3-secondary.blob.core.windows.net/","queue":"https://storagesfrepro3-secondary.queue.core.windows.net/","table":"https://storagesfrepro3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro4","name":"storagesfrepro4","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:54.8993063Z","primaryEndpoints":{"dfs":"https://storagesfrepro4.dfs.core.windows.net/","web":"https://storagesfrepro4.z19.web.core.windows.net/","blob":"https://storagesfrepro4.blob.core.windows.net/","queue":"https://storagesfrepro4.queue.core.windows.net/","table":"https://storagesfrepro4.table.core.windows.net/","file":"https://storagesfrepro4.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro4-secondary.dfs.core.windows.net/","web":"https://storagesfrepro4-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro4-secondary.blob.core.windows.net/","queue":"https://storagesfrepro4-secondary.queue.core.windows.net/","table":"https://storagesfrepro4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro5","name":"storagesfrepro5","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:10:48.0177273Z","primaryEndpoints":{"dfs":"https://storagesfrepro5.dfs.core.windows.net/","web":"https://storagesfrepro5.z19.web.core.windows.net/","blob":"https://storagesfrepro5.blob.core.windows.net/","queue":"https://storagesfrepro5.queue.core.windows.net/","table":"https://storagesfrepro5.table.core.windows.net/","file":"https://storagesfrepro5.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro5-secondary.dfs.core.windows.net/","web":"https://storagesfrepro5-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro5-secondary.blob.core.windows.net/","queue":"https://storagesfrepro5-secondary.queue.core.windows.net/","table":"https://storagesfrepro5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro6","name":"storagesfrepro6","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:11:27.9331594Z","primaryEndpoints":{"dfs":"https://storagesfrepro6.dfs.core.windows.net/","web":"https://storagesfrepro6.z19.web.core.windows.net/","blob":"https://storagesfrepro6.blob.core.windows.net/","queue":"https://storagesfrepro6.queue.core.windows.net/","table":"https://storagesfrepro6.table.core.windows.net/","file":"https://storagesfrepro6.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro6-secondary.dfs.core.windows.net/","web":"https://storagesfrepro6-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro6-secondary.blob.core.windows.net/","queue":"https://storagesfrepro6-secondary.queue.core.windows.net/","table":"https://storagesfrepro6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro7","name":"storagesfrepro7","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:08.6824637Z","primaryEndpoints":{"dfs":"https://storagesfrepro7.dfs.core.windows.net/","web":"https://storagesfrepro7.z19.web.core.windows.net/","blob":"https://storagesfrepro7.blob.core.windows.net/","queue":"https://storagesfrepro7.queue.core.windows.net/","table":"https://storagesfrepro7.table.core.windows.net/","file":"https://storagesfrepro7.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro7-secondary.dfs.core.windows.net/","web":"https://storagesfrepro7-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro7-secondary.blob.core.windows.net/","queue":"https://storagesfrepro7-secondary.queue.core.windows.net/","table":"https://storagesfrepro7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro8","name":"storagesfrepro8","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:39.4283923Z","primaryEndpoints":{"dfs":"https://storagesfrepro8.dfs.core.windows.net/","web":"https://storagesfrepro8.z19.web.core.windows.net/","blob":"https://storagesfrepro8.blob.core.windows.net/","queue":"https://storagesfrepro8.queue.core.windows.net/","table":"https://storagesfrepro8.table.core.windows.net/","file":"https://storagesfrepro8.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro8-secondary.dfs.core.windows.net/","web":"https://storagesfrepro8-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro8-secondary.blob.core.windows.net/","queue":"https://storagesfrepro8-secondary.queue.core.windows.net/","table":"https://storagesfrepro8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro9","name":"storagesfrepro9","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:13:18.0691096Z","primaryEndpoints":{"dfs":"https://storagesfrepro9.dfs.core.windows.net/","web":"https://storagesfrepro9.z19.web.core.windows.net/","blob":"https://storagesfrepro9.blob.core.windows.net/","queue":"https://storagesfrepro9.queue.core.windows.net/","table":"https://storagesfrepro9.table.core.windows.net/","file":"https://storagesfrepro9.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro9-secondary.dfs.core.windows.net/","web":"https://storagesfrepro9-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro9-secondary.blob.core.windows.net/","queue":"https://storagesfrepro9-secondary.queue.core.windows.net/","table":"https://storagesfrepro9-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_acctestRG-ibt-24_acctest-IBT-0710-2_4ebedb5a-e3b1-4675-aa4c-3c160fe70907/providers/Microsoft.Storage/storageAccounts/6ynst8ytvcms52eviy9cme3e","name":"6ynst8ytvcms52eviy9cme3e","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{"createdby":"azureimagebuilder","magicvalue":"0d819542a3774a2a8709401a7cd09eb8"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-10T11:43:30.0119558Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-10T11:43:30.0119558Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-07-10T11:43:29.9651518Z","primaryEndpoints":{"blob":"https://6ynst8ytvcms52eviy9cme3e.blob.core.windows.net/","queue":"https://6ynst8ytvcms52eviy9cme3e.queue.core.windows.net/","table":"https://6ynst8ytvcms52eviy9cme3e.table.core.windows.net/","file":"https://6ynst8ytvcms52eviy9cme3e.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-28T03:06:50.2619317Z","key2":"2021-10-28T03:06:50.2619317Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T03:06:50.2619317Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T03:06:50.2619317Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-10-28T03:06:50.1681584Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-fypurview/providers/Microsoft.Storage/storageAccounts/scanwestus2ghwdfbf","name":"scanwestus2ghwdfbf","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-28T03:24:36.3735480Z","key2":"2021-09-28T03:24:36.3735480Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T03:24:36.3891539Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T03:24:36.3891539Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-28T03:24:36.2797988Z","primaryEndpoints":{"dfs":"https://scanwestus2ghwdfbf.dfs.core.windows.net/","web":"https://scanwestus2ghwdfbf.z5.web.core.windows.net/","blob":"https://scanwestus2ghwdfbf.blob.core.windows.net/","queue":"https://scanwestus2ghwdfbf.queue.core.windows.net/","table":"https://scanwestus2ghwdfbf.table.core.windows.net/","file":"https://scanwestus2ghwdfbf.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkqf4cu665yaejvrvcvhfklfoep7xw2qhgk7q5qkmosqpcdypz6aubtjovadrpefmu/providers/Microsoft.Storage/storageAccounts/clitest4ypv67tuvo34umfu5","name":"clitest4ypv67tuvo34umfu5","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-27T08:37:30.4318022Z","key2":"2021-09-27T08:37:30.4318022Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-27T08:37:30.4474578Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-27T08:37:30.4474578Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-27T08:37:30.3536782Z","primaryEndpoints":{"dfs":"https://clitest4ypv67tuvo34umfu5.dfs.core.windows.net/","web":"https://clitest4ypv67tuvo34umfu5.z3.web.core.windows.net/","blob":"https://clitest4ypv67tuvo34umfu5.blob.core.windows.net/","queue":"https://clitest4ypv67tuvo34umfu5.queue.core.windows.net/","table":"https://clitest4ypv67tuvo34umfu5.table.core.windows.net/","file":"https://clitest4ypv67tuvo34umfu5.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgefj7prpkkfwowsohocdcgln4afkr36ayb7msfujq5xbxbhzxt6nl6226d6wpfd2v6/providers/Microsoft.Storage/storageAccounts/clitestajyrm6yrgbf4c5i2s","name":"clitestajyrm6yrgbf4c5i2s","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T05:36:26.5400357Z","key2":"2021-09-26T05:36:26.5400357Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:36:26.5400357Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:36:26.5400357Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:36:26.4619069Z","primaryEndpoints":{"dfs":"https://clitestajyrm6yrgbf4c5i2s.dfs.core.windows.net/","web":"https://clitestajyrm6yrgbf4c5i2s.z3.web.core.windows.net/","blob":"https://clitestajyrm6yrgbf4c5i2s.blob.core.windows.net/","queue":"https://clitestajyrm6yrgbf4c5i2s.queue.core.windows.net/","table":"https://clitestajyrm6yrgbf4c5i2s.table.core.windows.net/","file":"https://clitestajyrm6yrgbf4c5i2s.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqqra7wllrqyeeka3jdtjjyjmqgvnwxpupwgn7gbi2vj2uiakni76ibediq2ngx2zs/providers/Microsoft.Storage/storageAccounts/clitestem4u2qtb7reiye6va","name":"clitestem4u2qtb7reiye6va","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T23:37:04.0767855Z","key2":"2021-10-22T23:37:04.0767855Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:37:04.0767855Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:37:04.0767855Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T23:37:04.0142815Z","primaryEndpoints":{"dfs":"https://clitestem4u2qtb7reiye6va.dfs.core.windows.net/","web":"https://clitestem4u2qtb7reiye6va.z3.web.core.windows.net/","blob":"https://clitestem4u2qtb7reiye6va.blob.core.windows.net/","queue":"https://clitestem4u2qtb7reiye6va.queue.core.windows.net/","table":"https://clitestem4u2qtb7reiye6va.table.core.windows.net/","file":"https://clitestem4u2qtb7reiye6va.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgorreyhcvnrewddhwjxfruu4jhexosk74hcq54o7pql6oiom4dhg4p45g6pwbrngfk/providers/Microsoft.Storage/storageAccounts/clitesterbttochhqmi5enzk","name":"clitesterbttochhqmi5enzk","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T15:56:16.9200018Z","key2":"2021-10-22T15:56:16.9200018Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T15:56:16.9200018Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T15:56:16.9200018Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T15:56:16.8575242Z","primaryEndpoints":{"dfs":"https://clitesterbttochhqmi5enzk.dfs.core.windows.net/","web":"https://clitesterbttochhqmi5enzk.z3.web.core.windows.net/","blob":"https://clitesterbttochhqmi5enzk.blob.core.windows.net/","queue":"https://clitesterbttochhqmi5enzk.queue.core.windows.net/","table":"https://clitesterbttochhqmi5enzk.table.core.windows.net/","file":"https://clitesterbttochhqmi5enzk.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzqoxctlppqseceswyeq36zau2eysrbugzmir6vxpsztoivt4atecrszzqgzpvjalj/providers/Microsoft.Storage/storageAccounts/clitestexazhooj6txsp4bif","name":"clitestexazhooj6txsp4bif","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T06:28:55.7862697Z","key2":"2021-09-26T06:28:55.7862697Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:28:55.8018954Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:28:55.8018954Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:28:55.7237634Z","primaryEndpoints":{"dfs":"https://clitestexazhooj6txsp4bif.dfs.core.windows.net/","web":"https://clitestexazhooj6txsp4bif.z3.web.core.windows.net/","blob":"https://clitestexazhooj6txsp4bif.blob.core.windows.net/","queue":"https://clitestexazhooj6txsp4bif.queue.core.windows.net/","table":"https://clitestexazhooj6txsp4bif.table.core.windows.net/","file":"https://clitestexazhooj6txsp4bif.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmwn5njjtr3wry7duhuccs6h5oxxiw2rhcfdlewmqw56fo3qehaoqulk5ktmyahglf/providers/Microsoft.Storage/storageAccounts/clitestfnjxc5idgmeluoxtm","name":"clitestfnjxc5idgmeluoxtm","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-27T08:40:43.7468930Z","key2":"2021-09-27T08:40:43.7468930Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-27T08:40:43.7625432Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-27T08:40:43.7625432Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-27T08:40:43.6688132Z","primaryEndpoints":{"dfs":"https://clitestfnjxc5idgmeluoxtm.dfs.core.windows.net/","web":"https://clitestfnjxc5idgmeluoxtm.z3.web.core.windows.net/","blob":"https://clitestfnjxc5idgmeluoxtm.blob.core.windows.net/","queue":"https://clitestfnjxc5idgmeluoxtm.queue.core.windows.net/","table":"https://clitestfnjxc5idgmeluoxtm.table.core.windows.net/","file":"https://clitestfnjxc5idgmeluoxtm.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn2hrmou3vupc7hxv534r6ythn2qz6v45svfb666d75bigid4v562yvcrcu3zvopvd/providers/Microsoft.Storage/storageAccounts/clitesthn6lf7bmqfq4lihgr","name":"clitesthn6lf7bmqfq4lihgr","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T23:36:25.4655609Z","key2":"2021-10-22T23:36:25.4655609Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:36:25.4655609Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:36:25.4655609Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T23:36:25.4186532Z","primaryEndpoints":{"dfs":"https://clitesthn6lf7bmqfq4lihgr.dfs.core.windows.net/","web":"https://clitesthn6lf7bmqfq4lihgr.z3.web.core.windows.net/","blob":"https://clitesthn6lf7bmqfq4lihgr.blob.core.windows.net/","queue":"https://clitesthn6lf7bmqfq4lihgr.queue.core.windows.net/","table":"https://clitesthn6lf7bmqfq4lihgr.table.core.windows.net/","file":"https://clitesthn6lf7bmqfq4lihgr.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggyyky3pdv7kfgca2zw6tt2uuyakcfh4mhe5jv652ywkhjplo2g3hkpg5l5vlzmscx/providers/Microsoft.Storage/storageAccounts/clitestlrazz3fr4p7ma2aqu","name":"clitestlrazz3fr4p7ma2aqu","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T06:26:22.0140081Z","key2":"2021-09-26T06:26:22.0140081Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:26:22.0140081Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:26:22.0140081Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:26:21.9514992Z","primaryEndpoints":{"dfs":"https://clitestlrazz3fr4p7ma2aqu.dfs.core.windows.net/","web":"https://clitestlrazz3fr4p7ma2aqu.z3.web.core.windows.net/","blob":"https://clitestlrazz3fr4p7ma2aqu.blob.core.windows.net/","queue":"https://clitestlrazz3fr4p7ma2aqu.queue.core.windows.net/","table":"https://clitestlrazz3fr4p7ma2aqu.table.core.windows.net/","file":"https://clitestlrazz3fr4p7ma2aqu.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgihpamtetsioehvqhcaizytambbwjq2a4so6iz734ejm7u6prta4pxwcc2gyhhaxqf/providers/Microsoft.Storage/storageAccounts/clitestmyjybsngqmztsnzyt","name":"clitestmyjybsngqmztsnzyt","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T05:30:18.6096170Z","key2":"2021-09-26T05:30:18.6096170Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:30:18.6096170Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:30:18.6096170Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:30:18.5314899Z","primaryEndpoints":{"dfs":"https://clitestmyjybsngqmztsnzyt.dfs.core.windows.net/","web":"https://clitestmyjybsngqmztsnzyt.z3.web.core.windows.net/","blob":"https://clitestmyjybsngqmztsnzyt.blob.core.windows.net/","queue":"https://clitestmyjybsngqmztsnzyt.queue.core.windows.net/","table":"https://clitestmyjybsngqmztsnzyt.table.core.windows.net/","file":"https://clitestmyjybsngqmztsnzyt.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbksbwoy7iftsvok2gu7el6jq32a53l75d3amp4qff74lwqen6nypkv2vsy5qpvdx6/providers/Microsoft.Storage/storageAccounts/clitestnx46jh36sfhiun4zr","name":"clitestnx46jh36sfhiun4zr","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T06:46:06.0337216Z","key2":"2021-09-26T06:46:06.0337216Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:46:06.0337216Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:46:06.0337216Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:46:05.9555808Z","primaryEndpoints":{"dfs":"https://clitestnx46jh36sfhiun4zr.dfs.core.windows.net/","web":"https://clitestnx46jh36sfhiun4zr.z3.web.core.windows.net/","blob":"https://clitestnx46jh36sfhiun4zr.blob.core.windows.net/","queue":"https://clitestnx46jh36sfhiun4zr.queue.core.windows.net/","table":"https://clitestnx46jh36sfhiun4zr.table.core.windows.net/","file":"https://clitestnx46jh36sfhiun4zr.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg33fo62u6qo54y4oh6ubodzg5drtpqjvfeaxkl7eqcioetepluk6x6j2y26gadsnlb/providers/Microsoft.Storage/storageAccounts/clitestnyptbvai7mjrv4d36","name":"clitestnyptbvai7mjrv4d36","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T06:38:37.8872316Z","key2":"2021-09-26T06:38:37.8872316Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:38:37.8872316Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:38:37.8872316Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:38:37.8247073Z","primaryEndpoints":{"dfs":"https://clitestnyptbvai7mjrv4d36.dfs.core.windows.net/","web":"https://clitestnyptbvai7mjrv4d36.z3.web.core.windows.net/","blob":"https://clitestnyptbvai7mjrv4d36.blob.core.windows.net/","queue":"https://clitestnyptbvai7mjrv4d36.queue.core.windows.net/","table":"https://clitestnyptbvai7mjrv4d36.table.core.windows.net/","file":"https://clitestnyptbvai7mjrv4d36.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglqgc5xdku5ojvlcdmxmxwx4otzrvmtvwkizs74vqyuovzqgtxbocao3wxuey3ckyg/providers/Microsoft.Storage/storageAccounts/clitestvkt5uhqkknoz4z2ps","name":"clitestvkt5uhqkknoz4z2ps","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T15:56:12.2012021Z","key2":"2021-10-22T15:56:12.2012021Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T15:56:12.2012021Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T15:56:12.2012021Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T15:56:12.1387094Z","primaryEndpoints":{"dfs":"https://clitestvkt5uhqkknoz4z2ps.dfs.core.windows.net/","web":"https://clitestvkt5uhqkknoz4z2ps.z3.web.core.windows.net/","blob":"https://clitestvkt5uhqkknoz4z2ps.blob.core.windows.net/","queue":"https://clitestvkt5uhqkknoz4z2ps.queue.core.windows.net/","table":"https://clitestvkt5uhqkknoz4z2ps.table.core.windows.net/","file":"https://clitestvkt5uhqkknoz4z2ps.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgug2zs2ll3cqv3r5gw6yql5lexqi72ktubc4ozqz6g62yykofs5s6dzfutvlzwdfzd/providers/Microsoft.Storage/storageAccounts/clitestyrqe5rlxui5rawuhk","name":"clitestyrqe5rlxui5rawuhk","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T05:51:29.8791272Z","key2":"2021-09-26T05:51:29.8791272Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:51:29.8791272Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:51:29.8791272Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:51:29.8009981Z","primaryEndpoints":{"dfs":"https://clitestyrqe5rlxui5rawuhk.dfs.core.windows.net/","web":"https://clitestyrqe5rlxui5rawuhk.z3.web.core.windows.net/","blob":"https://clitestyrqe5rlxui5rawuhk.blob.core.windows.net/","queue":"https://clitestyrqe5rlxui5rawuhk.queue.core.windows.net/","table":"https://clitestyrqe5rlxui5rawuhk.table.core.windows.net/","file":"https://clitestyrqe5rlxui5rawuhk.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg-euap-east/providers/Microsoft.Storage/storageAccounts/zhiyihuangsaeuapeast","name":"zhiyihuangsaeuapeast","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-09-24T06:56:08.6084736Z","key2":"2021-09-24T06:56:08.6084736Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-24T06:56:08.6084736Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-24T06:56:08.6084736Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-24T06:56:08.5303617Z","primaryEndpoints":{"dfs":"https://zhiyihuangsaeuapeast.dfs.core.windows.net/","web":"https://zhiyihuangsaeuapeast.z3.web.core.windows.net/","blob":"https://zhiyihuangsaeuapeast.blob.core.windows.net/","queue":"https://zhiyihuangsaeuapeast.queue.core.windows.net/","table":"https://zhiyihuangsaeuapeast.table.core.windows.net/","file":"https://zhiyihuangsaeuapeast.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zhiyihuangsaeuapeast-secondary.dfs.core.windows.net/","web":"https://zhiyihuangsaeuapeast-secondary.z3.web.core.windows.net/","blob":"https://zhiyihuangsaeuapeast-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsaeuapeast-secondary.queue.core.windows.net/","table":"https://zhiyihuangsaeuapeast-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhtest","name":"zuhtest","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"identity":{"type":"ManagedServiceIdentity","userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zuhid"},"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-14T07:13:45.1503826Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-14T07:13:45.1503826Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Creating","creationTime":"2021-01-14T07:13:45.0603798Z","primaryEndpoints":{"dfs":"https://zuhtest.dfs.core.windows.net/","web":"https://zuhtest.z3.web.core.windows.net/","blob":"https://zuhtest.blob.core.windows.net/","queue":"https://zuhtest.queue.core.windows.net/","table":"https://zuhtest.table.core.windows.net/","file":"https://zuhtest.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zuhtest-secondary.dfs.core.windows.net/","web":"https://zuhtest-secondary.z3.web.core.windows.net/","blob":"https://zuhtest-secondary.blob.core.windows.net/","queue":"https://zuhtest-secondary.queue.core.windows.net/","table":"https://zuhtest-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest47xrljy3nijo3qd5vzsdilpqy5gmhc6vhrxdt4iznh6uaopskftgp4scam2w7drpot4l/providers/Microsoft.Storage/storageAccounts/clitest23zhehg2ug7pzcmmt","name":"clitest23zhehg2ug7pzcmmt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T23:52:09.9267277Z","key2":"2021-10-22T23:52:09.9267277Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:52:09.9267277Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:52:09.9267277Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T23:52:09.8486094Z","primaryEndpoints":{"dfs":"https://clitest23zhehg2ug7pzcmmt.dfs.core.windows.net/","web":"https://clitest23zhehg2ug7pzcmmt.z2.web.core.windows.net/","blob":"https://clitest23zhehg2ug7pzcmmt.blob.core.windows.net/","queue":"https://clitest23zhehg2ug7pzcmmt.queue.core.windows.net/","table":"https://clitest23zhehg2ug7pzcmmt.table.core.windows.net/","file":"https://clitest23zhehg2ug7pzcmmt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestuh33sdgq6xqrgmv2evfqsj7s5elfu75j425duypsq3ykwiqywcsbk7k5hm2dn6dhx3ga/providers/Microsoft.Storage/storageAccounts/clitest2dpu5cejmyr6o6fy4","name":"clitest2dpu5cejmyr6o6fy4","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-13T01:03:47.8707679Z","key2":"2021-08-13T01:03:47.8707679Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-13T01:03:47.8707679Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-13T01:03:47.8707679Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-13T01:03:47.8082686Z","primaryEndpoints":{"dfs":"https://clitest2dpu5cejmyr6o6fy4.dfs.core.windows.net/","web":"https://clitest2dpu5cejmyr6o6fy4.z2.web.core.windows.net/","blob":"https://clitest2dpu5cejmyr6o6fy4.blob.core.windows.net/","queue":"https://clitest2dpu5cejmyr6o6fy4.queue.core.windows.net/","table":"https://clitest2dpu5cejmyr6o6fy4.table.core.windows.net/","file":"https://clitest2dpu5cejmyr6o6fy4.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrl6kiw7ux2j73xj2v7cbet4byjrmn5uenrcnz6qfu5oxpvxtkkik2djcxys4gcpfrgr4/providers/Microsoft.Storage/storageAccounts/clitest2hc2cek5kg4wbcqwa","name":"clitest2hc2cek5kg4wbcqwa","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-18T09:03:47.2900270Z","key2":"2021-06-18T09:03:47.2900270Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-18T09:03:47.2950283Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-18T09:03:47.2950283Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-18T09:03:47.2400033Z","primaryEndpoints":{"dfs":"https://clitest2hc2cek5kg4wbcqwa.dfs.core.windows.net/","web":"https://clitest2hc2cek5kg4wbcqwa.z2.web.core.windows.net/","blob":"https://clitest2hc2cek5kg4wbcqwa.blob.core.windows.net/","queue":"https://clitest2hc2cek5kg4wbcqwa.queue.core.windows.net/","table":"https://clitest2hc2cek5kg4wbcqwa.table.core.windows.net/","file":"https://clitest2hc2cek5kg4wbcqwa.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcwbyb7elcliee36ry67adfa656263s5nl2c67it2o2pjr3wrh5mwmg3ocygfxjou3vxa/providers/Microsoft.Storage/storageAccounts/clitest2wy5mqj7vog4cn65p","name":"clitest2wy5mqj7vog4cn65p","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T16:12:01.9361563Z","key2":"2021-10-22T16:12:01.9361563Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T16:12:01.9361563Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T16:12:01.9361563Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T16:12:01.8580265Z","primaryEndpoints":{"dfs":"https://clitest2wy5mqj7vog4cn65p.dfs.core.windows.net/","web":"https://clitest2wy5mqj7vog4cn65p.z2.web.core.windows.net/","blob":"https://clitest2wy5mqj7vog4cn65p.blob.core.windows.net/","queue":"https://clitest2wy5mqj7vog4cn65p.queue.core.windows.net/","table":"https://clitest2wy5mqj7vog4cn65p.table.core.windows.net/","file":"https://clitest2wy5mqj7vog4cn65p.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlg5ebdqcv52sflwjoqlwhicwckgl6uznufjdep6cezb52lt73nagcohr2yn5s2pjkddl/providers/Microsoft.Storage/storageAccounts/clitest6vxkrzgloyre3jqjs","name":"clitest6vxkrzgloyre3jqjs","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-23T03:10:29.4846667Z","key2":"2021-07-23T03:10:29.4846667Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-23T03:10:29.5002574Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-23T03:10:29.5002574Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-23T03:10:29.4377939Z","primaryEndpoints":{"dfs":"https://clitest6vxkrzgloyre3jqjs.dfs.core.windows.net/","web":"https://clitest6vxkrzgloyre3jqjs.z2.web.core.windows.net/","blob":"https://clitest6vxkrzgloyre3jqjs.blob.core.windows.net/","queue":"https://clitest6vxkrzgloyre3jqjs.queue.core.windows.net/","table":"https://clitest6vxkrzgloyre3jqjs.table.core.windows.net/","file":"https://clitest6vxkrzgloyre3jqjs.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestfwybg5aqnlewkvelizobsdyy6zocpnnltod4k5d6l62rlz3wfkmdpz7fcw3xbvo45lad/providers/Microsoft.Storage/storageAccounts/clitestdk7kvmf5lss5lltse","name":"clitestdk7kvmf5lss5lltse","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-21T03:24:22.5335528Z","key2":"2021-06-21T03:24:22.5335528Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-21T03:24:22.5335528Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-21T03:24:22.5335528Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-21T03:24:22.4635745Z","primaryEndpoints":{"dfs":"https://clitestdk7kvmf5lss5lltse.dfs.core.windows.net/","web":"https://clitestdk7kvmf5lss5lltse.z2.web.core.windows.net/","blob":"https://clitestdk7kvmf5lss5lltse.blob.core.windows.net/","queue":"https://clitestdk7kvmf5lss5lltse.queue.core.windows.net/","table":"https://clitestdk7kvmf5lss5lltse.table.core.windows.net/","file":"https://clitestdk7kvmf5lss5lltse.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestkmydtxqqwqds5d67vdbrwtk32xdryjsxq6fp74nse75bdhdla7mh47b6myevefnapwyx/providers/Microsoft.Storage/storageAccounts/clitestgqwsejh46zuqlc5pm","name":"clitestgqwsejh46zuqlc5pm","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-06T05:27:12.7993484Z","key2":"2021-08-06T05:27:12.7993484Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-06T05:27:12.8149753Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-06T05:27:12.8149753Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-06T05:27:12.7368799Z","primaryEndpoints":{"dfs":"https://clitestgqwsejh46zuqlc5pm.dfs.core.windows.net/","web":"https://clitestgqwsejh46zuqlc5pm.z2.web.core.windows.net/","blob":"https://clitestgqwsejh46zuqlc5pm.blob.core.windows.net/","queue":"https://clitestgqwsejh46zuqlc5pm.queue.core.windows.net/","table":"https://clitestgqwsejh46zuqlc5pm.table.core.windows.net/","file":"https://clitestgqwsejh46zuqlc5pm.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestndsnnd5ibnsjkzl7w5mbaujjmelonc2xjmyrd325iiwno27u6sxcxkewjeox2x2wr633/providers/Microsoft.Storage/storageAccounts/clitestgz6nb4it72a36mdpt","name":"clitestgz6nb4it72a36mdpt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-20T02:02:00.4577106Z","key2":"2021-08-20T02:02:00.4577106Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-20T02:02:00.4577106Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-20T02:02:00.4577106Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-20T02:02:00.3952449Z","primaryEndpoints":{"dfs":"https://clitestgz6nb4it72a36mdpt.dfs.core.windows.net/","web":"https://clitestgz6nb4it72a36mdpt.z2.web.core.windows.net/","blob":"https://clitestgz6nb4it72a36mdpt.blob.core.windows.net/","queue":"https://clitestgz6nb4it72a36mdpt.queue.core.windows.net/","table":"https://clitestgz6nb4it72a36mdpt.table.core.windows.net/","file":"https://clitestgz6nb4it72a36mdpt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestsc4q5ncei7qimmmmtqmedt4valwfif74bbu7mdfwqimzfzfkopwgrmua7p4rcsga53m4/providers/Microsoft.Storage/storageAccounts/clitestlssboc5vg5mdivn4h","name":"clitestlssboc5vg5mdivn4h","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-18T08:34:36.9887468Z","key2":"2021-06-18T08:34:36.9887468Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-18T08:34:36.9937445Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-18T08:34:36.9937445Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-18T08:34:36.9237913Z","primaryEndpoints":{"dfs":"https://clitestlssboc5vg5mdivn4h.dfs.core.windows.net/","web":"https://clitestlssboc5vg5mdivn4h.z2.web.core.windows.net/","blob":"https://clitestlssboc5vg5mdivn4h.blob.core.windows.net/","queue":"https://clitestlssboc5vg5mdivn4h.queue.core.windows.net/","table":"https://clitestlssboc5vg5mdivn4h.table.core.windows.net/","file":"https://clitestlssboc5vg5mdivn4h.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5yatgcl7dfear3v3e5d5hrqbpo5bdotmwoq7auiuykmzx74is6rzhkib56ajwf5ghxrk/providers/Microsoft.Storage/storageAccounts/clitestlzfflnot5wnc3y4j3","name":"clitestlzfflnot5wnc3y4j3","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-28T02:21:02.0736425Z","key2":"2021-09-28T02:21:02.0736425Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T02:21:02.0736425Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T02:21:02.0736425Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-28T02:21:02.0267640Z","primaryEndpoints":{"dfs":"https://clitestlzfflnot5wnc3y4j3.dfs.core.windows.net/","web":"https://clitestlzfflnot5wnc3y4j3.z2.web.core.windows.net/","blob":"https://clitestlzfflnot5wnc3y4j3.blob.core.windows.net/","queue":"https://clitestlzfflnot5wnc3y4j3.queue.core.windows.net/","table":"https://clitestlzfflnot5wnc3y4j3.table.core.windows.net/","file":"https://clitestlzfflnot5wnc3y4j3.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestjkw7fpanpscpileddbqrrrkjrtb5xi47wmvttkiqwsqcuo3ldvzszwso3x4c5apy6m5o/providers/Microsoft.Storage/storageAccounts/clitestm6u3xawj3qsydpfam","name":"clitestm6u3xawj3qsydpfam","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T07:13:03.1496586Z","key2":"2021-09-07T07:13:03.1496586Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T07:13:03.1496586Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T07:13:03.1496586Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T07:13:03.0714932Z","primaryEndpoints":{"dfs":"https://clitestm6u3xawj3qsydpfam.dfs.core.windows.net/","web":"https://clitestm6u3xawj3qsydpfam.z2.web.core.windows.net/","blob":"https://clitestm6u3xawj3qsydpfam.blob.core.windows.net/","queue":"https://clitestm6u3xawj3qsydpfam.queue.core.windows.net/","table":"https://clitestm6u3xawj3qsydpfam.table.core.windows.net/","file":"https://clitestm6u3xawj3qsydpfam.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvabzmquoslc3mtf5h3qd7dglwx45me4yxyefaw4ktsf7fbc3bx2tl75tdn5eqbgd3atx/providers/Microsoft.Storage/storageAccounts/clitestq7ur4vdqkjvy2rdgj","name":"clitestq7ur4vdqkjvy2rdgj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-28T02:27:14.4071914Z","key2":"2021-09-28T02:27:14.4071914Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T02:27:14.4071914Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T02:27:14.4071914Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-28T02:27:14.3446978Z","primaryEndpoints":{"dfs":"https://clitestq7ur4vdqkjvy2rdgj.dfs.core.windows.net/","web":"https://clitestq7ur4vdqkjvy2rdgj.z2.web.core.windows.net/","blob":"https://clitestq7ur4vdqkjvy2rdgj.blob.core.windows.net/","queue":"https://clitestq7ur4vdqkjvy2rdgj.queue.core.windows.net/","table":"https://clitestq7ur4vdqkjvy2rdgj.table.core.windows.net/","file":"https://clitestq7ur4vdqkjvy2rdgj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestugd6g2jxyo5mu6uxhc4zea4ygi2iuubouzxmdyuz6srnvrbwlidbvuu4qdieuwg4xlsr/providers/Microsoft.Storage/storageAccounts/clitestqorauf75d5yqkhdhc","name":"clitestqorauf75d5yqkhdhc","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-03T02:52:09.6342752Z","key2":"2021-09-03T02:52:09.6342752Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-03T02:52:09.6342752Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-03T02:52:09.6342752Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-03T02:52:09.5561638Z","primaryEndpoints":{"dfs":"https://clitestqorauf75d5yqkhdhc.dfs.core.windows.net/","web":"https://clitestqorauf75d5yqkhdhc.z2.web.core.windows.net/","blob":"https://clitestqorauf75d5yqkhdhc.blob.core.windows.net/","queue":"https://clitestqorauf75d5yqkhdhc.queue.core.windows.net/","table":"https://clitestqorauf75d5yqkhdhc.table.core.windows.net/","file":"https://clitestqorauf75d5yqkhdhc.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestzbuh7m7bllna7xosjhxr5ppfs6tnukxctfm4ydkzmzvyt7tf2ru3yjmthwy6mqqp62yy/providers/Microsoft.Storage/storageAccounts/clitestrpsk56xwloumq6ngj","name":"clitestrpsk56xwloumq6ngj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-21T05:52:26.0729783Z","key2":"2021-06-21T05:52:26.0729783Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-21T05:52:26.0779697Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-21T05:52:26.0779697Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-21T05:52:26.0129686Z","primaryEndpoints":{"dfs":"https://clitestrpsk56xwloumq6ngj.dfs.core.windows.net/","web":"https://clitestrpsk56xwloumq6ngj.z2.web.core.windows.net/","blob":"https://clitestrpsk56xwloumq6ngj.blob.core.windows.net/","queue":"https://clitestrpsk56xwloumq6ngj.queue.core.windows.net/","table":"https://clitestrpsk56xwloumq6ngj.table.core.windows.net/","file":"https://clitestrpsk56xwloumq6ngj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest62jxvr4odko5gn5tjo4z7ypmirid6zm72g3ah6zg25qh5r5xve5fhikdcnjpxvsaikhl/providers/Microsoft.Storage/storageAccounts/clitestst2iwgltnfj4zoiva","name":"clitestst2iwgltnfj4zoiva","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-27T01:58:18.2723177Z","key2":"2021-08-27T01:58:18.2723177Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-27T01:58:18.2723177Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-27T01:58:18.2723177Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-27T01:58:18.2410749Z","primaryEndpoints":{"dfs":"https://clitestst2iwgltnfj4zoiva.dfs.core.windows.net/","web":"https://clitestst2iwgltnfj4zoiva.z2.web.core.windows.net/","blob":"https://clitestst2iwgltnfj4zoiva.blob.core.windows.net/","queue":"https://clitestst2iwgltnfj4zoiva.queue.core.windows.net/","table":"https://clitestst2iwgltnfj4zoiva.table.core.windows.net/","file":"https://clitestst2iwgltnfj4zoiva.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestxk2peoqt7nd76ktof7sub3mkkcldygtt36d3imnwjd5clletodypibd5uaglpdk44yjm/providers/Microsoft.Storage/storageAccounts/clitestu6whdalngwsksemjs","name":"clitestu6whdalngwsksemjs","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-10T02:29:23.5697486Z","key2":"2021-09-10T02:29:23.5697486Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T02:29:23.5697486Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T02:29:23.5697486Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-10T02:29:23.5072536Z","primaryEndpoints":{"dfs":"https://clitestu6whdalngwsksemjs.dfs.core.windows.net/","web":"https://clitestu6whdalngwsksemjs.z2.web.core.windows.net/","blob":"https://clitestu6whdalngwsksemjs.blob.core.windows.net/","queue":"https://clitestu6whdalngwsksemjs.queue.core.windows.net/","table":"https://clitestu6whdalngwsksemjs.table.core.windows.net/","file":"https://clitestu6whdalngwsksemjs.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlnzg2rscuyweetdgvywse35jkhd3s7gay3wnjzoyqojyq6i3iw42uycss45mj52zitnl/providers/Microsoft.Storage/storageAccounts/clitestzarcstbcgg3yqinfg","name":"clitestzarcstbcgg3yqinfg","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-30T02:23:46.1127669Z","key2":"2021-07-30T02:23:46.1127669Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-30T02:23:46.1127669Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-30T02:23:46.1127669Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-30T02:23:46.0658902Z","primaryEndpoints":{"dfs":"https://clitestzarcstbcgg3yqinfg.dfs.core.windows.net/","web":"https://clitestzarcstbcgg3yqinfg.z2.web.core.windows.net/","blob":"https://clitestzarcstbcgg3yqinfg.blob.core.windows.net/","queue":"https://clitestzarcstbcgg3yqinfg.queue.core.windows.net/","table":"https://clitestzarcstbcgg3yqinfg.table.core.windows.net/","file":"https://clitestzarcstbcgg3yqinfg.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestnsw32miijgjmandsqepzbytqsxe2dbpfuh3t2d2u7saewxrnoilajjocllnjxt45ggjc/providers/Microsoft.Storage/storageAccounts/versionhf53xzmbt3fwu3kn3","name":"versionhf53xzmbt3fwu3kn3","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T02:29:06.2474527Z","key2":"2021-09-07T02:29:06.2474527Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:29:06.2474527Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:29:06.2474527Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:29:06.1849281Z","primaryEndpoints":{"dfs":"https://versionhf53xzmbt3fwu3kn3.dfs.core.windows.net/","web":"https://versionhf53xzmbt3fwu3kn3.z2.web.core.windows.net/","blob":"https://versionhf53xzmbt3fwu3kn3.blob.core.windows.net/","queue":"https://versionhf53xzmbt3fwu3kn3.queue.core.windows.net/","table":"https://versionhf53xzmbt3fwu3kn3.table.core.windows.net/","file":"https://versionhf53xzmbt3fwu3kn3.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyex6l2i6otx4eikzzr7rikdz4b6rezhqeg6mnzwvtof4vpxkcw34rd7hwpk7q5ltnrxp/providers/Microsoft.Storage/storageAccounts/versionncoq7gv5mbp4o2uf6","name":"versionncoq7gv5mbp4o2uf6","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-15T06:47:03.1566686Z","key2":"2021-10-15T06:47:03.1566686Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T06:47:03.1723019Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T06:47:03.1723019Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-15T06:47:03.0785915Z","primaryEndpoints":{"dfs":"https://versionncoq7gv5mbp4o2uf6.dfs.core.windows.net/","web":"https://versionncoq7gv5mbp4o2uf6.z2.web.core.windows.net/","blob":"https://versionncoq7gv5mbp4o2uf6.blob.core.windows.net/","queue":"https://versionncoq7gv5mbp4o2uf6.queue.core.windows.net/","table":"https://versionncoq7gv5mbp4o2uf6.table.core.windows.net/","file":"https://versionncoq7gv5mbp4o2uf6.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyxq5yt6z4or5ddvyvubtdjn73mslv25s4bqqme3ljmj6jsaagbmyn376m3cdex35tubw/providers/Microsoft.Storage/storageAccounts/versionqp3efyteboplomp5w","name":"versionqp3efyteboplomp5w","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T02:20:09.3003824Z","key2":"2021-09-07T02:20:09.3003824Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:20:09.3003824Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:20:09.3003824Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:20:09.2378807Z","primaryEndpoints":{"dfs":"https://versionqp3efyteboplomp5w.dfs.core.windows.net/","web":"https://versionqp3efyteboplomp5w.z2.web.core.windows.net/","blob":"https://versionqp3efyteboplomp5w.blob.core.windows.net/","queue":"https://versionqp3efyteboplomp5w.queue.core.windows.net/","table":"https://versionqp3efyteboplomp5w.table.core.windows.net/","file":"https://versionqp3efyteboplomp5w.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesturbzqfflmkkupfwgtkutwvdy5nte5rec7neu6eyya4kahyepssopgq72mzxl54g7h2pt/providers/Microsoft.Storage/storageAccounts/versionscknbekpvmwrjeznt","name":"versionscknbekpvmwrjeznt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-28T02:39:44.7553582Z","key2":"2021-10-28T02:39:44.7553582Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T02:39:44.7553582Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T02:39:44.7553582Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-28T02:39:44.6772068Z","primaryEndpoints":{"dfs":"https://versionscknbekpvmwrjeznt.dfs.core.windows.net/","web":"https://versionscknbekpvmwrjeznt.z2.web.core.windows.net/","blob":"https://versionscknbekpvmwrjeznt.blob.core.windows.net/","queue":"https://versionscknbekpvmwrjeznt.queue.core.windows.net/","table":"https://versionscknbekpvmwrjeznt.table.core.windows.net/","file":"https://versionscknbekpvmwrjeznt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrhkyigtoloz2mqogvsddvmbtemvops4dw6kluaww553xqrbl5kwgnpuse5fdom2fq5bd/providers/Microsoft.Storage/storageAccounts/versionvsfin4nwuwcxndawj","name":"versionvsfin4nwuwcxndawj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T02:26:57.6350762Z","key2":"2021-09-07T02:26:57.6350762Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:26:57.6350762Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:26:57.6350762Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:26:57.5726321Z","primaryEndpoints":{"dfs":"https://versionvsfin4nwuwcxndawj.dfs.core.windows.net/","web":"https://versionvsfin4nwuwcxndawj.z2.web.core.windows.net/","blob":"https://versionvsfin4nwuwcxndawj.blob.core.windows.net/","queue":"https://versionvsfin4nwuwcxndawj.queue.core.windows.net/","table":"https://versionvsfin4nwuwcxndawj.table.core.windows.net/","file":"https://versionvsfin4nwuwcxndawj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestkngvostxvfzwz7hb2pyqpst4ekovxl4qehicnbufjmoug5injclokanwouejm77muega/providers/Microsoft.Storage/storageAccounts/versionyrdifxty6izovwb6i","name":"versionyrdifxty6izovwb6i","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T02:23:07.0385168Z","key2":"2021-09-07T02:23:07.0385168Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:23:07.0385168Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:23:07.0385168Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:23:06.9760160Z","primaryEndpoints":{"dfs":"https://versionyrdifxty6izovwb6i.dfs.core.windows.net/","web":"https://versionyrdifxty6izovwb6i.z2.web.core.windows.net/","blob":"https://versionyrdifxty6izovwb6i.blob.core.windows.net/","queue":"https://versionyrdifxty6izovwb6i.queue.core.windows.net/","table":"https://versionyrdifxty6izovwb6i.table.core.windows.net/","file":"https://versionyrdifxty6izovwb6i.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssaeuap","name":"yssaeuap","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-09-06T07:56:33.4932788Z","key2":"2021-09-06T07:56:33.4932788Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-06T07:56:33.5088661Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-06T07:56:33.5088661Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-06T07:56:33.4151419Z","primaryEndpoints":{"dfs":"https://yssaeuap.dfs.core.windows.net/","web":"https://yssaeuap.z2.web.core.windows.net/","blob":"https://yssaeuap.blob.core.windows.net/","queue":"https://yssaeuap.queue.core.windows.net/","table":"https://yssaeuap.table.core.windows.net/","file":"https://yssaeuap.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg-euap/providers/Microsoft.Storage/storageAccounts/zhiyihuangsaeuap","name":"zhiyihuangsaeuap","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"immutableStorageWithVersioning":{"enabled":true},"keyCreationTime":{"key1":"2021-09-24T05:54:33.0930905Z","key2":"2021-09-24T05:54:33.0930905Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-24T05:54:33.1087163Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-24T05:54:33.1087163Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-24T05:54:33.0305911Z","primaryEndpoints":{"dfs":"https://zhiyihuangsaeuap.dfs.core.windows.net/","web":"https://zhiyihuangsaeuap.z2.web.core.windows.net/","blob":"https://zhiyihuangsaeuap.blob.core.windows.net/","queue":"https://zhiyihuangsaeuap.queue.core.windows.net/","table":"https://zhiyihuangsaeuap.table.core.windows.net/","file":"https://zhiyihuangsaeuap.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available","secondaryLocation":"eastus2euap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zhiyihuangsaeuap-secondary.dfs.core.windows.net/","web":"https://zhiyihuangsaeuap-secondary.z2.web.core.windows.net/","blob":"https://zhiyihuangsaeuap-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsaeuap-secondary.queue.core.windows.net/","table":"https://zhiyihuangsaeuap-secondary.table.core.windows.net/"}}}]}' + string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bkerrigan/providers/Microsoft.Storage/storageAccounts/bkerrigandiag","name":"bkerrigandiag","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-17T00:24:49.4879627Z","key2":"2022-05-17T00:24:49.4879627Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-17T00:24:49.4879627Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-17T00:24:49.4879627Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-17T00:24:49.3473400Z","primaryEndpoints":{"blob":"https://bkerrigandiag.blob.core.windows.net/","queue":"https://bkerrigandiag.queue.core.windows.net/","table":"https://bkerrigandiag.table.core.windows.net/","file":"https://bkerrigandiag.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/craigw/providers/Microsoft.Storage/storageAccounts/craigwendpointtest","name":"craigwendpointtest","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-15T21:56:49.8049186Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-15T21:56:49.8049186Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-15T21:56:49.7111640Z","primaryEndpoints":{"dfs":"https://craigwendpointtest.dfs.core.windows.net/","web":"https://craigwendpointtest.z13.web.core.windows.net/","blob":"https://craigwendpointtest.blob.core.windows.net/","queue":"https://craigwendpointtest.queue.core.windows.net/","table":"https://craigwendpointtest.table.core.windows.net/","file":"https://craigwendpointtest.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://craigwendpointtest-secondary.dfs.core.windows.net/","web":"https://craigwendpointtest-secondary.z13.web.core.windows.net/","blob":"https://craigwendpointtest-secondary.blob.core.windows.net/","queue":"https://craigwendpointtest-secondary.queue.core.windows.net/","table":"https://craigwendpointtest-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/craigw-win10test/providers/Microsoft.Storage/storageAccounts/craigwwin10test","name":"craigwwin10test","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-05-17T23:02:04.3032505Z","key2":"2021-05-17T23:02:04.3032505Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-17T23:02:04.3032505Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-17T23:02:04.3032505Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-17T23:02:04.1938884Z","primaryEndpoints":{"blob":"https://craigwwin10test.blob.core.windows.net/","queue":"https://craigwwin10test.queue.core.windows.net/","table":"https://craigwwin10test.table.core.windows.net/","file":"https://craigwwin10test.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus/providers/Microsoft.Storage/storageAccounts/cs210032001f4814ba9","name":"cs210032001f4814ba9","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-05-16T14:16:22.3477819Z","key2":"2022-05-16T14:16:22.3477819Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-16T14:16:22.3477819Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-16T14:16:22.3477819Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-16T14:16:22.2227752Z","primaryEndpoints":{"dfs":"https://cs210032001f4814ba9.dfs.core.windows.net/","web":"https://cs210032001f4814ba9.z13.web.core.windows.net/","blob":"https://cs210032001f4814ba9.blob.core.windows.net/","queue":"https://cs210032001f4814ba9.queue.core.windows.net/","table":"https://cs210032001f4814ba9.table.core.windows.net/","file":"https://cs210032001f4814ba9.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kustoflow/providers/Microsoft.Storage/storageAccounts/csslinuxkustoflow","name":"csslinuxkustoflow","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"CreatedBy":"craigw"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-01T20:08:38.6849654Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-01T20:08:38.6849654Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-01T20:08:38.5912170Z","primaryEndpoints":{"dfs":"https://csslinuxkustoflow.dfs.core.windows.net/","web":"https://csslinuxkustoflow.z13.web.core.windows.net/","blob":"https://csslinuxkustoflow.blob.core.windows.net/","queue":"https://csslinuxkustoflow.queue.core.windows.net/","table":"https://csslinuxkustoflow.table.core.windows.net/","file":"https://csslinuxkustoflow.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://csslinuxkustoflow-secondary.dfs.core.windows.net/","web":"https://csslinuxkustoflow-secondary.z13.web.core.windows.net/","blob":"https://csslinuxkustoflow-secondary.blob.core.windows.net/","queue":"https://csslinuxkustoflow-secondary.queue.core.windows.net/","table":"https://csslinuxkustoflow-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gen2-linux/providers/Microsoft.Storage/storageAccounts/gen2linux3be402a0b8","name":"gen2linux3be402a0b8","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-10-09T22:30:46.7307987Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-10-09T22:30:46.7307987Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-09T22:30:46.6214203Z","primaryEndpoints":{"blob":"https://gen2linux3be402a0b8.blob.core.windows.net/","queue":"https://gen2linux3be402a0b8.queue.core.windows.net/","table":"https://gen2linux3be402a0b8.table.core.windows.net/","file":"https://gen2linux3be402a0b8.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/scrunnertestvmrg-eastus/providers/Microsoft.Storage/storageAccounts/scrunnercrkwpdn5nhtgg","name":"scrunnercrkwpdn5nhtgg","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-12T20:03:57.6389684Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-12T20:03:57.6389684Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-12T20:03:57.5451905Z","primaryEndpoints":{"blob":"https://scrunnercrkwpdn5nhtgg.blob.core.windows.net/","queue":"https://scrunnercrkwpdn5nhtgg.queue.core.windows.net/","table":"https://scrunnercrkwpdn5nhtgg.table.core.windows.net/","file":"https://scrunnercrkwpdn5nhtgg.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-RG/providers/Microsoft.Storage/storageAccounts/serialconsolepreview","name":"serialconsolepreview","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-05-07T21:41:56.3607334Z","key2":"2021-05-07T21:41:56.3607334Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-07T21:41:56.3607334Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-07T21:41:56.3607334Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-07T21:41:56.2513536Z","primaryEndpoints":{"dfs":"https://serialconsolepreview.dfs.core.windows.net/","web":"https://serialconsolepreview.z13.web.core.windows.net/","blob":"https://serialconsolepreview.blob.core.windows.net/","queue":"https://serialconsolepreview.queue.core.windows.net/","table":"https://serialconsolepreview.table.core.windows.net/","file":"https://serialconsolepreview.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://serialconsolepreview-secondary.dfs.core.windows.net/","web":"https://serialconsolepreview-secondary.z13.web.core.windows.net/","blob":"https://serialconsolepreview-secondary.blob.core.windows.net/","queue":"https://serialconsolepreview-secondary.queue.core.windows.net/","table":"https://serialconsolepreview-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/serialconsole-test/providers/Microsoft.Storage/storageAccounts/serialconsoletestdiag","name":"serialconsoletestdiag","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"resourceAccessRules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-06T20:21:39.7019315Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-06T20:21:39.7019315Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-02-06T20:21:39.5925779Z","primaryEndpoints":{"blob":"https://serialconsoletestdiag.blob.core.windows.net/","queue":"https://serialconsoletestdiag.queue.core.windows.net/","table":"https://serialconsoletestdiag.table.core.windows.net/","file":"https://serialconsoletestdiag.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/serialTest-EastUS/providers/Microsoft.Storage/storageAccounts/serialtesta8d7fdee41","name":"serialtesta8d7fdee41","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-11T00:38:13.5389932Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-11T00:38:13.5389932Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-11T00:38:13.4452119Z","primaryEndpoints":{"blob":"https://serialtesta8d7fdee41.blob.core.windows.net/","queue":"https://serialtesta8d7fdee41.queue.core.windows.net/","table":"https://serialtesta8d7fdee41.table.core.windows.net/","file":"https://serialtesta8d7fdee41.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-RG/providers/Microsoft.Storage/storageAccounts/serialtestbootdiag123","name":"serialtestbootdiag123","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-01-23T04:03:01.3263151Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-01-23T04:03:01.3263151Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-01-23T04:03:01.2951106Z","primaryEndpoints":{"blob":"https://serialtestbootdiag123.blob.core.windows.net/","queue":"https://serialtestbootdiag123.queue.core.windows.net/","table":"https://serialtestbootdiag123.table.core.windows.net/","file":"https://serialtestbootdiag123.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuas-rg/providers/Microsoft.Storage/storageAccounts/yuasstorageacct","name":"yuasstorageacct","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-08-02T12:18:18.8547131Z","key2":"2022-08-02T12:18:18.8547131Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-02T12:18:18.8547131Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-02T12:18:18.8547131Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-02T12:18:18.7140969Z","primaryEndpoints":{"dfs":"https://yuasstorageacct.dfs.core.windows.net/","web":"https://yuasstorageacct.z13.web.core.windows.net/","blob":"https://yuasstorageacct.blob.core.windows.net/","queue":"https://yuasstorageacct.queue.core.windows.net/","table":"https://yuasstorageacct.table.core.windows.net/","file":"https://yuasstorageacct.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yuasstorageacct-secondary.dfs.core.windows.net/","web":"https://yuasstorageacct-secondary.z13.web.core.windows.net/","blob":"https://yuasstorageacct-secondary.blob.core.windows.net/","queue":"https://yuasstorageacct-secondary.queue.core.windows.net/","table":"https://yuasstorageacct-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bkerrigan-dev-rg/providers/Microsoft.Storage/storageAccounts/bkerrigandevrgdiag","name":"bkerrigandevrgdiag","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-18T15:22:23.0244089Z","key2":"2022-05-18T15:22:23.0244089Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-18T15:22:23.0400357Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-18T15:22:23.0400357Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-18T15:22:22.9150287Z","primaryEndpoints":{"blob":"https://bkerrigandevrgdiag.blob.core.windows.net/","queue":"https://bkerrigandevrgdiag.queue.core.windows.net/","table":"https://bkerrigandevrgdiag.table.core.windows.net/","file":"https://bkerrigandevrgdiag.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guptar2/providers/Microsoft.Storage/storageAccounts/guptar2eastus2storage","name":"guptar2eastus2storage","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-07-28T23:08:00.6935848Z","key2":"2022-07-28T23:08:00.6935848Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-28T23:08:00.6935848Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-28T23:08:00.6935848Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-28T23:08:00.5840608Z","primaryEndpoints":{"dfs":"https://guptar2eastus2storage.dfs.core.windows.net/","web":"https://guptar2eastus2storage.z20.web.core.windows.net/","blob":"https://guptar2eastus2storage.blob.core.windows.net/","queue":"https://guptar2eastus2storage.queue.core.windows.net/","table":"https://guptar2eastus2storage.table.core.windows.net/","file":"https://guptar2eastus2storage.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rhel-test/providers/Microsoft.Storage/storageAccounts/rhel77acct","name":"rhel77acct","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-13T20:31:30.8995173Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-13T20:31:30.8995173Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-08-13T20:31:30.8215811Z","primaryEndpoints":{"blob":"https://rhel77acct.blob.core.windows.net/","queue":"https://rhel77acct.queue.core.windows.net/","table":"https://rhel77acct.table.core.windows.net/","file":"https://rhel77acct.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs4100320010c152e3d","name":"cs4100320010c152e3d","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-02-07T20:19:42.9636823Z","key2":"2022-02-07T20:19:42.9636823Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-07T20:19:42.9636823Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-07T20:19:42.9636823Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-07T20:19:42.8699133Z","primaryEndpoints":{"dfs":"https://cs4100320010c152e3d.dfs.core.windows.net/","web":"https://cs4100320010c152e3d.z22.web.core.windows.net/","blob":"https://cs4100320010c152e3d.blob.core.windows.net/","queue":"https://cs4100320010c152e3d.queue.core.windows.net/","table":"https://cs4100320010c152e3d.table.core.windows.net/","file":"https://cs4100320010c152e3d.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs410037ffea943c134","name":"cs410037ffea943c134","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-23T23:07:16.0114253Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-23T23:07:16.0114253Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-23T23:07:15.9333036Z","primaryEndpoints":{"dfs":"https://cs410037ffea943c134.dfs.core.windows.net/","web":"https://cs410037ffea943c134.z22.web.core.windows.net/","blob":"https://cs410037ffea943c134.blob.core.windows.net/","queue":"https://cs410037ffea943c134.queue.core.windows.net/","table":"https://cs410037ffea943c134.table.core.windows.net/","file":"https://cs410037ffea943c134.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs41003bffd81f3ab32","name":"cs41003bffd81f3ab32","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-07-29T00:18:56.4686445Z","key2":"2022-07-29T00:18:56.4686445Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T00:18:56.4842807Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T00:18:56.4842807Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-29T00:18:56.3748663Z","primaryEndpoints":{"dfs":"https://cs41003bffd81f3ab32.dfs.core.windows.net/","web":"https://cs41003bffd81f3ab32.z22.web.core.windows.net/","blob":"https://cs41003bffd81f3ab32.blob.core.windows.net/","queue":"https://cs41003bffd81f3ab32.queue.core.windows.net/","table":"https://cs41003bffd81f3ab32.table.core.windows.net/","file":"https://cs41003bffd81f3ab32.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs4aa22d82de270x4becxb48","name":"cs4aa22d82de270x4becxb48","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-11-29T23:39:30.3657182Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-11-29T23:39:30.3657182Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-11-29T23:39:30.2563159Z","primaryEndpoints":{"blob":"https://cs4aa22d82de270x4becxb48.blob.core.windows.net/","queue":"https://cs4aa22d82de270x4becxb48.queue.core.windows.net/","table":"https://cs4aa22d82de270x4becxb48.table.core.windows.net/","file":"https://cs4aa22d82de270x4becxb48.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guptar/providers/Microsoft.Storage/storageAccounts/guptardevstorage","name":"guptardevstorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-02-15T16:49:43.1435156Z","key2":"2022-02-15T16:49:43.1435156Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-15T16:49:43.1591440Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-15T16:49:43.1591440Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-15T16:49:43.0341047Z","primaryEndpoints":{"dfs":"https://guptardevstorage.dfs.core.windows.net/","web":"https://guptardevstorage.z22.web.core.windows.net/","blob":"https://guptardevstorage.blob.core.windows.net/","queue":"https://guptardevstorage.queue.core.windows.net/","table":"https://guptardevstorage.table.core.windows.net/","file":"https://guptardevstorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SCRunner/providers/Microsoft.Storage/storageAccounts/scrunnerstorage","name":"scrunnerstorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-03-06T00:42:11.7016543Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-03-06T00:42:11.7016543Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-03-06T00:42:11.6234985Z","primaryEndpoints":{"blob":"https://scrunnerstorage.blob.core.windows.net/","queue":"https://scrunnerstorage.queue.core.windows.net/","table":"https://scrunnerstorage.table.core.windows.net/","file":"https://scrunnerstorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lt2-rg/providers/Microsoft.Storage/storageAccounts/sericonjziofteihi","name":"sericonjziofteihi","type":"Microsoft.Storage/storageAccounts","location":"westeurope","tags":{},"properties":{"keyCreationTime":{"key1":"2022-07-29T22:14:56.3530002Z","key2":"2022-07-29T22:14:56.3530002Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T22:14:56.3686352Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T22:14:56.3686352Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-29T22:14:56.2123903Z","primaryEndpoints":{"dfs":"https://sericonjziofteihi.dfs.core.windows.net/","web":"https://sericonjziofteihi.z6.web.core.windows.net/","blob":"https://sericonjziofteihi.blob.core.windows.net/","queue":"https://sericonjziofteihi.queue.core.windows.net/","table":"https://sericonjziofteihi.table.core.windows.net/","file":"https://sericonjziofteihi.file.core.windows.net/"},"primaryLocation":"westeurope","statusOfPrimary":"available","secondaryLocation":"northeurope","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://sericonjziofteihi-secondary.dfs.core.windows.net/","web":"https://sericonjziofteihi-secondary.z6.web.core.windows.net/","blob":"https://sericonjziofteihi-secondary.blob.core.windows.net/","queue":"https://sericonjziofteihi-secondary.queue.core.windows.net/","table":"https://sericonjziofteihi-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/load-rg/providers/Microsoft.Storage/storageAccounts/sericonmvudqscfyk","name":"sericonmvudqscfyk","type":"Microsoft.Storage/storageAccounts","location":"westeurope","tags":{},"properties":{"keyCreationTime":{"key1":"2022-07-29T20:00:48.2252183Z","key2":"2022-07-29T20:00:48.2252183Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T20:00:48.2408363Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T20:00:48.2408363Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-29T20:00:48.1001806Z","primaryEndpoints":{"dfs":"https://sericonmvudqscfyk.dfs.core.windows.net/","web":"https://sericonmvudqscfyk.z6.web.core.windows.net/","blob":"https://sericonmvudqscfyk.blob.core.windows.net/","queue":"https://sericonmvudqscfyk.queue.core.windows.net/","table":"https://sericonmvudqscfyk.table.core.windows.net/","file":"https://sericonmvudqscfyk.file.core.windows.net/"},"primaryLocation":"westeurope","statusOfPrimary":"available","secondaryLocation":"northeurope","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://sericonmvudqscfyk-secondary.dfs.core.windows.net/","web":"https://sericonmvudqscfyk-secondary.z6.web.core.windows.net/","blob":"https://sericonmvudqscfyk-secondary.blob.core.windows.net/","queue":"https://sericonmvudqscfyk-secondary.queue.core.windows.net/","table":"https://sericonmvudqscfyk-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs710032001417ec1a8","name":"cs710032001417ec1a8","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-05-18T22:07:33.4170256Z","key2":"2021-05-18T22:07:33.4170256Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-18T22:07:33.4170256Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-18T22:07:33.4170256Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-18T22:07:33.3389725Z","primaryEndpoints":{"dfs":"https://cs710032001417ec1a8.dfs.core.windows.net/","web":"https://cs710032001417ec1a8.z21.web.core.windows.net/","blob":"https://cs710032001417ec1a8.blob.core.windows.net/","queue":"https://cs710032001417ec1a8.queue.core.windows.net/","table":"https://cs710032001417ec1a8.table.core.windows.net/","file":"https://cs710032001417ec1a8.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rhoover/providers/Microsoft.Storage/storageAccounts/rhooverstorage","name":"rhooverstorage","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-05-26T17:14:23.5085026Z","key2":"2022-05-26T17:14:23.5085026Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-26T17:14:23.5241285Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-26T17:14:23.5241285Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-26T17:14:23.4147520Z","primaryEndpoints":{"dfs":"https://rhooverstorage.dfs.core.windows.net/","web":"https://rhooverstorage.z21.web.core.windows.net/","blob":"https://rhooverstorage.blob.core.windows.net/","queue":"https://rhooverstorage.queue.core.windows.net/","table":"https://rhooverstorage.table.core.windows.net/","file":"https://rhooverstorage.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harish-storage/providers/Microsoft.Storage/storageAccounts/aueastsarestricted","name":"aueastsarestricted","type":"Microsoft.Storage/storageAccounts","location":"australiaeast","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-07-17T04:32:04.7486474Z","key2":"2022-07-17T04:32:04.7486474Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harish-networking/providers/Microsoft.Network/virtualNetworks/aueast-vnet/subnets/testing","action":"Allow","state":"Succeeded"}],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-17T04:32:04.7486474Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-17T04:32:04.7486474Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-17T04:32:04.6861236Z","primaryEndpoints":{"dfs":"https://aueastsarestricted.dfs.core.windows.net/","web":"https://aueastsarestricted.z8.web.core.windows.net/","blob":"https://aueastsarestricted.blob.core.windows.net/","queue":"https://aueastsarestricted.queue.core.windows.net/","table":"https://aueastsarestricted.table.core.windows.net/","file":"https://aueastsarestricted.file.core.windows.net/"},"primaryLocation":"australiaeast","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harish-storage/providers/Microsoft.Storage/storageAccounts/aueastsastd","name":"aueastsastd","type":"Microsoft.Storage/storageAccounts","location":"australiaeast","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-07-17T04:28:55.7260171Z","key2":"2022-07-17T04:28:55.7260171Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-17T04:28:55.7416401Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-17T04:28:55.7416401Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-17T04:28:55.6634675Z","primaryEndpoints":{"dfs":"https://aueastsastd.dfs.core.windows.net/","web":"https://aueastsastd.z8.web.core.windows.net/","blob":"https://aueastsastd.blob.core.windows.net/","queue":"https://aueastsastd.queue.core.windows.net/","table":"https://aueastsastd.table.core.windows.net/","file":"https://aueastsastd.file.core.windows.net/"},"primaryLocation":"australiaeast","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SCRunnertestvmrg-AustraliaEast/providers/Microsoft.Storage/storageAccounts/scrunner4p3t72mzheluc","name":"scrunner4p3t72mzheluc","type":"Microsoft.Storage/storageAccounts","location":"australiaeast","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-13T22:35:36.6210942Z","key2":"2021-04-13T22:35:36.6210942Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T22:35:36.6210942Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T22:35:36.6210942Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-13T22:35:36.5429508Z","primaryEndpoints":{"blob":"https://scrunner4p3t72mzheluc.blob.core.windows.net/","queue":"https://scrunner4p3t72mzheluc.queue.core.windows.net/","table":"https://scrunner4p3t72mzheluc.table.core.windows.net/","file":"https://scrunner4p3t72mzheluc.file.core.windows.net/"},"primaryLocation":"australiaeast","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aabedon/providers/Microsoft.Storage/storageAccounts/aabedondiag","name":"aabedondiag","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-05-18T23:08:58.5284733Z","key2":"2021-05-18T23:08:58.5284733Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-18T23:08:58.5284733Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-18T23:08:58.5284733Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-18T23:08:58.4503170Z","primaryEndpoints":{"blob":"https://aabedondiag.blob.core.windows.net/","queue":"https://aabedondiag.queue.core.windows.net/","table":"https://aabedondiag.table.core.windows.net/","file":"https://aabedondiag.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsolec6uoh7l3xzbaesvvht7o4yymqvrtjxzjp6xhzlr6uq33wrwalkutf/providers/Microsoft.Storage/storageAccounts/cli2nzt6cf7elcnalnul745f","name":"cli2nzt6cf7elcnalnul745f","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-04T17:10:10.8883580Z","key2":"2022-08-04T17:10:10.8883580Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-04T17:10:10.9039542Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-04T17:10:10.9039542Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-08-04T17:10:10.7946308Z","primaryEndpoints":{"blob":"https://cli2nzt6cf7elcnalnul745f.blob.core.windows.net/","queue":"https://cli2nzt6cf7elcnalnul745f.queue.core.windows.net/","table":"https://cli2nzt6cf7elcnalnul745f.table.core.windows.net/","file":"https://cli2nzt6cf7elcnalnul745f.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsolesaxgnjdvlvrazb2d7kzgbif6iqxouncy2ql4je4i6xagycvbdwqy3/providers/Microsoft.Storage/storageAccounts/cli4f6xxtlnjteigl6v5t4lv","name":"cli4f6xxtlnjteigl6v5t4lv","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-04T17:10:09.1695976Z","key2":"2022-08-04T17:10:09.1695976Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-04T17:10:09.1852249Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-04T17:10:09.1852249Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-08-04T17:10:09.0758710Z","primaryEndpoints":{"blob":"https://cli4f6xxtlnjteigl6v5t4lv.blob.core.windows.net/","queue":"https://cli4f6xxtlnjteigl6v5t4lv.queue.core.windows.net/","table":"https://cli4f6xxtlnjteigl6v5t4lv.table.core.windows.net/","file":"https://cli4f6xxtlnjteigl6v5t4lv.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsoley3ugi77omtuicfeufj7airfyly2mx6q5werdzcrsihvoga5v3vqgw/providers/Microsoft.Storage/storageAccounts/clicnww5fgwrdzxocqcrnpfj","name":"clicnww5fgwrdzxocqcrnpfj","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-04T17:12:57.9815047Z","key2":"2022-08-04T17:12:57.9815047Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-04T17:12:57.9971598Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-04T17:12:57.9971598Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-08-04T17:12:57.8878066Z","primaryEndpoints":{"blob":"https://clicnww5fgwrdzxocqcrnpfj.blob.core.windows.net/","queue":"https://clicnww5fgwrdzxocqcrnpfj.queue.core.windows.net/","table":"https://clicnww5fgwrdzxocqcrnpfj.table.core.windows.net/","file":"https://clicnww5fgwrdzxocqcrnpfj.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsolexz7y33ftmrn4mdow7xasofcbz7532co6uk6mo33fg3frfnznzd7mt/providers/Microsoft.Storage/storageAccounts/clid32qhbjy4liaqoy6z3cot","name":"clid32qhbjy4liaqoy6z3cot","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-04T05:30:13.6295332Z","key2":"2022-08-04T05:30:13.6295332Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-04T05:30:13.6451524Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-04T05:30:13.6451524Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-08-04T05:30:13.5514577Z","primaryEndpoints":{"blob":"https://clid32qhbjy4liaqoy6z3cot.blob.core.windows.net/","queue":"https://clid32qhbjy4liaqoy6z3cot.queue.core.windows.net/","table":"https://clid32qhbjy4liaqoy6z3cot.table.core.windows.net/","file":"https://clid32qhbjy4liaqoy6z3cot.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsolej3epdwbxyovtvemgmi2jcjmyfpfaq62os62nnyx3awxoyb54aq5e3/providers/Microsoft.Storage/storageAccounts/clielzocytedvrayy4w4hdmz","name":"clielzocytedvrayy4w4hdmz","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-04T17:14:50.2782645Z","key2":"2022-08-04T17:14:50.2782645Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-04T17:14:50.2938724Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-04T17:14:50.2938724Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"ResolvingDns","creationTime":"2022-08-04T17:14:50.1845479Z","primaryEndpoints":{"blob":"https://clielzocytedvrayy4w4hdmz.blob.core.windows.net/","queue":"https://clielzocytedvrayy4w4hdmz.queue.core.windows.net/","table":"https://clielzocytedvrayy4w4hdmz.table.core.windows.net/","file":"https://clielzocytedvrayy4w4hdmz.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-04T17:10:09.6539719Z","key2":"2022-08-04T17:10:09.6539719Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-04T17:10:09.6696214Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-04T17:10:09.6696214Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-08-04T17:10:09.5446548Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/craigw-gui-test_group/providers/Microsoft.Storage/storageAccounts/craigwguitestgroupdiag","name":"craigwguitestgroupdiag","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-25T20:43:28.9782992Z","key2":"2021-06-25T20:43:28.9782992Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-25T20:43:28.9782992Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-25T20:43:28.9782992Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-06-25T20:43:28.9001463Z","primaryEndpoints":{"blob":"https://craigwguitestgroupdiag.blob.core.windows.net/","queue":"https://craigwguitestgroupdiag.queue.core.windows.net/","table":"https://craigwguitestgroupdiag.table.core.windows.net/","file":"https://craigwguitestgroupdiag.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guptar2/providers/Microsoft.Storage/storageAccounts/guptar2diagnosticsv1","name":"guptar2diagnosticsv1","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-05T17:21:41.8250582Z","key2":"2022-04-05T17:21:41.8250582Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-05T17:21:41.8250582Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-05T17:21:41.8250582Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-04-05T17:21:41.7313240Z","primaryEndpoints":{"blob":"https://guptar2diagnosticsv1.blob.core.windows.net/","queue":"https://guptar2diagnosticsv1.queue.core.windows.net/","table":"https://guptar2diagnosticsv1.table.core.windows.net/","file":"https://guptar2diagnosticsv1.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guptar2/providers/Microsoft.Storage/storageAccounts/guptar2diagnosticsv2","name":"guptar2diagnosticsv2","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-05T17:22:55.8411567Z","key2":"2022-04-05T17:22:55.8411567Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-05T17:22:55.8411567Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-05T17:22:55.8411567Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-05T17:22:55.7318000Z","primaryEndpoints":{"dfs":"https://guptar2diagnosticsv2.dfs.core.windows.net/","web":"https://guptar2diagnosticsv2.z5.web.core.windows.net/","blob":"https://guptar2diagnosticsv2.blob.core.windows.net/","queue":"https://guptar2diagnosticsv2.queue.core.windows.net/","table":"https://guptar2diagnosticsv2.table.core.windows.net/","file":"https://guptar2diagnosticsv2.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sericonrp-trafficmanager/providers/Microsoft.Storage/storageAccounts/sericonrpdevtmstorage","name":"sericonrpdevtmstorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-09-15T09:23:38.0203325Z","key2":"2021-09-15T09:23:38.0203325Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-15T09:23:38.0360009Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-15T09:23:38.0360009Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-15T09:23:37.9265953Z","primaryEndpoints":{"dfs":"https://sericonrpdevtmstorage.dfs.core.windows.net/","web":"https://sericonrpdevtmstorage.z5.web.core.windows.net/","blob":"https://sericonrpdevtmstorage.blob.core.windows.net/","queue":"https://sericonrpdevtmstorage.queue.core.windows.net/","table":"https://sericonrpdevtmstorage.table.core.windows.net/","file":"https://sericonrpdevtmstorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rhoover-dev-rg/providers/Microsoft.Storage/storageAccounts/rhooverdevrgdiag","name":"rhooverdevrgdiag","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-06-20T19:39:24.4605968Z","key2":"2022-06-20T19:39:24.4605968Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-20T19:39:24.4762287Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-20T19:39:24.4762287Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-06-20T19:39:24.4137057Z","primaryEndpoints":{"blob":"https://rhooverdevrgdiag.blob.core.windows.net/","queue":"https://rhooverdevrgdiag.queue.core.windows.net/","table":"https://rhooverdevrgdiag.table.core.windows.net/","file":"https://rhooverdevrgdiag.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/scrunnertestvmrg-westcentralus/providers/Microsoft.Storage/storageAccounts/scrunnerrfscmqxeni3uq","name":"scrunnerrfscmqxeni3uq","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-10T22:28:55.2104910Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-10T22:28:55.2104910Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-10T22:28:55.1479670Z","primaryEndpoints":{"blob":"https://scrunnerrfscmqxeni3uq.blob.core.windows.net/","queue":"https://scrunnerrfscmqxeni3uq.queue.core.windows.net/","table":"https://scrunnerrfscmqxeni3uq.table.core.windows.net/","file":"https://scrunnerrfscmqxeni3uq.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ubuntu-westus3_group/providers/Microsoft.Storage/storageAccounts/ubuntuwestus3groupdiag","name":"ubuntuwestus3groupdiag","type":"Microsoft.Storage/storageAccounts","location":"westus3","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-18T19:48:38.9882588Z","key2":"2022-04-18T19:48:38.9882588Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-18T19:48:38.9882588Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-18T19:48:38.9882588Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-04-18T19:48:38.9258191Z","primaryEndpoints":{"blob":"https://ubuntuwestus3groupdiag.blob.core.windows.net/","queue":"https://ubuntuwestus3groupdiag.queue.core.windows.net/","table":"https://ubuntuwestus3groupdiag.table.core.windows.net/","file":"https://ubuntuwestus3groupdiag.file.core.windows.net/"},"primaryLocation":"westus3","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guptar2/providers/Microsoft.Storage/storageAccounts/cloudshellcanarystorage","name":"cloudshellcanarystorage","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-01T21:16:45.8824319Z","key2":"2022-08-01T21:16:45.8824319Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-01T21:16:46.0855567Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-01T21:16:46.0855567Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-01T21:16:45.8043474Z","primaryEndpoints":{"dfs":"https://cloudshellcanarystorage.dfs.core.windows.net/","web":"https://cloudshellcanarystorage.z3.web.core.windows.net/","blob":"https://cloudshellcanarystorage.blob.core.windows.net/","queue":"https://cloudshellcanarystorage.queue.core.windows.net/","table":"https://cloudshellcanarystorage.table.core.windows.net/","file":"https://cloudshellcanarystorage.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/craigwEv5-1_group/providers/Microsoft.Storage/storageAccounts/craigwev51groupdiag","name":"craigwev51groupdiag","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-01-13T14:34:32.7433319Z","key2":"2022-01-13T14:34:32.7433319Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-13T14:34:32.7433319Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-13T14:34:32.7433319Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-01-13T14:34:32.6652176Z","primaryEndpoints":{"blob":"https://craigwev51groupdiag.blob.core.windows.net/","queue":"https://craigwev51groupdiag.queue.core.windows.net/","table":"https://craigwev51groupdiag.table.core.windows.net/","file":"https://craigwev51groupdiag.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arm64-centraluseuap/providers/Microsoft.Storage/storageAccounts/sericonarm64euap","name":"sericonarm64euap","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-01-05T18:15:35.3504562Z","key2":"2022-01-05T18:15:35.3504562Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-05T18:15:35.3504562Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-05T18:15:35.3504562Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-01-05T18:15:35.3035816Z","primaryEndpoints":{"blob":"https://sericonarm64euap.blob.core.windows.net/","queue":"https://sericonarm64euap.queue.core.windows.net/","table":"https://sericonarm64euap.table.core.windows.net/","file":"https://sericonarm64euap.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}}]}' headers: cache-control: - no-cache content-length: - - '228369' + - '65114' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:12:01 GMT + - Thu, 04 Aug 2022 17:14:54 GMT expires: - '-1' pragma: @@ -3010,27 +3159,29 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 3badd10f-a50b-401b-bcb1-cc97a3993006 - - 269a66c3-3562-4538-8be2-5b6e49370ba5 - - 4edc125f-41f5-438b-8100-d26068fb01b7 - - b2bb02f9-3d17-4f99-876d-0506ea2c03c1 - - f1c7fd50-936a-48b7-b522-f751694d02cf - - cca0b8a6-e7a0-4c36-bf21-e410601bba55 - - bab33300-aa36-4b77-b9ad-9eaf016b7d5b - - f0557332-a692-4177-8fcf-dba7b9bc40cd - - 1722ebe4-34ee-4745-a2b0-dfdcb4752b3f + - 8e0ff669-ebcd-4345-b378-e3788d45d5eb + - 0baff437-1edb-4aad-bed2-70ca6524f4f2 + - bf505621-337a-469d-b3de-4b51c2d20478 + - c5eddcd4-929c-43ff-8e08-002e52ce3ac1 + - f2d0db79-8325-4630-a726-98452a4e2399 + - 969149af-9b76-4e82-8f2f-d6b7ab7b6f20 + - f7ebe0b9-29c7-49f8-bea0-2863f110e65a + - a791869c-9f98-4a0e-9774-19f0b3f93a18 + - 40ca744b-cb2a-4fe1-ac3f-b4419a69271c + - ddc0071b-97f5-4544-a28d-3b09030a109f + - 87b2d234-b821-4dfb-9a9d-f83401774c34 status: code: 200 message: OK - request: body: '{"location": "westus2", "tags": {}, "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "storageProfile": {"osDisk": {"osType": "Linux", "name": - "cli000003_disk1_6199206330ee4a8498bd48c63ae90af4", "caching": "ReadWrite", - "createOption": "FromImage", "diskSizeGB": 30, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLENMEBLJOJH524M3NQUC34XQ73SVNQM6DBJQ25BQ2UPG75GO5ONKNX6/providers/Microsoft.Compute/disks/cli000003_disk1_6199206330ee4a8498bd48c63ae90af4", + "cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474", "caching": "ReadWrite", + "createOption": "FromImage", "diskSizeGB": 30, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474", "storageAccountType": "Premium_LRS"}, "deleteOption": "Detach"}, "dataDisks": - []}, "osProfile": {"computerName": "cli000003", "adminUsername": "azureuser", - "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": - [{"path": "/home/azureuser/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh"}]}, + []}, "osProfile": {"computerName": "cli000003", "adminUsername": "rhl", "linuxConfiguration": + {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/rhl/.ssh/authorized_keys", + "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5"}]}, "provisionVMAgent": true, "patchSettings": {"patchMode": "ImageDefault", "assessmentMode": "ImageDefault"}}, "secrets": [], "allowExtensionOperations": true, "requireGuestProvisionSignal": true}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic"}]}, @@ -3045,57 +3196,59 @@ interactions: Connection: - keep-alive Content-Length: - - '1869' + - '1741' Content-Type: - application/json ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202110250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\",\r\n + \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLENMEBLJOJH524M3NQUC34XQ73SVNQM6DBJQ25BQ2UPG75GO5ONKNX6/providers/Microsoft.Compute/disks/cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"azureuser\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n - \ }\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}" + \ }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"timeCreated\": + \"2022-08-04T17:10:47.8380764+00:00\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/98e0ad3a-8d08-4ba9-bf79-bbf466dc7fe0?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0ced3b93-2308-4f13-aee3-40e5678e1217?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - - '2920' + - '2820' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:12:06 GMT + - Thu, 04 Aug 2022 17:14:54 GMT expires: - '-1' pragma: @@ -3112,9 +3265,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1195 + - Microsoft.Compute/PutVM3Min;464,Microsoft.Compute/PutVM30Min;2327 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 200 message: OK @@ -3132,23 +3285,23 @@ interactions: ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/98e0ad3a-8d08-4ba9-bf79-bbf466dc7fe0?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0ced3b93-2308-4f13-aee3-40e5678e1217?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T03:12:04.1568464+00:00\",\r\n \"endTime\": - \"2021-10-28T03:12:08.2818447+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"98e0ad3a-8d08-4ba9-bf79-bbf466dc7fe0\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:14:55.5397029+00:00\",\r\n \"endTime\": + \"2022-08-04T17:15:03.508426+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"0ced3b93-2308-4f13-aee3-40e5678e1217\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:12:37 GMT + - Thu, 04 Aug 2022 17:15:25 GMT expires: - '-1' pragma: @@ -3165,7 +3318,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29903 + - Microsoft.Compute/GetOperation3Min;14935,Microsoft.Compute/GetOperation30Min;29801 status: code: 200 message: OK @@ -3183,47 +3336,49 @@ interactions: ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202110250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\",\r\n + \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLENMEBLJOJH524M3NQUC34XQ73SVNQM6DBJQ25BQ2UPG75GO5ONKNX6/providers/Microsoft.Compute/disks/cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"azureuser\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n - \ }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + \ }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": + \"2022-08-04T17:10:47.8380764+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2921' + - '2821' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:12:37 GMT + - Thu, 04 Aug 2022 17:15:26 GMT expires: - '-1' pragma: @@ -3240,7 +3395,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31967 + - Microsoft.Compute/LowCostGet3Min;3974,Microsoft.Compute/LowCostGet30Min;31904 status: code: 200 message: OK @@ -3258,8 +3413,8 @@ interactions: ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -3273,7 +3428,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 03:12:38 GMT + - Thu, 04 Aug 2022 17:15:26 GMT expires: - '-1' pragma: @@ -3307,67 +3462,69 @@ interactions: ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202110250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\",\r\n + \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLENMEBLJOJH524M3NQUC34XQ73SVNQM6DBJQ25BQ2UPG75GO5ONKNX6/providers/Microsoft.Compute/disks/cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"azureuser\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n \ }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": \"cli000003\",\r\n \"osName\": \"ubuntu\",\r\n \ \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": - \"2.5.0.2\",\r\n \"statuses\": [\r\n {\r\n \"code\": + \"2.7.3.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2021-10-28T03:12:33+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\",\r\n + \"2022-08-04T17:15:04+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-10-28T03:11:08.1727361+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-08-04T17:14:10.9774837+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": - {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clizbb2si-fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa/cli000003.fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clizbb2si-fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa/cli000003.fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa.serialconsole.log\"\r\n + {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliqeh2b2-e048a2e9-76a7-497c-8ed7-829625b39824/cli000003.e048a2e9-76a7-497c-8ed7-829625b39824.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliqeh2b2-e048a2e9-76a7-497c-8ed7-829625b39824/cli000003.e048a2e9-76a7-497c-8ed7-829625b39824.serialconsole.log\"\r\n \ },\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2021-10-28T03:12:08.2662019+00:00\"\r\n },\r\n + \ \"time\": \"2022-08-04T17:15:03.4927468+00:00\"\r\n },\r\n \ {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n - \ ]\r\n }\r\n }\r\n}" + \ ]\r\n },\r\n \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '4762' + - '4575' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:12:40 GMT + - Thu, 04 Aug 2022 17:15:26 GMT expires: - '-1' pragma: @@ -3384,7 +3541,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31966 + - Microsoft.Compute/LowCostGet3Min;3973,Microsoft.Compute/LowCostGet30Min;31903 status: code: 200 message: OK @@ -3404,8 +3561,8 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default/disableConsole?api-version=2018-05-01 response: @@ -3419,7 +3576,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 03:12:42 GMT + - Thu, 04 Aug 2022 17:15:27 GMT expires: - '-1' pragma: @@ -3437,7 +3594,7 @@ interactions: x-frame-options: - deny x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1198' status: code: 200 message: OK @@ -3453,8 +3610,8 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -3468,7 +3625,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 03:12:43 GMT + - Thu, 04 Aug 2022 17:15:27 GMT expires: - '-1' pragma: @@ -3504,8 +3661,8 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default/enableConsole?api-version=2018-05-01 response: @@ -3519,7 +3676,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 03:12:45 GMT + - Thu, 04 Aug 2022 17:15:28 GMT expires: - '-1' pragma: @@ -3537,7 +3694,7 @@ interactions: x-frame-options: - deny x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1198' status: code: 200 message: OK @@ -3553,8 +3710,8 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -3568,7 +3725,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 03:12:46 GMT + - Thu, 04 Aug 2022 17:15:28 GMT expires: - '-1' pragma: @@ -3600,67 +3757,69 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202110250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\",\r\n + \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLENMEBLJOJH524M3NQUC34XQ73SVNQM6DBJQ25BQ2UPG75GO5ONKNX6/providers/Microsoft.Compute/disks/cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"azureuser\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n \ }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": \"cli000003\",\r\n \"osName\": \"ubuntu\",\r\n \ \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": - \"2.5.0.2\",\r\n \"statuses\": [\r\n {\r\n \"code\": + \"2.7.3.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2021-10-28T03:12:33+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\",\r\n + \"2022-08-04T17:15:04+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-10-28T03:11:08.1727361+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-08-04T17:14:10.9774837+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": - {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clizbb2si-fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa/cli000003.fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clizbb2si-fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa/cli000003.fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa.serialconsole.log\"\r\n + {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliqeh2b2-e048a2e9-76a7-497c-8ed7-829625b39824/cli000003.e048a2e9-76a7-497c-8ed7-829625b39824.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliqeh2b2-e048a2e9-76a7-497c-8ed7-829625b39824/cli000003.e048a2e9-76a7-497c-8ed7-829625b39824.serialconsole.log\"\r\n \ },\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2021-10-28T03:12:08.2662019+00:00\"\r\n },\r\n + \ \"time\": \"2022-08-04T17:15:03.4927468+00:00\"\r\n },\r\n \ {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n - \ ]\r\n }\r\n }\r\n}" + \ ]\r\n },\r\n \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '4762' + - '4575' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:12:48 GMT + - Thu, 04 Aug 2022 17:15:28 GMT expires: - '-1' pragma: @@ -3677,7 +3836,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31965 + - Microsoft.Compute/LowCostGet3Min;3972,Microsoft.Compute/LowCostGet30Min;31902 status: code: 200 message: OK @@ -3685,7 +3844,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -3697,25 +3856,25 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/powerOff?skipShutdown=false&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/powerOff?skipShutdown=false&api-version=2022-03-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/7dbe9725-006d-4a88-8052-830166b6413b?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/db0e3f78-459d-4638-961f-72e4a31d6a15?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 28 Oct 2021 03:12:49 GMT + - Thu, 04 Aug 2022 17:15:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/7dbe9725-006d-4a88-8052-830166b6413b?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/db0e3f78-459d-4638-961f-72e4a31d6a15?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -3726,9 +3885,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;236,Microsoft.Compute/UpdateVM30Min;1194 + - Microsoft.Compute/UpdateVM3Min;236,Microsoft.Compute/UpdateVM30Min;1192 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 202 message: Accepted @@ -3746,23 +3905,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/7dbe9725-006d-4a88-8052-830166b6413b?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/db0e3f78-459d-4638-961f-72e4a31d6a15?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T03:12:49.609948+00:00\",\r\n \"endTime\": - \"2021-10-28T03:12:54.0162235+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"7dbe9725-006d-4a88-8052-830166b6413b\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:15:29.3363648+00:00\",\r\n \"endTime\": + \"2022-08-04T17:15:36.2269196+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"db0e3f78-459d-4638-961f-72e4a31d6a15\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:13:20 GMT + - Thu, 04 Aug 2022 17:15:58 GMT expires: - '-1' pragma: @@ -3779,7 +3938,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29901 + - Microsoft.Compute/GetOperation3Min;14940,Microsoft.Compute/GetOperation30Min;29794 status: code: 200 message: OK @@ -3797,9 +3956,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/7dbe9725-006d-4a88-8052-830166b6413b?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/db0e3f78-459d-4638-961f-72e4a31d6a15?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -3809,7 +3968,7 @@ interactions: content-length: - '0' date: - - Thu, 28 Oct 2021 03:13:20 GMT + - Thu, 04 Aug 2022 17:15:58 GMT expires: - '-1' pragma: @@ -3822,7 +3981,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29900 + - Microsoft.Compute/GetOperation3Min;14939,Microsoft.Compute/GetOperation30Min;29793 status: code: 200 message: OK @@ -3840,8 +3999,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -3855,7 +4014,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 03:13:21 GMT + - Thu, 04 Aug 2022 17:16:00 GMT expires: - '-1' pragma: @@ -3889,67 +4048,69 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202110250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\",\r\n + \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLENMEBLJOJH524M3NQUC34XQ73SVNQM6DBJQ25BQ2UPG75GO5ONKNX6/providers/Microsoft.Compute/disks/cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"azureuser\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n \ }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": \"cli000003\",\r\n \"osName\": \"ubuntu\",\r\n \ \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": - \"2.5.0.2\",\r\n \"statuses\": [\r\n {\r\n \"code\": + \"2.7.3.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2021-10-28T03:12:33+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\",\r\n + \"2022-08-04T17:15:04+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-10-28T03:11:08.1727361+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-08-04T17:14:10.9774837+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": - {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clizbb2si-fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa/cli000003.fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clizbb2si-fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa/cli000003.fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa.serialconsole.log\"\r\n + {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliqeh2b2-e048a2e9-76a7-497c-8ed7-829625b39824/cli000003.e048a2e9-76a7-497c-8ed7-829625b39824.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliqeh2b2-e048a2e9-76a7-497c-8ed7-829625b39824/cli000003.e048a2e9-76a7-497c-8ed7-829625b39824.serialconsole.log\"\r\n \ },\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2021-10-28T03:12:54.0162235+00:00\"\r\n },\r\n + \ \"time\": \"2022-08-04T17:15:36.2269196+00:00\"\r\n },\r\n \ {\r\n \"code\": \"PowerState/stopped\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM stopped\"\r\n }\r\n - \ ]\r\n }\r\n }\r\n}" + \ ]\r\n },\r\n \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '4762' + - '4575' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:13:22 GMT + - Thu, 04 Aug 2022 17:16:00 GMT expires: - '-1' pragma: @@ -3966,7 +4127,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31964 + - Microsoft.Compute/LowCostGet3Min;3974,Microsoft.Compute/LowCostGet30Min;31900 status: code: 200 message: OK @@ -3974,7 +4135,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -3986,25 +4147,25 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/deallocate?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/deallocate?api-version=2022-03-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/65733a5b-15e7-4103-8fbe-ee7b5897dcbb?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/bdff402c-bf07-4db1-90ea-42de7c3442b5?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 28 Oct 2021 03:13:24 GMT + - Thu, 04 Aug 2022 17:16:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/65733a5b-15e7-4103-8fbe-ee7b5897dcbb?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/bdff402c-bf07-4db1-90ea-42de7c3442b5?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -4015,9 +4176,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1197 + - Microsoft.Compute/DeleteVM3Min;238,Microsoft.Compute/DeleteVM30Min;1191 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 202 message: Accepted @@ -4035,13 +4196,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/65733a5b-15e7-4103-8fbe-ee7b5897dcbb?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/bdff402c-bf07-4db1-90ea-42de7c3442b5?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T03:13:24.0787086+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"65733a5b-15e7-4103-8fbe-ee7b5897dcbb\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:16:01.1486551+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"bdff402c-bf07-4db1-90ea-42de7c3442b5\"\r\n}" headers: cache-control: - no-cache @@ -4050,7 +4211,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:13:34 GMT + - Thu, 04 Aug 2022 17:16:11 GMT expires: - '-1' pragma: @@ -4067,7 +4228,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29899 + - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29789 status: code: 200 message: OK @@ -4085,23 +4246,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/65733a5b-15e7-4103-8fbe-ee7b5897dcbb?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/bdff402c-bf07-4db1-90ea-42de7c3442b5?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T03:13:24.0787086+00:00\",\r\n \"endTime\": - \"2021-10-28T03:13:48.266203+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"65733a5b-15e7-4103-8fbe-ee7b5897dcbb\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:16:01.1486551+00:00\",\r\n \"endTime\": + \"2022-08-04T17:16:34.8359408+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"bdff402c-bf07-4db1-90ea-42de7c3442b5\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:14:09 GMT + - Thu, 04 Aug 2022 17:16:47 GMT expires: - '-1' pragma: @@ -4118,7 +4279,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29896 + - Microsoft.Compute/GetOperation3Min;14952,Microsoft.Compute/GetOperation30Min;29778 status: code: 200 message: OK @@ -4136,9 +4297,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/65733a5b-15e7-4103-8fbe-ee7b5897dcbb?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/bdff402c-bf07-4db1-90ea-42de7c3442b5?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -4148,7 +4309,7 @@ interactions: content-length: - '0' date: - - Thu, 28 Oct 2021 03:14:10 GMT + - Thu, 04 Aug 2022 17:16:47 GMT expires: - '-1' pragma: @@ -4161,7 +4322,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29895 + - Microsoft.Compute/GetOperation3Min;14951,Microsoft.Compute/GetOperation30Min;29777 status: code: 200 message: OK @@ -4179,8 +4340,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -4194,7 +4355,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 03:14:12 GMT + - Thu, 04 Aug 2022 17:16:47 GMT expires: - '-1' pragma: @@ -4228,59 +4389,61 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202110250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\",\r\n + \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n - \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLENMEBLJOJH524M3NQUC34XQ73SVNQM6DBJQ25BQ2UPG75GO5ONKNX6/providers/Microsoft.Compute/disks/cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\"\r\n + \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n \ },\r\n \"deleteOption\": \"Detach\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n - \ \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n - \ \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n - \ \"publicKeys\": [\r\n {\r\n \"path\": \"/home/azureuser/.ssh/authorized_keys\",\r\n - \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \ \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n \ }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": - {\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_6199206330ee4a8498bd48c63ae90af4\",\r\n + {\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-10-28T03:13:47.9693432+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-08-04T17:16:34.5390781+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": - {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clizbb2si-fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa/cli000003.fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clizbb2si-fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa/cli000003.fcc168fe-ce55-4f5b-b8bd-4b13372bc7fa.serialconsole.log\"\r\n + {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliqeh2b2-e048a2e9-76a7-497c-8ed7-829625b39824/cli000003.e048a2e9-76a7-497c-8ed7-829625b39824.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliqeh2b2-e048a2e9-76a7-497c-8ed7-829625b39824/cli000003.e048a2e9-76a7-497c-8ed7-829625b39824.serialconsole.log\"\r\n \ },\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2021-10-28T03:13:47.9850212+00:00\"\r\n },\r\n + \ \"time\": \"2022-08-04T17:16:34.5547235+00:00\"\r\n },\r\n \ {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n - \ ]\r\n }\r\n }\r\n}" + \ ]\r\n },\r\n \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '4206' + - '4034' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 03:14:13 GMT + - Thu, 04 Aug 2022 17:16:48 GMT expires: - '-1' pragma: @@ -4297,7 +4460,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3989,Microsoft.Compute/LowCostGet30Min;31963 + - Microsoft.Compute/LowCostGet3Min;3976,Microsoft.Compute/LowCostGet30Min;31897 status: code: 200 message: OK diff --git a/src/serial-console/azext_serialconsole/tests/latest/recordings/test_check_resource_VMSS.yaml b/src/serial-console/azext_serialconsole/tests/latest/recordings/test_check_resource_VMSS.yaml index 5f395ffd130..6be68f040c8 100644 --- a/src/serial-console/azext_serialconsole/tests/latest/recordings/test_check_resource_VMSS.yaml +++ b/src/serial-console/azext_serialconsole/tests/latest/recordings/test_check_resource_VMSS.yaml @@ -11,8 +11,8 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -26,7 +26,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 02:40:49 GMT + - Thu, 04 Aug 2022 17:10:29 GMT expires: - '-1' pragma: @@ -58,9 +58,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/virtualMachines/cli000003'' @@ -70,11 +70,11 @@ interactions: cache-control: - no-cache content-length: - - '305' + - '243' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:40:50 GMT + - Thu, 04 Aug 2022 17:10:30 GMT expires: - '-1' pragma: @@ -100,9 +100,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/virtualMachineScaleSets/cli000003'' @@ -112,11 +112,11 @@ interactions: cache-control: - no-cache content-length: - - '313' + - '251' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:40:50 GMT + - Thu, 04 Aug 2022 17:10:30 GMT expires: - '-1' pragma: @@ -142,8 +142,8 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -157,7 +157,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 02:40:51 GMT + - Thu, 04 Aug 2022 17:10:30 GMT expires: - '-1' pragma: @@ -189,9 +189,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/0/instanceView?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/0/instanceView?api-version=2022-03-01 response: body: string: '{"error":{"code":"ParentResourceNotFound","message":"Can not perform @@ -201,11 +201,11 @@ interactions: cache-control: - no-cache content-length: - - '165' + - '150' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:40:53 GMT + - Thu, 04 Aug 2022 17:10:30 GMT expires: - '-1' pragma: @@ -229,9 +229,9 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.25.1 + - python-requests/2.26.0 method: GET - uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json + uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json response: body: string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n @@ -239,36 +239,47 @@ interactions: {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n - \ \"sku\": \"7.5\",\n \"version\": \"latest\"\n },\n - \ \"Debian\": {\n \"publisher\": \"Debian\",\n \"offer\": - \"debian-10\",\n \"sku\": \"10\",\n \"version\": \"latest\"\n + \ \"sku\": \"7.5\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Debian\": {\n \"publisher\": + \"Debian\",\n \"offer\": \"debian-10\",\n \"sku\": \"10\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": - \"stable\",\n \"version\": \"latest\"\n },\n \"openSUSE-Leap\": - {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n - \ \"sku\": \"42.3\",\n \"version\": \"latest\"\n },\n - \ \"RHEL\": {\n \"publisher\": \"RedHat\",\n \"offer\": - \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n - \ },\n \"SLES\": {\n \"publisher\": \"SUSE\",\n - \ \"offer\": \"SLES\",\n \"sku\": \"15\",\n \"version\": - \"latest\"\n },\n \"UbuntuLTS\": {\n \"publisher\": + \"stable\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": + \"SUSE\",\n \"offer\": \"opensuse-leap-15-3\",\n \"sku\": + \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHEL\": {\n \"publisher\": \"RedHat\",\n + \ \"offer\": \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": + \"latest\",\n \"architecture\": \"x64\"\n },\n \"SLES\": + {\n \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": - \"18.04-LTS\",\n \"version\": \"latest\"\n }\n },\n - \ \"Windows\": {\n \"Win2019Datacenter\": {\n \"publisher\": - \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2019-Datacenter\",\n \"version\": \"latest\"\n },\n - \ \"Win2016Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n - \ \"version\": \"latest\"\n },\n \"Win2012R2Datacenter\": + \"18.04-LTS\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n }\n },\n \"Windows\": {\n \"Win2022Datacenter\": + {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": + \"WindowsServer\",\n \"sku\": \"2022-Datacenter\",\n \"version\": + \"latest\",\n \"architecture\": \"x64\"\n },\n \"Win2022AzureEditionCore\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2012-R2-Datacenter\",\n \"version\": - \"latest\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": + \"WindowsServer\",\n \"sku\": \"2022-datacenter-azure-edition-core\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"Win2019Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2019-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2016Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2016-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-R2-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2012-Datacenter\",\n \"version\": \"latest\"\n },\n - \ \"Win2008R2SP1\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n - \ \"version\": \"latest\"\n }\n }\n }\n }\n - \ }\n}\n" + \"2012-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n }\n }\n }\n }\n }\n}" headers: accept-ranges: - bytes @@ -279,19 +290,19 @@ interactions: connection: - keep-alive content-length: - - '2525' + - '3463' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: - text/plain; charset=utf-8 date: - - Thu, 28 Oct 2021 02:40:54 GMT + - Thu, 04 Aug 2022 17:10:31 GMT etag: - - W/"54bceef15b892f2aa7f4c2145a49f1b5e33608722acdbb47933d7b6cbebbd7f4" + - W/"41b202f4dc5098d126019dc00721a4c5e30df0c5196794514fadc3710ee2a5cb" expires: - - Thu, 28 Oct 2021 02:45:54 GMT + - Thu, 04 Aug 2022 17:15:31 GMT source-age: - - '0' + - '153' strict-transport-security: - max-age=31536000 vary: @@ -299,26 +310,137 @@ interactions: via: - 1.1 varnish x-cache: - - MISS + - HIT x-cache-hits: - - '0' + - '1' x-content-type-options: - nosniff x-fastly-request-id: - - 32a1490d039a524f6ca133bb73b4ad8250111b9c + - 2efe8a199373fd72a8df5a2a83bccb2a320d768c x-frame-options: - deny x-github-request-id: - - 9676:31F6:A82E9A:C1375F:617A0DB6 + - 5064:23C7:122D3E:1DAA5F:62EBFB90 x-served-by: - - cache-nrt18327-NRT + - cache-pao17443-PAO x-timer: - - S1635388855.591388,VS0,VE292 + - S1659633032.524216,VS0,VE1 x-xss-protection: - 1; mode=block status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --instance-count -l + User-Agent: + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$top=1&$orderby=name%20desc&api-version=2022-03-01 + response: + body: + string: "[\r\n {\r\n \"location\": \"westus2\",\r\n \"name\": \"18.04.202207120\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus2/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202207120\"\r\n + \ }\r\n]" + headers: + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Aug 2022 17:10:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15993,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43973 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --instance-count -l + User-Agent: + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202207120?api-version=2022-03-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n + \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": + {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": + {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n + \ \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n + \ \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": + 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": + \"westus2\",\r\n \"name\": \"18.04.202207120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus2/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202207120\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1044' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Aug 2022 17:10:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73989 + status: + code: 200 + message: OK - request: body: null headers: @@ -333,7 +455,7 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: @@ -347,7 +469,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:40:55 GMT + - Thu, 04 Aug 2022 17:10:31 GMT expires: - '-1' pragma: @@ -380,18 +502,18 @@ interactions: ''/frontendIPConfigurations/'', ''loadBalancerFrontEnd'')]"}, "protocol": "tcp", "frontendPortRangeStart": "50000", "frontendPortRangeEnd": "50119", "backendPort": 22}}]}}, {"type": "Microsoft.Compute/virtualMachineScaleSets", "name": "cli000003", - "location": "westus2", "tags": {}, "apiVersion": "2021-07-01", "dependsOn": + "location": "westus2", "tags": {}, "apiVersion": "2022-03-01", "dependsOn": ["Microsoft.Network/virtualNetworks/cli000003VNET", "Microsoft.Network/loadBalancers/cli000003LB"], "properties": {"overprovision": true, "upgradePolicy": {"mode": "manual", "rollingUpgradePolicy": {}}, "singlePlacementGroup": null, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku": "18.04-LTS", "version": "latest"}}, "osProfile": - {"computerNamePrefix": "cliyl8509", "adminUsername": "azureuser", "linuxConfiguration": - {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/azureuser/.ssh/authorized_keys", - "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh"}]}}}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "cliyl8509Nic", - "properties": {"ipConfigurations": [{"name": "cliyl8509IPConfig", "properties": + {"computerNamePrefix": "clinqc38b", "adminUsername": "rhl", "linuxConfiguration": + {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/rhl/.ssh/authorized_keys", + "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5"}]}}}, + "networkProfile": {"networkInterfaceConfigurations": [{"name": "clinqc38bNic", + "properties": {"ipConfigurations": [{"name": "clinqc38bIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool"}]}}], @@ -409,29 +531,29 @@ interactions: Connection: - keep-alive Content-Length: - - '4606' + - '4106' Content-Type: - application/json ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vmss_deploy_CfzcYCPhXJ2nhVyksi6MDjYH5yVlPUu5","name":"vmss_deploy_CfzcYCPhXJ2nhVyksi6MDjYH5yVlPUu5","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4931172884759836315","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-10-28T02:41:02.137808Z","duration":"PT1.7939562S","correlationId":"00b8c7c9-e0ac-4950-9bf2-7df584665d46","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus2"]},{"resourceType":"publicIPAddresses","locations":["westus2"]},{"resourceType":"loadBalancers","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli000003LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli000003LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli000003LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli000003"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vmss_deploy_mqVrveBcuXIOanW0hg0AJuSsCVgT6U7K","name":"vmss_deploy_mqVrveBcuXIOanW0hg0AJuSsCVgT6U7K","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5012540532131786740","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-08-04T17:10:43.791516Z","duration":"PT0.0002535S","correlationId":"1e5a3c82-ee7f-4fa4-a4ea-4df37be452a2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus2"]},{"resourceType":"publicIPAddresses","locations":["westus2"]},{"resourceType":"loadBalancers","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli000003LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli000003LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli000003LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli000003"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vmss_deploy_CfzcYCPhXJ2nhVyksi6MDjYH5yVlPUu5/operationStatuses/08585662180251337708?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vmss_deploy_mqVrveBcuXIOanW0hg0AJuSsCVgT6U7K/operationStatuses/08585419738427778273?api-version=2021-04-01 cache-control: - no-cache content-length: - - '2923' + - '2414' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:41:03 GMT + - Thu, 04 Aug 2022 17:10:43 GMT expires: - '-1' pragma: @@ -441,7 +563,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -459,9 +581,9 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585662180251337708?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585419738427778273?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -473,7 +595,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:41:34 GMT + - Thu, 04 Aug 2022 17:11:13 GMT expires: - '-1' pragma: @@ -501,9 +623,9 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585662180251337708?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585419738427778273?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -515,7 +637,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:42:05 GMT + - Thu, 04 Aug 2022 17:11:44 GMT expires: - '-1' pragma: @@ -543,9 +665,9 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585662180251337708?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585419738427778273?api-version=2021-04-01 response: body: string: '{"status":"Succeeded"}' @@ -557,7 +679,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:42:35 GMT + - Thu, 04 Aug 2022 17:12:14 GMT expires: - '-1' pragma: @@ -585,22 +707,22 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vmss_deploy_CfzcYCPhXJ2nhVyksi6MDjYH5yVlPUu5","name":"vmss_deploy_CfzcYCPhXJ2nhVyksi6MDjYH5yVlPUu5","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4931172884759836315","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-10-28T02:42:10.2374913Z","duration":"PT1M9.8936395S","correlationId":"00b8c7c9-e0ac-4950-9bf2-7df584665d46","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus2"]},{"resourceType":"publicIPAddresses","locations":["westus2"]},{"resourceType":"loadBalancers","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli000003LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli000003LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli000003LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli000003"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual","rollingUpgradePolicy":{"maxBatchInstancePercent":20,"maxUnhealthyInstancePercent":20,"maxUnhealthyUpgradedInstancePercent":20,"pauseTimeBetweenBatches":"PT0S"}},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"cliyl8509","adminUsername":"azureuser","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/azureuser/.ssh/authorized_keys","keyData":"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh"}]},"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Canonical","offer":"UbuntuServer","sku":"18.04-LTS","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"cliyl8509Nic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"cliyl8509IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"6a4ae39b-e2d9-409f-97f9-6433b410ba17"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vmss_deploy_mqVrveBcuXIOanW0hg0AJuSsCVgT6U7K","name":"vmss_deploy_mqVrveBcuXIOanW0hg0AJuSsCVgT6U7K","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5012540532131786740","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-08-04T17:11:45.7224405Z","duration":"PT1M1.931178S","correlationId":"1e5a3c82-ee7f-4fa4-a4ea-4df37be452a2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus2"]},{"resourceType":"publicIPAddresses","locations":["westus2"]},{"resourceType":"loadBalancers","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli000003LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli000003LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli000003LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli000003"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual","rollingUpgradePolicy":{"maxBatchInstancePercent":20,"maxUnhealthyInstancePercent":20,"maxUnhealthyUpgradedInstancePercent":20,"pauseTimeBetweenBatches":"PT0S"}},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"clinqc38b","adminUsername":"rhl","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/rhl/.ssh/authorized_keys","keyData":"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5"}]},"provisionVMAgent":true,"enableVMAgentPlatformUpdates":false},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Canonical","offer":"UbuntuServer","sku":"18.04-LTS","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"clinqc38bNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"clinqc38bIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"239f9fe3-2e0c-403b-8c3a-55cda6cd7b9a","timeCreated":"2022-08-04T17:10:51.2598866+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET"}]}}' headers: cache-control: - no-cache content-length: - - '6457' + - '5543' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:42:35 GMT + - Thu, 04 Aug 2022 17:12:14 GMT expires: - '-1' pragma: @@ -628,8 +750,8 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -643,7 +765,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 02:42:37 GMT + - Thu, 04 Aug 2022 17:12:14 GMT expires: - '-1' pragma: @@ -677,9 +799,9 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/virtualMachines/cli000003'' @@ -689,11 +811,11 @@ interactions: cache-control: - no-cache content-length: - - '305' + - '243' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:42:42 GMT + - Thu, 04 Aug 2022 17:12:15 GMT expires: - '-1' pragma: @@ -721,9 +843,9 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n @@ -735,33 +857,35 @@ interactions: 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"cliyl8509\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"clinqc38b\",\r\n \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n + \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n + \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cliyl8509Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cliyl8509IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]}\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clinqc38bNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clinqc38bIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]}\r\n \ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"6a4ae39b-e2d9-409f-97f9-6433b410ba17\"\r\n }\r\n}" + \"239f9fe3-2e0c-403b-8c3a-55cda6cd7b9a\",\r\n \"timeCreated\": \"2022-08-04T17:10:51.2598866+00:00\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '3630' + - '3417' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:42:43 GMT + - Thu, 04 Aug 2022 17:12:15 GMT expires: - '-1' pragma: @@ -778,7 +902,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;396,Microsoft.Compute/GetVMScaleSet30Min;2596 + - Microsoft.Compute/GetVMScaleSet3Min;384,Microsoft.Compute/GetVMScaleSet30Min;2538 status: code: 200 message: OK @@ -796,9 +920,9 @@ interactions: ParameterSetName: - --resource-group --name --query User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines?api-version=2022-03-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"cli000003_0\",\r\n @@ -808,65 +932,71 @@ interactions: \"0\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n - \ \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"cliyl8509Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cliyl8509IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n - \ \"vmId\": \"4589e4d0-058f-49cb-91cb-e8eb9d714799\",\r\n \"hardwareProfile\": - {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n - \ \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n - \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n - \ \"exactVersion\": \"18.04.202110250\"\r\n },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"cliylc7x7dlbshuur2s3cliylc7x7dlbshuur2s3fOS__1_5726efc7c83c4b6db83622984431b42a\",\r\n + \ \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"clinqc38bNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clinqc38bIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ \"vmId\": \"3d348973-8135-413e-93ca-7215f26d1bac\",\r\n \"hardwareProfile\": + {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n + \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202207120\"\r\n + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n + \ \"name\": \"clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_9d3b4aa626d54d8e9c891331fdca0d7f\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cliylc7x7dlbshuur2s3cliylc7x7dlbshuur2s3fOS__1_5726efc7c83c4b6db83622984431b42a\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_9d3b4aa626d54d8e9c891331fdca0d7f\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": - \"cliyl8509000000\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"clinqc38b000000\",\r\n \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n - \ \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/0/networkInterfaces/cliyl8509Nic\"}]},\r\n - \ \"provisioningState\": \"Updating\"\r\n }\r\n },\r\n {\r\n - \ \"name\": \"cli000003_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2\",\r\n + true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n + \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n + \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/0/networkInterfaces/clinqc38bNic\"}]},\r\n + \ \"provisioningState\": \"Updating\",\r\n \"timeCreated\": \"2022-08-04T17:10:51.3692529+00:00\"\r\n + \ }\r\n },\r\n {\r\n \"name\": \"cli000003_3\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \ \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"instanceId\": - \"2\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": + \"3\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n - \ \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"cliyl8509Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cliyl8509IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n - \ \"vmId\": \"193ee990-89a2-45e2-83bc-9ad098720f86\",\r\n \"hardwareProfile\": - {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n - \ \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n - \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n - \ \"exactVersion\": \"18.04.202110250\"\r\n },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"cliylc7x7dlbshuur2s3cliylc7x7dlbshuur2s3fOS__1_a7338ed8a7d047d2842c33628fbb07c0\",\r\n + \ \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"clinqc38bNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clinqc38bIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ \"vmId\": \"c47ce47c-9b4d-461d-8f0e-b5a271ca2265\",\r\n \"hardwareProfile\": + {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n + \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202207120\"\r\n + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n + \ \"name\": \"clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_00d110bc7aaf4fbebbd4095a4a610862\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cliylc7x7dlbshuur2s3cliylc7x7dlbshuur2s3fOS__1_a7338ed8a7d047d2842c33628fbb07c0\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_00d110bc7aaf4fbebbd4095a4a610862\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": - \"cliyl8509000002\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"clinqc38b000003\",\r\n \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n - \ \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/networkInterfaces/cliyl8509Nic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}" + true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n + \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n + \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/networkInterfaces/clinqc38bNic\"}]},\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": + \"2022-08-04T17:10:51.3692529+00:00\"\r\n }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '8631' + - '8097' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:42:44 GMT + - Thu, 04 Aug 2022 17:12:15 GMT expires: - '-1' pragma: @@ -883,7 +1013,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostGetVMScaleSet3Min;179,Microsoft.Compute/HighCostGetVMScaleSet30Min;899,Microsoft.Compute/VMScaleSetVMViews3Min;4996 + - Microsoft.Compute/HighCostGetVMScaleSet3Min;179,Microsoft.Compute/HighCostGetVMScaleSet30Min;884,Microsoft.Compute/VMScaleSetVMViews3Min;4981 x-ms-request-charge: - '4' status: @@ -903,9 +1033,9 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n @@ -917,33 +1047,35 @@ interactions: 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"cliyl8509\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"clinqc38b\",\r\n \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n + \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n + \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cliyl8509Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cliyl8509IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]}\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clinqc38bNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clinqc38bIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]}\r\n \ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"6a4ae39b-e2d9-409f-97f9-6433b410ba17\"\r\n }\r\n}" + \"239f9fe3-2e0c-403b-8c3a-55cda6cd7b9a\",\r\n \"timeCreated\": \"2022-08-04T17:10:51.2598866+00:00\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '3630' + - '3417' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:42:45 GMT + - Thu, 04 Aug 2022 17:12:15 GMT expires: - '-1' pragma: @@ -960,7 +1092,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;395,Microsoft.Compute/GetVMScaleSet30Min;2595 + - Microsoft.Compute/GetVMScaleSet3Min;381,Microsoft.Compute/GetVMScaleSet30Min;2535 status: code: 200 message: OK @@ -969,16 +1101,17 @@ interactions: "tier": "Standard", "capacity": 2}, "properties": {"upgradePolicy": {"mode": "Manual", "rollingUpgradePolicy": {"maxBatchInstancePercent": 20, "maxUnhealthyInstancePercent": 20, "maxUnhealthyUpgradedInstancePercent": 20, "pauseTimeBetweenBatches": "PT0S"}}, - "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "cliyl8509", "adminUsername": - "azureuser", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": - {"publicKeys": [{"path": "/home/azureuser/.ssh/authorized_keys", "keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh"}]}, - "provisionVMAgent": true}, "secrets": []}, "storageProfile": {"osDisk": {"caching": - "ReadWrite", "createOption": "FromImage", "diskSizeGB": 30, "osType": "Linux", - "managedDisk": {"storageAccountType": "Premium_LRS"}}}, "networkProfile": {"networkInterfaceConfigurations": - [{"name": "cliyl8509Nic", "properties": {"primary": true, "enableAcceleratedNetworking": - false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "cliyl8509IPConfig", - "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"}, + "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "clinqc38b", "adminUsername": + "rhl", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": + {"publicKeys": [{"path": "/home/rhl/.ssh/authorized_keys", "keyData": "ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5"}]}, + "provisionVMAgent": true}, "secrets": [], "allowExtensionOperations": true}, + "storageProfile": {"osDisk": {"caching": "ReadWrite", "createOption": "FromImage", + "diskSizeGB": 30, "osType": "Linux", "managedDisk": {"storageAccountType": "Premium_LRS"}}}, + "networkProfile": {"networkInterfaceConfigurations": [{"name": "clinqc38bNic", + "properties": {"primary": true, "enableAcceleratedNetworking": false, "dnsSettings": + {"dnsServers": []}, "ipConfigurations": [{"name": "clinqc38bIPConfig", "properties": + {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"}, "privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool"}]}}], @@ -995,15 +1128,15 @@ interactions: Connection: - keep-alive Content-Length: - - '2566' + - '2357' Content-Type: - application/json ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n @@ -1015,38 +1148,40 @@ interactions: 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"cliyl8509\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"clinqc38b\",\r\n \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n + \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n + \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cliyl8509Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cliyl8509IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clinqc38bNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clinqc38bIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true\r\n }\r\n }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \ \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"6a4ae39b-e2d9-409f-97f9-6433b410ba17\"\r\n }\r\n}" + false,\r\n \"uniqueId\": \"239f9fe3-2e0c-403b-8c3a-55cda6cd7b9a\",\r\n + \ \"timeCreated\": \"2022-08-04T17:10:51.2598866+00:00\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/77d4df48-b061-463d-aec5-22b39d8e90d2?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/5a472f80-cb97-46d3-8e9a-773ea3a5ae28?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - - '3738' + - '3525' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:42:52 GMT + - Thu, 04 Aug 2022 17:12:18 GMT expires: - '-1' pragma: @@ -1063,9 +1198,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateVMScaleSet3Min;58,Microsoft.Compute/CreateVMScaleSet30Min;298,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/CreateVMScaleSet3Min;118,Microsoft.Compute/CreateVMScaleSet30Min;603,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1199' x-ms-request-charge: - '0' status: @@ -1085,13 +1220,13 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/77d4df48-b061-463d-aec5-22b39d8e90d2?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/5a472f80-cb97-46d3-8e9a-773ea3a5ae28?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T02:42:50.9077171+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"77d4df48-b061-463d-aec5-22b39d8e90d2\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:12:18.6030877+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"5a472f80-cb97-46d3-8e9a-773ea3a5ae28\"\r\n}" headers: cache-control: - no-cache @@ -1100,7 +1235,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:43:02 GMT + - Thu, 04 Aug 2022 17:12:28 GMT expires: - '-1' pragma: @@ -1117,7 +1252,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995 + - Microsoft.Compute/GetOperation3Min;14963,Microsoft.Compute/GetOperation30Min;29866 status: code: 200 message: OK @@ -1135,14 +1270,14 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/77d4df48-b061-463d-aec5-22b39d8e90d2?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/5a472f80-cb97-46d3-8e9a-773ea3a5ae28?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T02:42:50.9077171+00:00\",\r\n \"endTime\": - \"2021-10-28T02:43:04.1421074+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"77d4df48-b061-463d-aec5-22b39d8e90d2\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:12:18.6030877+00:00\",\r\n \"endTime\": + \"2022-08-04T17:12:43.6654917+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"5a472f80-cb97-46d3-8e9a-773ea3a5ae28\"\r\n}" headers: cache-control: - no-cache @@ -1151,7 +1286,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:43:40 GMT + - Thu, 04 Aug 2022 17:13:05 GMT expires: - '-1' pragma: @@ -1168,7 +1303,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29992 + - Microsoft.Compute/GetOperation3Min;14963,Microsoft.Compute/GetOperation30Min;29852 status: code: 200 message: OK @@ -1186,9 +1321,9 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n @@ -1200,34 +1335,36 @@ interactions: 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"cliyl8509\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"clinqc38b\",\r\n \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n + \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n + \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cliyl8509Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cliyl8509IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clinqc38bNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clinqc38bIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true\r\n }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"6a4ae39b-e2d9-409f-97f9-6433b410ba17\"\r\n }\r\n}" + false,\r\n \"uniqueId\": \"239f9fe3-2e0c-403b-8c3a-55cda6cd7b9a\",\r\n + \ \"timeCreated\": \"2022-08-04T17:10:51.2598866+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3739' + - '3526' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:43:40 GMT + - Thu, 04 Aug 2022 17:13:05 GMT expires: - '-1' pragma: @@ -1244,15 +1381,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;392,Microsoft.Compute/GetVMScaleSet30Min;2592 + - Microsoft.Compute/GetVMScaleSet3Min;375,Microsoft.Compute/GetVMScaleSet30Min;2525 status: code: 200 message: OK - request: - body: '{"instanceIds": ["2"]}' + body: '{"instanceIds": ["3"]}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1266,25 +1403,25 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/manualupgrade?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/manualupgrade?api-version=2022-03-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0106c387-035c-4cf9-8809-a0a1403d8f2b?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/889d317a-45cb-49ea-9939-4c22229be58e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 28 Oct 2021 02:43:42 GMT + - Thu, 04 Aug 2022 17:13:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0106c387-035c-4cf9-8809-a0a1403d8f2b?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/889d317a-45cb-49ea-9939-4c22229be58e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -1295,7 +1432,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;239,Microsoft.Compute/VMScaleSetActions30Min;1199,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1195,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;236,Microsoft.Compute/VMScaleSetActions30Min;1187,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2447,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -1317,23 +1454,23 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0106c387-035c-4cf9-8809-a0a1403d8f2b?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/889d317a-45cb-49ea-9939-4c22229be58e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T02:43:42.1889551+00:00\",\r\n \"endTime\": - \"2021-10-28T02:43:54.7358013+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"0106c387-035c-4cf9-8809-a0a1403d8f2b\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:13:06.5872597+00:00\",\r\n \"endTime\": + \"2022-08-04T17:13:16.493456+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"889d317a-45cb-49ea-9939-4c22229be58e\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:44:12 GMT + - Thu, 04 Aug 2022 17:13:35 GMT expires: - '-1' pragma: @@ -1350,7 +1487,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29987 + - Microsoft.Compute/GetOperation3Min;14952,Microsoft.Compute/GetOperation30Min;29837 status: code: 200 message: OK @@ -1368,9 +1505,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0106c387-035c-4cf9-8809-a0a1403d8f2b?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/889d317a-45cb-49ea-9939-4c22229be58e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -1380,7 +1517,7 @@ interactions: content-length: - '0' date: - - Thu, 28 Oct 2021 02:44:12 GMT + - Thu, 04 Aug 2022 17:13:36 GMT expires: - '-1' pragma: @@ -1393,7 +1530,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29986 + - Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29835 status: code: 200 message: OK @@ -1411,8 +1548,8 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -1426,7 +1563,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 02:44:13 GMT + - Thu, 04 Aug 2022 17:13:37 GMT expires: - '-1' pragma: @@ -1460,38 +1597,38 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/2/instanceView?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-03-01 response: body: - string: "{\r\n \"placementGroupId\": \"abf35d1e-e5be-417f-bd3a-5c2fdaf33657\",\r\n - \ \"platformUpdateDomain\": 2,\r\n \"platformFaultDomain\": 2,\r\n \"computerName\": - \"cliyl8509000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.5.0.2\",\r\n \"statuses\": + string: "{\r\n \"placementGroupId\": \"d026ef0f-b482-4884-8583-16ebe50a963b\",\r\n + \ \"platformUpdateDomain\": 3,\r\n \"platformFaultDomain\": 3,\r\n \"computerName\": + \"clinqc38b000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.3.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2021-10-28T02:43:52+00:00\"\r\n + \"Guest Agent is running\",\r\n \"time\": \"2022-08-04T17:13:16+00:00\"\r\n \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"cliylc7x7dlbshuur2s3cliylc7x7dlbshuur2s3fOS__1_a7338ed8a7d047d2842c33628fbb07c0\",\r\n + [\r\n {\r\n \"name\": \"clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_00d110bc7aaf4fbebbd4095a4a610862\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-10-28T02:43:43.1264526+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-08-04T17:13:07.4309807+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {},\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2021-10-28T02:43:54.7202086+00:00\"\r\n },\r\n {\r\n + \ \"time\": \"2022-08-04T17:13:16.462172+00:00\"\r\n },\r\n {\r\n \ \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \ \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '1288' + - '1287' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:44:15 GMT + - Thu, 04 Aug 2022 17:13:37 GMT expires: - '-1' pragma: @@ -1508,7 +1645,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;999,Microsoft.Compute/GetVMScaleSetVM30Min;4999,Microsoft.Compute/VMScaleSetVMViews3Min;4995 + - Microsoft.Compute/GetVMScaleSetVM3Min;492,Microsoft.Compute/GetVMScaleSetVM30Min;2472,Microsoft.Compute/VMScaleSetVMViews3Min;4986 x-ms-request-charge: - '1' status: @@ -1518,7 +1655,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1530,25 +1667,25 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/2/deallocate?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/deallocate?api-version=2022-03-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f4226baf-72f0-4d13-b1bb-198d79fce312?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/07890245-8ecb-4b70-b4cd-d9fc163cb566?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 28 Oct 2021 02:44:16 GMT + - Thu, 04 Aug 2022 17:13:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f4226baf-72f0-4d13-b1bb-198d79fce312?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/07890245-8ecb-4b70-b4cd-d9fc163cb566?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -1559,7 +1696,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVMScaleSetVM3Min;239,Microsoft.Compute/DeleteVMScaleSetVM30Min;1199,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1194,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/DeleteVMScaleSetVM3Min;238,Microsoft.Compute/DeleteVMScaleSetVM30Min;1196,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2421,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -1581,13 +1718,13 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f4226baf-72f0-4d13-b1bb-198d79fce312?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/07890245-8ecb-4b70-b4cd-d9fc163cb566?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T02:44:16.8139408+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"f4226baf-72f0-4d13-b1bb-198d79fce312\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:13:38.2433222+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"07890245-8ecb-4b70-b4cd-d9fc163cb566\"\r\n}" headers: cache-control: - no-cache @@ -1596,7 +1733,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:44:46 GMT + - Thu, 04 Aug 2022 17:14:08 GMT expires: - '-1' pragma: @@ -1613,7 +1750,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29980 + - Microsoft.Compute/GetOperation3Min;14942,Microsoft.Compute/GetOperation30Min;29823 status: code: 200 message: OK @@ -1631,23 +1768,23 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f4226baf-72f0-4d13-b1bb-198d79fce312?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/07890245-8ecb-4b70-b4cd-d9fc163cb566?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T02:44:16.8139408+00:00\",\r\n \"endTime\": - \"2021-10-28T02:45:00.2514146+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"f4226baf-72f0-4d13-b1bb-198d79fce312\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:13:38.2433222+00:00\",\r\n \"endTime\": + \"2022-08-04T17:14:29.914845+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"07890245-8ecb-4b70-b4cd-d9fc163cb566\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:45:17 GMT + - Thu, 04 Aug 2022 17:14:38 GMT expires: - '-1' pragma: @@ -1664,7 +1801,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14974,Microsoft.Compute/GetOperation30Min;29972 + - Microsoft.Compute/GetOperation3Min;14942,Microsoft.Compute/GetOperation30Min;29816 status: code: 200 message: OK @@ -1682,9 +1819,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f4226baf-72f0-4d13-b1bb-198d79fce312?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/07890245-8ecb-4b70-b4cd-d9fc163cb566?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -1694,7 +1831,7 @@ interactions: content-length: - '0' date: - - Thu, 28 Oct 2021 02:45:17 GMT + - Thu, 04 Aug 2022 17:14:38 GMT expires: - '-1' pragma: @@ -1707,7 +1844,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14973,Microsoft.Compute/GetOperation30Min;29971 + - Microsoft.Compute/GetOperation3Min;14941,Microsoft.Compute/GetOperation30Min;29815 status: code: 200 message: OK @@ -1725,8 +1862,8 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -1740,7 +1877,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 02:45:18 GMT + - Thu, 04 Aug 2022 17:14:39 GMT expires: - '-1' pragma: @@ -1774,32 +1911,32 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/2/instanceView?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-03-01 response: body: - string: "{\r\n \"placementGroupId\": \"abf35d1e-e5be-417f-bd3a-5c2fdaf33657\",\r\n - \ \"platformUpdateDomain\": 2,\r\n \"platformFaultDomain\": 2,\r\n \"disks\": - [\r\n {\r\n \"name\": \"cliylc7x7dlbshuur2s3cliylc7x7dlbshuur2s3fOS__1_a7338ed8a7d047d2842c33628fbb07c0\",\r\n + string: "{\r\n \"placementGroupId\": \"d026ef0f-b482-4884-8583-16ebe50a963b\",\r\n + \ \"platformUpdateDomain\": 3,\r\n \"platformFaultDomain\": 3,\r\n \"disks\": + [\r\n {\r\n \"name\": \"clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_00d110bc7aaf4fbebbd4095a4a610862\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-10-28T02:45:00.1108282+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-08-04T17:14:29.7273434+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {},\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2021-10-28T02:45:00.126477+00:00\"\r\n },\r\n {\r\n + \ \"time\": \"2022-08-04T17:14:29.7429651+00:00\"\r\n },\r\n {\r\n \ \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \ \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '879' + - '880' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:45:20 GMT + - Thu, 04 Aug 2022 17:14:39 GMT expires: - '-1' pragma: @@ -1816,17 +1953,17 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;998,Microsoft.Compute/GetVMScaleSetVM30Min;4998,Microsoft.Compute/VMScaleSetVMViews3Min;4994 + - Microsoft.Compute/GetVMScaleSetVM3Min;492,Microsoft.Compute/GetVMScaleSetVM30Min;2467,Microsoft.Compute/VMScaleSetVMViews3Min;4984 x-ms-request-charge: - '1' status: code: 200 message: OK - request: - body: '{"instanceIds": ["2"]}' + body: '{"instanceIds": ["3"]}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1840,25 +1977,25 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/start?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/start?api-version=2022-03-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/761c3cbf-6fef-4d27-9e3e-8c058ac5b465?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e546c0e8-722a-4ed0-a0f2-829e86242608?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 28 Oct 2021 02:45:21 GMT + - Thu, 04 Aug 2022 17:14:40 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/761c3cbf-6fef-4d27-9e3e-8c058ac5b465?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e546c0e8-722a-4ed0-a0f2-829e86242608?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -1869,7 +2006,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1198,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1193,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;235,Microsoft.Compute/VMScaleSetActions30Min;1185,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2387,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1198' x-ms-request-charge: @@ -1891,23 +2028,22 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/761c3cbf-6fef-4d27-9e3e-8c058ac5b465?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e546c0e8-722a-4ed0-a0f2-829e86242608?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T02:45:21.8295418+00:00\",\r\n \"endTime\": - \"2021-10-28T02:45:40.0796158+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"761c3cbf-6fef-4d27-9e3e-8c058ac5b465\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:14:40.086698+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e546c0e8-722a-4ed0-a0f2-829e86242608\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '133' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:45:53 GMT + - Thu, 04 Aug 2022 17:15:09 GMT expires: - '-1' pragma: @@ -1924,7 +2060,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29964 + - Microsoft.Compute/GetOperation3Min;14940,Microsoft.Compute/GetOperation30Min;29806 status: code: 200 message: OK @@ -1942,9 +2078,60 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/761c3cbf-6fef-4d27-9e3e-8c058ac5b465?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e546c0e8-722a-4ed0-a0f2-829e86242608?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-08-04T17:14:40.086698+00:00\",\r\n \"endTime\": + \"2022-08-04T17:15:15.6177127+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"e546c0e8-722a-4ed0-a0f2-829e86242608\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '183' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Aug 2022 17:15:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29800 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss start + Connection: + - keep-alive + ParameterSetName: + - -g -n --instance-ids + User-Agent: + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e546c0e8-722a-4ed0-a0f2-829e86242608?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -1954,7 +2141,7 @@ interactions: content-length: - '0' date: - - Thu, 28 Oct 2021 02:45:53 GMT + - Thu, 04 Aug 2022 17:15:39 GMT expires: - '-1' pragma: @@ -1967,15 +2154,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29963 + - Microsoft.Compute/GetOperation3Min;14945,Microsoft.Compute/GetOperation30Min;29799 status: code: 200 message: OK - request: - body: '{"instanceIds": ["2"]}' + body: '{"instanceIds": ["3"]}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1989,25 +2176,25 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/poweroff?skipShutdown=false&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/poweroff?skipShutdown=false&api-version=2022-03-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e06d7078-dc27-4eef-a506-fd7ab026a980?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/07fc9e39-a652-4a04-8796-e82dea9cb84b?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 28 Oct 2021 02:45:55 GMT + - Thu, 04 Aug 2022 17:15:40 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e06d7078-dc27-4eef-a506-fd7ab026a980?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/07fc9e39-a652-4a04-8796-e82dea9cb84b?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -2018,9 +2205,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVMScaleSet3Min;79,Microsoft.Compute/DeleteVMScaleSet30Min;399,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1192,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/DeleteVMScaleSet3Min;77,Microsoft.Compute/DeleteVMScaleSet30Min;392,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2318,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-ms-request-charge: - '1' status: @@ -2040,14 +2227,14 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e06d7078-dc27-4eef-a506-fd7ab026a980?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/07fc9e39-a652-4a04-8796-e82dea9cb84b?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T02:45:55.6264534+00:00\",\r\n \"endTime\": - \"2021-10-28T02:46:06.9858245+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"e06d7078-dc27-4eef-a506-fd7ab026a980\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:15:41.1331519+00:00\",\r\n \"endTime\": + \"2022-08-04T17:15:50.3830897+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"07fc9e39-a652-4a04-8796-e82dea9cb84b\"\r\n}" headers: cache-control: - no-cache @@ -2056,7 +2243,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:46:25 GMT + - Thu, 04 Aug 2022 17:16:11 GMT expires: - '-1' pragma: @@ -2073,7 +2260,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29960 + - Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29790 status: code: 200 message: OK @@ -2091,9 +2278,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e06d7078-dc27-4eef-a506-fd7ab026a980?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/07fc9e39-a652-4a04-8796-e82dea9cb84b?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -2103,7 +2290,7 @@ interactions: content-length: - '0' date: - - Thu, 28 Oct 2021 02:46:25 GMT + - Thu, 04 Aug 2022 17:16:11 GMT expires: - '-1' pragma: @@ -2116,7 +2303,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29959 + - Microsoft.Compute/GetOperation3Min;14948,Microsoft.Compute/GetOperation30Min;29788 status: code: 200 message: OK @@ -2134,8 +2321,8 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -2149,7 +2336,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 02:46:26 GMT + - Thu, 04 Aug 2022 17:16:11 GMT expires: - '-1' pragma: @@ -2183,27 +2370,27 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/2/instanceView?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-03-01 response: body: - string: "{\r\n \"placementGroupId\": \"abf35d1e-e5be-417f-bd3a-5c2fdaf33657\",\r\n + string: "{\r\n \"placementGroupId\": \"d026ef0f-b482-4884-8583-16ebe50a963b\",\r\n \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": - \"cliyl8509000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.5.0.2\",\r\n \"statuses\": + \"clinqc38b000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.3.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2021-10-28T02:45:54+00:00\"\r\n + \"Guest Agent is running\",\r\n \"time\": \"2022-08-04T17:15:31+00:00\"\r\n \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"cliylc7x7dlbshuur2s3cliylc7x7dlbshuur2s3fOS__1_a7338ed8a7d047d2842c33628fbb07c0\",\r\n + [\r\n {\r\n \"name\": \"clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_00d110bc7aaf4fbebbd4095a4a610862\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-10-28T02:45:23.9076699+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-08-04T17:15:03.1334389+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {},\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2021-10-28T02:46:06.9701631+00:00\"\r\n },\r\n {\r\n + \ \"time\": \"2022-08-04T17:15:50.3518389+00:00\"\r\n },\r\n {\r\n \ \"code\": \"PowerState/stopped\",\r\n \"level\": \"Info\",\r\n \ \"displayStatus\": \"VM stopped\"\r\n }\r\n ]\r\n}" headers: @@ -2214,7 +2401,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:46:28 GMT + - Thu, 04 Aug 2022 17:16:12 GMT expires: - '-1' pragma: @@ -2231,17 +2418,17 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;997,Microsoft.Compute/GetVMScaleSetVM30Min;4997,Microsoft.Compute/VMScaleSetVMViews3Min;4997 + - Microsoft.Compute/GetVMScaleSetVM3Min;492,Microsoft.Compute/GetVMScaleSetVM30Min;2465,Microsoft.Compute/VMScaleSetVMViews3Min;4990 x-ms-request-charge: - '1' status: code: 200 message: OK - request: - body: '{"instanceIds": ["2"]}' + body: '{"instanceIds": ["3"]}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -2255,25 +2442,25 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/start?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/start?api-version=2022-03-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/de8de4b7-dcbd-402f-b6ad-a7de74da1f19?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/1243d5f7-28ce-4878-9dbe-390b02fbb686?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 28 Oct 2021 02:46:31 GMT + - Thu, 04 Aug 2022 17:16:12 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/de8de4b7-dcbd-402f-b6ad-a7de74da1f19?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/1243d5f7-28ce-4878-9dbe-390b02fbb686?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -2284,9 +2471,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1197,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1195,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1184,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2321,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' x-ms-request-charge: - '1' status: @@ -2306,14 +2493,14 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/de8de4b7-dcbd-402f-b6ad-a7de74da1f19?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/1243d5f7-28ce-4878-9dbe-390b02fbb686?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T02:46:31.0170602+00:00\",\r\n \"endTime\": - \"2021-10-28T02:46:40.9858054+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"de8de4b7-dcbd-402f-b6ad-a7de74da1f19\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:16:12.9142137+00:00\",\r\n \"endTime\": + \"2022-08-04T17:16:16.3048315+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"1243d5f7-28ce-4878-9dbe-390b02fbb686\"\r\n}" headers: cache-control: - no-cache @@ -2322,7 +2509,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:47:01 GMT + - Thu, 04 Aug 2022 17:16:42 GMT expires: - '-1' pragma: @@ -2339,7 +2526,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29954 + - Microsoft.Compute/GetOperation3Min;14956,Microsoft.Compute/GetOperation30Min;29782 status: code: 200 message: OK @@ -2357,9 +2544,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/de8de4b7-dcbd-402f-b6ad-a7de74da1f19?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/1243d5f7-28ce-4878-9dbe-390b02fbb686?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -2369,7 +2556,7 @@ interactions: content-length: - '0' date: - - Thu, 28 Oct 2021 02:47:01 GMT + - Thu, 04 Aug 2022 17:16:42 GMT expires: - '-1' pragma: @@ -2382,7 +2569,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29953 + - Microsoft.Compute/GetOperation3Min;14955,Microsoft.Compute/GetOperation30Min;29781 status: code: 200 message: OK @@ -2400,9 +2587,9 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n @@ -2414,34 +2601,36 @@ interactions: 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"cliyl8509\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"clinqc38b\",\r\n \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n + \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n + \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cliyl8509Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cliyl8509IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clinqc38bNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clinqc38bIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true\r\n }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"6a4ae39b-e2d9-409f-97f9-6433b410ba17\"\r\n }\r\n}" + false,\r\n \"uniqueId\": \"239f9fe3-2e0c-403b-8c3a-55cda6cd7b9a\",\r\n + \ \"timeCreated\": \"2022-08-04T17:10:51.2598866+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3739' + - '3526' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:47:02 GMT + - Thu, 04 Aug 2022 17:16:43 GMT expires: - '-1' pragma: @@ -2458,7 +2647,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;399,Microsoft.Compute/GetVMScaleSet30Min;2591 + - Microsoft.Compute/GetVMScaleSet3Min;391,Microsoft.Compute/GetVMScaleSet30Min;2513 status: code: 200 message: OK @@ -2467,16 +2656,17 @@ interactions: "tier": "Standard", "capacity": 2}, "properties": {"upgradePolicy": {"mode": "Manual", "rollingUpgradePolicy": {"maxBatchInstancePercent": 20, "maxUnhealthyInstancePercent": 20, "maxUnhealthyUpgradedInstancePercent": 20, "pauseTimeBetweenBatches": "PT0S"}}, - "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "cliyl8509", "adminUsername": - "azureuser", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": - {"publicKeys": [{"path": "/home/azureuser/.ssh/authorized_keys", "keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh"}]}, - "provisionVMAgent": true}, "secrets": []}, "storageProfile": {"osDisk": {"caching": - "ReadWrite", "createOption": "FromImage", "diskSizeGB": 30, "osType": "Linux", - "managedDisk": {"storageAccountType": "Premium_LRS"}}}, "networkProfile": {"networkInterfaceConfigurations": - [{"name": "cliyl8509Nic", "properties": {"primary": true, "enableAcceleratedNetworking": - false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "cliyl8509IPConfig", - "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"}, + "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "clinqc38b", "adminUsername": + "rhl", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": + {"publicKeys": [{"path": "/home/rhl/.ssh/authorized_keys", "keyData": "ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5"}]}, + "provisionVMAgent": true}, "secrets": [], "allowExtensionOperations": true}, + "storageProfile": {"osDisk": {"caching": "ReadWrite", "createOption": "FromImage", + "diskSizeGB": 30, "osType": "Linux", "managedDisk": {"storageAccountType": "Premium_LRS"}}}, + "networkProfile": {"networkInterfaceConfigurations": [{"name": "clinqc38bNic", + "properties": {"primary": true, "enableAcceleratedNetworking": false, "dnsSettings": + {"dnsServers": []}, "ipConfigurations": [{"name": "clinqc38bIPConfig", "properties": + {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"}, "privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool"}]}}], @@ -2494,15 +2684,15 @@ interactions: Connection: - keep-alive Content-Length: - - '2639' + - '2415' Content-Type: - application/json ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n @@ -2514,39 +2704,41 @@ interactions: 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"cliyl8509\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"clinqc38b\",\r\n \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n + \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n + \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cliyl8509Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cliyl8509IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clinqc38bNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clinqc38bIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n \ }\r\n }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \ \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"6a4ae39b-e2d9-409f-97f9-6433b410ba17\"\r\n }\r\n}" + false,\r\n \"uniqueId\": \"239f9fe3-2e0c-403b-8c3a-55cda6cd7b9a\",\r\n + \ \"timeCreated\": \"2022-08-04T17:10:51.2598866+00:00\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d19ade0c-29ef-4988-b1d7-2dba4acf8806?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/8153e4c3-cdab-4eed-9544-7226ec957d7b?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - - '3822' + - '3594' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:47:08 GMT + - Thu, 04 Aug 2022 17:16:46 GMT expires: - '-1' pragma: @@ -2563,9 +2755,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;297,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/CreateVMScaleSet3Min;113,Microsoft.Compute/CreateVMScaleSet30Min;558,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1199' x-ms-request-charge: - '0' status: @@ -2585,14 +2777,14 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d19ade0c-29ef-4988-b1d7-2dba4acf8806?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/8153e4c3-cdab-4eed-9544-7226ec957d7b?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T02:47:07.5170009+00:00\",\r\n \"endTime\": - \"2021-10-28T02:47:07.7045452+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"d19ade0c-29ef-4988-b1d7-2dba4acf8806\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:16:46.4765007+00:00\",\r\n \"endTime\": + \"2022-08-04T17:16:46.7421169+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"8153e4c3-cdab-4eed-9544-7226ec957d7b\"\r\n}" headers: cache-control: - no-cache @@ -2601,7 +2793,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:47:18 GMT + - Thu, 04 Aug 2022 17:16:56 GMT expires: - '-1' pragma: @@ -2618,7 +2810,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29951 + - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29775 status: code: 200 message: OK @@ -2636,9 +2828,9 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n @@ -2650,35 +2842,37 @@ interactions: 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"cliyl8509\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"clinqc38b\",\r\n \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n + \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n + \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cliyl8509Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cliyl8509IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clinqc38bNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clinqc38bIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n \ }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"6a4ae39b-e2d9-409f-97f9-6433b410ba17\"\r\n }\r\n}" + false,\r\n \"uniqueId\": \"239f9fe3-2e0c-403b-8c3a-55cda6cd7b9a\",\r\n + \ \"timeCreated\": \"2022-08-04T17:10:51.2598866+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3823' + - '3595' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:47:18 GMT + - Thu, 04 Aug 2022 17:16:56 GMT expires: - '-1' pragma: @@ -2695,15 +2889,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;396,Microsoft.Compute/GetVMScaleSet30Min;2588 + - Microsoft.Compute/GetVMScaleSet3Min;382,Microsoft.Compute/GetVMScaleSet30Min;2504 status: code: 200 message: OK - request: - body: '{"instanceIds": ["2"]}' + body: '{"instanceIds": ["3"]}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -2717,25 +2911,25 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/manualupgrade?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/manualupgrade?api-version=2022-03-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/1b63fe88-7758-4b0d-81ac-f3a257269efe?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/5af238b5-2789-45a9-860f-6060cfaaa57c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 28 Oct 2021 02:47:21 GMT + - Thu, 04 Aug 2022 17:16:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/1b63fe88-7758-4b0d-81ac-f3a257269efe?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/5af238b5-2789-45a9-860f-6060cfaaa57c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -2746,9 +2940,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;237,Microsoft.Compute/VMScaleSetActions30Min;1196,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1194,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;237,Microsoft.Compute/VMScaleSetActions30Min;1183,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2231,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-ms-request-charge: - '1' status: @@ -2768,14 +2962,14 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/1b63fe88-7758-4b0d-81ac-f3a257269efe?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/5af238b5-2789-45a9-860f-6060cfaaa57c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T02:47:20.657647+00:00\",\r\n \"endTime\": - \"2021-10-28T02:47:30.7826359+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"1b63fe88-7758-4b0d-81ac-f3a257269efe\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:16:57.6015185+00:00\",\r\n \"endTime\": + \"2022-08-04T17:17:10.288885+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"5af238b5-2789-45a9-860f-6060cfaaa57c\"\r\n}" headers: cache-control: - no-cache @@ -2784,7 +2978,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:47:50 GMT + - Thu, 04 Aug 2022 17:17:27 GMT expires: - '-1' pragma: @@ -2801,7 +2995,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14972,Microsoft.Compute/GetOperation30Min;29949 + - Microsoft.Compute/GetOperation3Min;14954,Microsoft.Compute/GetOperation30Min;29771 status: code: 200 message: OK @@ -2819,9 +3013,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/1b63fe88-7758-4b0d-81ac-f3a257269efe?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/5af238b5-2789-45a9-860f-6060cfaaa57c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -2831,7 +3025,7 @@ interactions: content-length: - '0' date: - - Thu, 28 Oct 2021 02:47:51 GMT + - Thu, 04 Aug 2022 17:17:27 GMT expires: - '-1' pragma: @@ -2844,7 +3038,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14971,Microsoft.Compute/GetOperation30Min;29948 + - Microsoft.Compute/GetOperation3Min;14953,Microsoft.Compute/GetOperation30Min;29770 status: code: 200 message: OK @@ -2862,8 +3056,8 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -2877,7 +3071,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 02:47:52 GMT + - Thu, 04 Aug 2022 17:17:28 GMT expires: - '-1' pragma: @@ -2911,40 +3105,40 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/2/instanceView?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-03-01 response: body: - string: "{\r\n \"placementGroupId\": \"abf35d1e-e5be-417f-bd3a-5c2fdaf33657\",\r\n + string: "{\r\n \"placementGroupId\": \"d026ef0f-b482-4884-8583-16ebe50a963b\",\r\n \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": - \"cliyl8509000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.5.0.2\",\r\n \"statuses\": + \"clinqc38b000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.3.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2021-10-28T02:47:29+00:00\"\r\n + \"Guest Agent is running\",\r\n \"time\": \"2022-08-04T17:17:09+00:00\"\r\n \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"cliylc7x7dlbshuur2s3cliylc7x7dlbshuur2s3fOS__1_a7338ed8a7d047d2842c33628fbb07c0\",\r\n + [\r\n {\r\n \"name\": \"clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_00d110bc7aaf4fbebbd4095a4a610862\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-10-28T02:47:21.7514333+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-08-04T17:17:00.6326722+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {\r\n \"consoleScreenshotBlobUri\": - \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliylc7x7-193ee990-89a2-45e2-83bc-9ad098720f86/cli000003_2.193ee990-89a2-45e2-83bc-9ad098720f86.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliylc7x7-193ee990-89a2-45e2-83bc-9ad098720f86/cli000003_2.193ee990-89a2-45e2-83bc-9ad098720f86.serialconsole.log\"\r\n + \"https://cli000002.blob.core.windows.net/bootdiagnostics-clinqhzpo-c47ce47c-9b4d-461d-8f0e-b5a271ca2265/cli000003_3.c47ce47c-9b4d-461d-8f0e-b5a271ca2265.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clinqhzpo-c47ce47c-9b4d-461d-8f0e-b5a271ca2265/cli000003_3.c47ce47c-9b4d-461d-8f0e-b5a271ca2265.serialconsole.log\"\r\n \ },\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n - \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2021-10-28T02:47:30.7514398+00:00\"\r\n + \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2022-08-04T17:17:10.2576133+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '1759' + - '1699' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:47:54 GMT + - Thu, 04 Aug 2022 17:17:28 GMT expires: - '-1' pragma: @@ -2961,7 +3155,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;997,Microsoft.Compute/GetVMScaleSetVM30Min;4996,Microsoft.Compute/VMScaleSetVMViews3Min;4997 + - Microsoft.Compute/GetVMScaleSetVM3Min;493,Microsoft.Compute/GetVMScaleSetVM30Min;2464,Microsoft.Compute/VMScaleSetVMViews3Min;4993 x-ms-request-charge: - '1' status: @@ -2983,8 +3177,8 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default/disableConsole?api-version=2018-05-01 response: @@ -2998,7 +3192,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 02:47:56 GMT + - Thu, 04 Aug 2022 17:17:28 GMT expires: - '-1' pragma: @@ -3016,7 +3210,7 @@ interactions: x-frame-options: - deny x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -3032,8 +3226,8 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -3047,7 +3241,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 02:47:57 GMT + - Thu, 04 Aug 2022 17:17:29 GMT expires: - '-1' pragma: @@ -3083,8 +3277,8 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default/enableConsole?api-version=2018-05-01 response: @@ -3098,7 +3292,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 02:47:59 GMT + - Thu, 04 Aug 2022 17:17:29 GMT expires: - '-1' pragma: @@ -3116,7 +3310,7 @@ interactions: x-frame-options: - deny x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 200 message: OK @@ -3132,8 +3326,8 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -3147,7 +3341,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 02:48:00 GMT + - Thu, 04 Aug 2022 17:17:30 GMT expires: - '-1' pragma: @@ -3179,40 +3373,40 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/2/instanceView?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-03-01 response: body: - string: "{\r\n \"placementGroupId\": \"abf35d1e-e5be-417f-bd3a-5c2fdaf33657\",\r\n + string: "{\r\n \"placementGroupId\": \"d026ef0f-b482-4884-8583-16ebe50a963b\",\r\n \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": - \"cliyl8509000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.5.0.2\",\r\n \"statuses\": + \"clinqc38b000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.3.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2021-10-28T02:47:29+00:00\"\r\n + \"Guest Agent is running\",\r\n \"time\": \"2022-08-04T17:17:09+00:00\"\r\n \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"cliylc7x7dlbshuur2s3cliylc7x7dlbshuur2s3fOS__1_a7338ed8a7d047d2842c33628fbb07c0\",\r\n + [\r\n {\r\n \"name\": \"clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_00d110bc7aaf4fbebbd4095a4a610862\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-10-28T02:47:21.7514333+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-08-04T17:17:00.6326722+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {\r\n \"consoleScreenshotBlobUri\": - \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliylc7x7-193ee990-89a2-45e2-83bc-9ad098720f86/cli000003_2.193ee990-89a2-45e2-83bc-9ad098720f86.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliylc7x7-193ee990-89a2-45e2-83bc-9ad098720f86/cli000003_2.193ee990-89a2-45e2-83bc-9ad098720f86.serialconsole.log\"\r\n + \"https://cli000002.blob.core.windows.net/bootdiagnostics-clinqhzpo-c47ce47c-9b4d-461d-8f0e-b5a271ca2265/cli000003_3.c47ce47c-9b4d-461d-8f0e-b5a271ca2265.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clinqhzpo-c47ce47c-9b4d-461d-8f0e-b5a271ca2265/cli000003_3.c47ce47c-9b4d-461d-8f0e-b5a271ca2265.serialconsole.log\"\r\n \ },\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n - \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2021-10-28T02:47:30.7514398+00:00\"\r\n + \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2022-08-04T17:17:10.2576133+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '1759' + - '1699' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:48:02 GMT + - Thu, 04 Aug 2022 17:17:30 GMT expires: - '-1' pragma: @@ -3229,7 +3423,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;997,Microsoft.Compute/GetVMScaleSetVM30Min;4995,Microsoft.Compute/VMScaleSetVMViews3Min;4997 + - Microsoft.Compute/GetVMScaleSetVM3Min;497,Microsoft.Compute/GetVMScaleSetVM30Min;2463,Microsoft.Compute/VMScaleSetVMViews3Min;4997 x-ms-request-charge: - '1' status: @@ -3239,7 +3433,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -3251,25 +3445,25 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/2/deallocate?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/deallocate?api-version=2022-03-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/a9c1d20f-a69f-4b3a-b1f7-4debf9d71f34?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/86816ea3-665f-4227-97b1-cbdbc2d6fbe3?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 28 Oct 2021 02:48:04 GMT + - Thu, 04 Aug 2022 17:17:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/a9c1d20f-a69f-4b3a-b1f7-4debf9d71f34?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/86816ea3-665f-4227-97b1-cbdbc2d6fbe3?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -3280,9 +3474,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVMScaleSetVM3Min;239,Microsoft.Compute/DeleteVMScaleSetVM30Min;1198,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1194,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/DeleteVMScaleSetVM3Min;239,Microsoft.Compute/DeleteVMScaleSetVM30Min;1195,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2233,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-ms-request-charge: - '1' status: @@ -3302,13 +3496,13 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/a9c1d20f-a69f-4b3a-b1f7-4debf9d71f34?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/86816ea3-665f-4227-97b1-cbdbc2d6fbe3?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T02:48:04.5483091+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a9c1d20f-a69f-4b3a-b1f7-4debf9d71f34\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:17:31.6324677+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"86816ea3-665f-4227-97b1-cbdbc2d6fbe3\"\r\n}" headers: cache-control: - no-cache @@ -3317,7 +3511,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:48:34 GMT + - Thu, 04 Aug 2022 17:18:01 GMT expires: - '-1' pragma: @@ -3334,7 +3528,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29944 + - Microsoft.Compute/GetOperation3Min;14964,Microsoft.Compute/GetOperation30Min;29765 status: code: 200 message: OK @@ -3352,23 +3546,23 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/a9c1d20f-a69f-4b3a-b1f7-4debf9d71f34?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/86816ea3-665f-4227-97b1-cbdbc2d6fbe3?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T02:48:04.5483091+00:00\",\r\n \"endTime\": - \"2021-10-28T02:48:51.220146+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"a9c1d20f-a69f-4b3a-b1f7-4debf9d71f34\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:17:31.6324677+00:00\",\r\n \"endTime\": + \"2022-08-04T17:18:18.0071799+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"86816ea3-665f-4227-97b1-cbdbc2d6fbe3\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:49:05 GMT + - Thu, 04 Aug 2022 17:18:31 GMT expires: - '-1' pragma: @@ -3385,7 +3579,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29941 + - Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29759 status: code: 200 message: OK @@ -3403,9 +3597,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/a9c1d20f-a69f-4b3a-b1f7-4debf9d71f34?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/86816ea3-665f-4227-97b1-cbdbc2d6fbe3?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -3415,7 +3609,7 @@ interactions: content-length: - '0' date: - - Thu, 28 Oct 2021 02:49:05 GMT + - Thu, 04 Aug 2022 17:18:31 GMT expires: - '-1' pragma: @@ -3428,7 +3622,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29940 + - Microsoft.Compute/GetOperation3Min;14965,Microsoft.Compute/GetOperation30Min;29758 status: code: 200 message: OK @@ -3446,8 +3640,8 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -3461,7 +3655,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 02:49:06 GMT + - Thu, 04 Aug 2022 17:18:31 GMT expires: - '-1' pragma: @@ -3495,34 +3689,34 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/2/instanceView?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-03-01 response: body: - string: "{\r\n \"placementGroupId\": \"abf35d1e-e5be-417f-bd3a-5c2fdaf33657\",\r\n + string: "{\r\n \"placementGroupId\": \"d026ef0f-b482-4884-8583-16ebe50a963b\",\r\n \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"disks\": - [\r\n {\r\n \"name\": \"cliylc7x7dlbshuur2s3cliylc7x7dlbshuur2s3fOS__1_a7338ed8a7d047d2842c33628fbb07c0\",\r\n + [\r\n {\r\n \"name\": \"clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_00d110bc7aaf4fbebbd4095a4a610862\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-10-28T02:48:51.0794944+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-08-04T17:18:17.8509313+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {\r\n \"consoleScreenshotBlobUri\": - \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliylc7x7-193ee990-89a2-45e2-83bc-9ad098720f86/cli000003_2.193ee990-89a2-45e2-83bc-9ad098720f86.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliylc7x7-193ee990-89a2-45e2-83bc-9ad098720f86/cli000003_2.193ee990-89a2-45e2-83bc-9ad098720f86.serialconsole.log\"\r\n + \"https://cli000002.blob.core.windows.net/bootdiagnostics-clinqhzpo-c47ce47c-9b4d-461d-8f0e-b5a271ca2265/cli000003_3.c47ce47c-9b4d-461d-8f0e-b5a271ca2265.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clinqhzpo-c47ce47c-9b4d-461d-8f0e-b5a271ca2265/cli000003_3.c47ce47c-9b4d-461d-8f0e-b5a271ca2265.serialconsole.log\"\r\n \ },\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n - \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2021-10-28T02:48:51.0951448+00:00\"\r\n + \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2022-08-04T17:18:17.8665399+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '1351' + - '1291' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:49:08 GMT + - Thu, 04 Aug 2022 17:18:32 GMT expires: - '-1' pragma: @@ -3539,17 +3733,17 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;997,Microsoft.Compute/GetVMScaleSetVM30Min;4994,Microsoft.Compute/VMScaleSetVMViews3Min;4997 + - Microsoft.Compute/GetVMScaleSetVM3Min;496,Microsoft.Compute/GetVMScaleSetVM30Min;2462,Microsoft.Compute/VMScaleSetVMViews3Min;4994 x-ms-request-charge: - '1' status: code: 200 message: OK - request: - body: '{"instanceIds": ["2"]}' + body: '{"instanceIds": ["3"]}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -3563,25 +3757,25 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/start?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/start?api-version=2022-03-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3ec6a8af-2a25-4f66-af9f-78796fe41564?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c86462cd-02d5-4754-8f50-ce258bd14d92?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 28 Oct 2021 02:49:09 GMT + - Thu, 04 Aug 2022 17:18:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3ec6a8af-2a25-4f66-af9f-78796fe41564?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c86462cd-02d5-4754-8f50-ce258bd14d92?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -3592,9 +3786,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;237,Microsoft.Compute/VMScaleSetActions30Min;1195,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1194,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;236,Microsoft.Compute/VMScaleSetActions30Min;1181,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2320,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1197' x-ms-request-charge: - '1' status: @@ -3614,14 +3808,14 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3ec6a8af-2a25-4f66-af9f-78796fe41564?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c86462cd-02d5-4754-8f50-ce258bd14d92?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T02:49:09.7514149+00:00\",\r\n \"endTime\": - \"2021-10-28T02:49:28.2826105+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"3ec6a8af-2a25-4f66-af9f-78796fe41564\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:18:33.2883201+00:00\",\r\n \"endTime\": + \"2022-08-04T17:18:50.2569874+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"c86462cd-02d5-4754-8f50-ce258bd14d92\"\r\n}" headers: cache-control: - no-cache @@ -3630,7 +3824,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:49:39 GMT + - Thu, 04 Aug 2022 17:19:03 GMT expires: - '-1' pragma: @@ -3647,7 +3841,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29938 + - Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29751 status: code: 200 message: OK @@ -3665,9 +3859,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3ec6a8af-2a25-4f66-af9f-78796fe41564?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c86462cd-02d5-4754-8f50-ce258bd14d92?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -3677,7 +3871,7 @@ interactions: content-length: - '0' date: - - Thu, 28 Oct 2021 02:49:40 GMT + - Thu, 04 Aug 2022 17:19:03 GMT expires: - '-1' pragma: @@ -3690,15 +3884,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29937 + - Microsoft.Compute/GetOperation3Min;14964,Microsoft.Compute/GetOperation30Min;29749 status: code: 200 message: OK - request: - body: '{"instanceIds": ["2"]}' + body: '{"instanceIds": ["3"]}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -3712,25 +3906,25 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/poweroff?skipShutdown=false&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/poweroff?skipShutdown=false&api-version=2022-03-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/a6c9e98b-46d4-4359-b178-3b4187958c5c?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3a99ab9a-1e7e-4f29-b923-fedb1e11a0d8?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 28 Oct 2021 02:49:40 GMT + - Thu, 04 Aug 2022 17:19:03 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/a6c9e98b-46d4-4359-b178-3b4187958c5c?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3a99ab9a-1e7e-4f29-b923-fedb1e11a0d8?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -3741,9 +3935,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVMScaleSet3Min;79,Microsoft.Compute/DeleteVMScaleSet30Min;398,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1193,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/DeleteVMScaleSet3Min;79,Microsoft.Compute/DeleteVMScaleSet30Min;391,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2324,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' x-ms-request-charge: - '1' status: @@ -3763,14 +3957,14 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/a6c9e98b-46d4-4359-b178-3b4187958c5c?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3a99ab9a-1e7e-4f29-b923-fedb1e11a0d8?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T02:49:41.5482189+00:00\",\r\n \"endTime\": - \"2021-10-28T02:49:52.9232639+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"a6c9e98b-46d4-4359-b178-3b4187958c5c\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:19:04.2881363+00:00\",\r\n \"endTime\": + \"2022-08-04T17:19:09.5068433+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"3a99ab9a-1e7e-4f29-b923-fedb1e11a0d8\"\r\n}" headers: cache-control: - no-cache @@ -3779,7 +3973,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:50:11 GMT + - Thu, 04 Aug 2022 17:19:33 GMT expires: - '-1' pragma: @@ -3796,7 +3990,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29934 + - Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29744 status: code: 200 message: OK @@ -3814,9 +4008,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/a6c9e98b-46d4-4359-b178-3b4187958c5c?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3a99ab9a-1e7e-4f29-b923-fedb1e11a0d8?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -3826,7 +4020,7 @@ interactions: content-length: - '0' date: - - Thu, 28 Oct 2021 02:50:11 GMT + - Thu, 04 Aug 2022 17:19:33 GMT expires: - '-1' pragma: @@ -3839,7 +4033,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29933 + - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29743 status: code: 200 message: OK @@ -3857,8 +4051,8 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -3872,7 +4066,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 02:50:12 GMT + - Thu, 04 Aug 2022 17:19:35 GMT expires: - '-1' pragma: @@ -3906,38 +4100,40 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/2/instanceView?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-03-01 response: body: - string: "{\r\n \"placementGroupId\": \"abf35d1e-e5be-417f-bd3a-5c2fdaf33657\",\r\n - \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"vmAgent\": - {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n - \ \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": - \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": - \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2021-10-28T02:50:14+00:00\"\r\n - \ }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cliylc7x7dlbshuur2s3cliylc7x7dlbshuur2s3fOS__1_a7338ed8a7d047d2842c33628fbb07c0\",\r\n + string: "{\r\n \"placementGroupId\": \"d026ef0f-b482-4884-8583-16ebe50a963b\",\r\n + \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": + \"clinqc38b000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.3.0\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": + \"Guest Agent is running\",\r\n \"time\": \"2022-08-04T17:19:03+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": + [\r\n {\r\n \"name\": \"clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_00d110bc7aaf4fbebbd4095a4a610862\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-10-28T02:49:10.485788+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-08-04T17:18:33.8976766+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {\r\n \"consoleScreenshotBlobUri\": - \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliylc7x7-193ee990-89a2-45e2-83bc-9ad098720f86/cli000003_2.193ee990-89a2-45e2-83bc-9ad098720f86.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliylc7x7-193ee990-89a2-45e2-83bc-9ad098720f86/cli000003_2.193ee990-89a2-45e2-83bc-9ad098720f86.serialconsole.log\"\r\n + \"https://cli000002.blob.core.windows.net/bootdiagnostics-clinqhzpo-c47ce47c-9b4d-461d-8f0e-b5a271ca2265/cli000003_3.c47ce47c-9b4d-461d-8f0e-b5a271ca2265.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clinqhzpo-c47ce47c-9b4d-461d-8f0e-b5a271ca2265/cli000003_3.c47ce47c-9b4d-461d-8f0e-b5a271ca2265.serialconsole.log\"\r\n \ },\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n - \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2021-10-28T02:49:52.9076556+00:00\"\r\n + \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2022-08-04T17:19:09.4756347+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/stopped\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM stopped\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '1675' + - '1699' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:50:13 GMT + - Thu, 04 Aug 2022 17:19:35 GMT expires: - '-1' pragma: @@ -3954,17 +4150,17 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;996,Microsoft.Compute/GetVMScaleSetVM30Min;4993,Microsoft.Compute/VMScaleSetVMViews3Min;4996 + - Microsoft.Compute/GetVMScaleSetVM3Min;490,Microsoft.Compute/GetVMScaleSetVM30Min;2455,Microsoft.Compute/VMScaleSetVMViews3Min;4984 x-ms-request-charge: - '1' status: code: 200 message: OK - request: - body: '{"instanceIds": ["2"]}' + body: '{"instanceIds": ["3"]}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -3978,25 +4174,25 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/start?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/start?api-version=2022-03-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b895350d-45f1-4a72-9b33-0f892288ff14?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/10e5b448-a2b8-4053-8fa4-5e07732fe234?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 28 Oct 2021 02:50:15 GMT + - Thu, 04 Aug 2022 17:19:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b895350d-45f1-4a72-9b33-0f892288ff14?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/10e5b448-a2b8-4053-8fa4-5e07732fe234?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -4007,9 +4203,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1194,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1194,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;236,Microsoft.Compute/VMScaleSetActions30Min;1179,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2322,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' x-ms-request-charge: - '1' status: @@ -4029,14 +4225,14 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b895350d-45f1-4a72-9b33-0f892288ff14?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/10e5b448-a2b8-4053-8fa4-5e07732fe234?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T02:50:16.0482595+00:00\",\r\n \"endTime\": - \"2021-10-28T02:50:19.6576709+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"b895350d-45f1-4a72-9b33-0f892288ff14\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:19:35.8816777+00:00\",\r\n \"endTime\": + \"2022-08-04T17:19:44.1785086+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"10e5b448-a2b8-4053-8fa4-5e07732fe234\"\r\n}" headers: cache-control: - no-cache @@ -4045,7 +4241,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:50:45 GMT + - Thu, 04 Aug 2022 17:20:05 GMT expires: - '-1' pragma: @@ -4062,7 +4258,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29931 + - Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29739 status: code: 200 message: OK @@ -4080,9 +4276,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b895350d-45f1-4a72-9b33-0f892288ff14?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/10e5b448-a2b8-4053-8fa4-5e07732fe234?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -4092,7 +4288,7 @@ interactions: content-length: - '0' date: - - Thu, 28 Oct 2021 02:50:45 GMT + - Thu, 04 Aug 2022 17:20:05 GMT expires: - '-1' pragma: @@ -4105,7 +4301,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29930 + - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29738 status: code: 200 message: OK @@ -4123,9 +4319,9 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n @@ -4137,35 +4333,37 @@ interactions: 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"cliyl8509\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"clinqc38b\",\r\n \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n + \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n + \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cliyl8509Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cliyl8509IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clinqc38bNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clinqc38bIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n \ }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"6a4ae39b-e2d9-409f-97f9-6433b410ba17\"\r\n }\r\n}" + false,\r\n \"uniqueId\": \"239f9fe3-2e0c-403b-8c3a-55cda6cd7b9a\",\r\n + \ \"timeCreated\": \"2022-08-04T17:10:51.2598866+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3823' + - '3595' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:50:47 GMT + - Thu, 04 Aug 2022 17:20:06 GMT expires: - '-1' pragma: @@ -4182,7 +4380,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;399,Microsoft.Compute/GetVMScaleSet30Min;2587 + - Microsoft.Compute/GetVMScaleSet3Min;383,Microsoft.Compute/GetVMScaleSet30Min;2487 status: code: 200 message: OK @@ -4191,16 +4389,17 @@ interactions: "tier": "Standard", "capacity": 2}, "properties": {"upgradePolicy": {"mode": "Manual", "rollingUpgradePolicy": {"maxBatchInstancePercent": 20, "maxUnhealthyInstancePercent": 20, "maxUnhealthyUpgradedInstancePercent": 20, "pauseTimeBetweenBatches": "PT0S"}}, - "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "cliyl8509", "adminUsername": - "azureuser", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": - {"publicKeys": [{"path": "/home/azureuser/.ssh/authorized_keys", "keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh"}]}, - "provisionVMAgent": true}, "secrets": []}, "storageProfile": {"osDisk": {"caching": - "ReadWrite", "createOption": "FromImage", "diskSizeGB": 30, "osType": "Linux", - "managedDisk": {"storageAccountType": "Premium_LRS"}}}, "networkProfile": {"networkInterfaceConfigurations": - [{"name": "cliyl8509Nic", "properties": {"primary": true, "enableAcceleratedNetworking": - false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "cliyl8509IPConfig", - "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"}, + "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "clinqc38b", "adminUsername": + "rhl", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": + {"publicKeys": [{"path": "/home/rhl/.ssh/authorized_keys", "keyData": "ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5"}]}, + "provisionVMAgent": true}, "secrets": [], "allowExtensionOperations": true}, + "storageProfile": {"osDisk": {"caching": "ReadWrite", "createOption": "FromImage", + "diskSizeGB": 30, "osType": "Linux", "managedDisk": {"storageAccountType": "Premium_LRS"}}}, + "networkProfile": {"networkInterfaceConfigurations": [{"name": "clinqc38bNic", + "properties": {"primary": true, "enableAcceleratedNetworking": false, "dnsSettings": + {"dnsServers": []}, "ipConfigurations": [{"name": "clinqc38bIPConfig", "properties": + {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"}, "privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool"}]}}], @@ -4217,15 +4416,15 @@ interactions: Connection: - keep-alive Content-Length: - - '2567' + - '2358' Content-Type: - application/json ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n @@ -4237,39 +4436,41 @@ interactions: 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"cliyl8509\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"clinqc38b\",\r\n \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n + \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n + \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cliyl8509Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cliyl8509IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clinqc38bNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clinqc38bIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n \ }\r\n }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \ \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"6a4ae39b-e2d9-409f-97f9-6433b410ba17\"\r\n }\r\n}" + false,\r\n \"uniqueId\": \"239f9fe3-2e0c-403b-8c3a-55cda6cd7b9a\",\r\n + \ \"timeCreated\": \"2022-08-04T17:10:51.2598866+00:00\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/dfb56723-2fb0-4d98-97e7-59923f9fa099?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/5c3a3ee3-26fb-4b32-bb36-bd7c71317d8a?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - - '3823' + - '3595' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:50:53 GMT + - Thu, 04 Aug 2022 17:20:08 GMT expires: - '-1' pragma: @@ -4286,9 +4487,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;296,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/CreateVMScaleSet3Min;113,Microsoft.Compute/CreateVMScaleSet30Min;563,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1198' x-ms-request-charge: - '0' status: @@ -4308,23 +4509,23 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/dfb56723-2fb0-4d98-97e7-59923f9fa099?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/5c3a3ee3-26fb-4b32-bb36-bd7c71317d8a?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T02:50:52.0326417+00:00\",\r\n \"endTime\": - \"2021-10-28T02:50:52.1889056+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"dfb56723-2fb0-4d98-97e7-59923f9fa099\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:20:08.9283778+00:00\",\r\n \"endTime\": + \"2022-08-04T17:20:09.084623+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"5c3a3ee3-26fb-4b32-bb36-bd7c71317d8a\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:51:03 GMT + - Thu, 04 Aug 2022 17:20:18 GMT expires: - '-1' pragma: @@ -4341,7 +4542,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29928 + - Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29737 status: code: 200 message: OK @@ -4359,9 +4560,9 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n @@ -4373,35 +4574,37 @@ interactions: 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"cliyl8509\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"clinqc38b\",\r\n \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n + \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n + \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cliyl8509Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cliyl8509IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clinqc38bNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clinqc38bIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n \ }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"6a4ae39b-e2d9-409f-97f9-6433b410ba17\"\r\n }\r\n}" + false,\r\n \"uniqueId\": \"239f9fe3-2e0c-403b-8c3a-55cda6cd7b9a\",\r\n + \ \"timeCreated\": \"2022-08-04T17:10:51.2598866+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3824' + - '3596' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:51:03 GMT + - Thu, 04 Aug 2022 17:20:18 GMT expires: - '-1' pragma: @@ -4418,7 +4621,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;396,Microsoft.Compute/GetVMScaleSet30Min;2584 + - Microsoft.Compute/GetVMScaleSet3Min;379,Microsoft.Compute/GetVMScaleSet30Min;2483 status: code: 200 message: OK @@ -4436,8 +4639,8 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -4451,7 +4654,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 02:51:05 GMT + - Thu, 04 Aug 2022 17:20:19 GMT expires: - '-1' pragma: @@ -4485,40 +4688,40 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/2/instanceView?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-03-01 response: body: - string: "{\r\n \"placementGroupId\": \"abf35d1e-e5be-417f-bd3a-5c2fdaf33657\",\r\n + string: "{\r\n \"placementGroupId\": \"d026ef0f-b482-4884-8583-16ebe50a963b\",\r\n \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": - \"cliyl8509000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.5.0.2\",\r\n \"statuses\": + \"clinqc38b000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.3.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2021-10-28T02:50:40+00:00\"\r\n + \"Guest Agent is running\",\r\n \"time\": \"2022-08-04T17:20:07+00:00\"\r\n \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"cliylc7x7dlbshuur2s3cliylc7x7dlbshuur2s3fOS__1_a7338ed8a7d047d2842c33628fbb07c0\",\r\n + [\r\n {\r\n \"name\": \"clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_00d110bc7aaf4fbebbd4095a4a610862\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-10-28T02:49:10.485788+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-08-04T17:18:33.8976766+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {\r\n \"consoleScreenshotBlobUri\": - \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliylc7x7-193ee990-89a2-45e2-83bc-9ad098720f86/cli000003_2.193ee990-89a2-45e2-83bc-9ad098720f86.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliylc7x7-193ee990-89a2-45e2-83bc-9ad098720f86/cli000003_2.193ee990-89a2-45e2-83bc-9ad098720f86.serialconsole.log\"\r\n + \"https://cli000002.blob.core.windows.net/bootdiagnostics-clinqhzpo-c47ce47c-9b4d-461d-8f0e-b5a271ca2265/cli000003_3.c47ce47c-9b4d-461d-8f0e-b5a271ca2265.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clinqhzpo-c47ce47c-9b4d-461d-8f0e-b5a271ca2265/cli000003_3.c47ce47c-9b4d-461d-8f0e-b5a271ca2265.serialconsole.log\"\r\n \ },\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n - \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2021-10-28T02:50:19.6263883+00:00\"\r\n + \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2022-08-04T17:19:44.1628937+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '1758' + - '1699' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:51:06 GMT + - Thu, 04 Aug 2022 17:20:20 GMT expires: - '-1' pragma: @@ -4535,17 +4738,17 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;997,Microsoft.Compute/GetVMScaleSetVM30Min;4992,Microsoft.Compute/VMScaleSetVMViews3Min;4997 + - Microsoft.Compute/GetVMScaleSetVM3Min;490,Microsoft.Compute/GetVMScaleSetVM30Min;2454,Microsoft.Compute/VMScaleSetVMViews3Min;4984 x-ms-request-charge: - '1' status: code: 200 message: OK - request: - body: '{"instanceIds": ["2"]}' + body: '{"instanceIds": ["3"]}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -4559,25 +4762,25 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/manualupgrade?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/manualupgrade?api-version=2022-03-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ca404070-cf1d-4004-98d9-542c2536b9de?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/03de0886-4d01-4fcf-9950-acda6f1e833f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 28 Oct 2021 02:51:09 GMT + - Thu, 04 Aug 2022 17:20:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ca404070-cf1d-4004-98d9-542c2536b9de?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/03de0886-4d01-4fcf-9950-acda6f1e833f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -4588,9 +4791,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;237,Microsoft.Compute/VMScaleSetActions30Min;1193,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1194,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;235,Microsoft.Compute/VMScaleSetActions30Min;1178,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2324,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-ms-request-charge: - '1' status: @@ -4610,64 +4813,14 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ca404070-cf1d-4004-98d9-542c2536b9de?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/03de0886-4d01-4fcf-9950-acda6f1e833f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T02:51:09.3138798+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"ca404070-cf1d-4004-98d9-542c2536b9de\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 28 Oct 2021 02:51:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29926 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vmss update-instances - Connection: - - keep-alive - ParameterSetName: - - -g -n --instance-ids - User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ca404070-cf1d-4004-98d9-542c2536b9de?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-10-28T02:51:09.3138798+00:00\",\r\n \"endTime\": - \"2021-10-28T02:51:39.7982688+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"ca404070-cf1d-4004-98d9-542c2536b9de\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:20:20.6470228+00:00\",\r\n \"endTime\": + \"2022-08-04T17:20:25.8657649+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"03de0886-4d01-4fcf-9950-acda6f1e833f\"\r\n}" headers: cache-control: - no-cache @@ -4676,7 +4829,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:52:10 GMT + - Thu, 04 Aug 2022 17:20:50 GMT expires: - '-1' pragma: @@ -4693,7 +4846,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29924 + - Microsoft.Compute/GetOperation3Min;14965,Microsoft.Compute/GetOperation30Min;29732 status: code: 200 message: OK @@ -4711,9 +4864,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ca404070-cf1d-4004-98d9-542c2536b9de?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/03de0886-4d01-4fcf-9950-acda6f1e833f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -4723,7 +4876,7 @@ interactions: content-length: - '0' date: - - Thu, 28 Oct 2021 02:52:10 GMT + - Thu, 04 Aug 2022 17:20:50 GMT expires: - '-1' pragma: @@ -4736,7 +4889,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29923 + - Microsoft.Compute/GetOperation3Min;14964,Microsoft.Compute/GetOperation30Min;29731 status: code: 200 message: OK @@ -4754,8 +4907,8 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -4769,7 +4922,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 02:52:11 GMT + - Thu, 04 Aug 2022 17:20:51 GMT expires: - '-1' pragma: @@ -4803,38 +4956,38 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/2/instanceView?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-03-01 response: body: - string: "{\r\n \"placementGroupId\": \"abf35d1e-e5be-417f-bd3a-5c2fdaf33657\",\r\n + string: "{\r\n \"placementGroupId\": \"d026ef0f-b482-4884-8583-16ebe50a963b\",\r\n \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": - \"cliyl8509000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.5.0.2\",\r\n \"statuses\": + \"clinqc38b000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.3.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2021-10-28T02:51:40+00:00\"\r\n + \"Guest Agent is running\",\r\n \"time\": \"2022-08-04T17:20:26+00:00\"\r\n \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"cliylc7x7dlbshuur2s3cliylc7x7dlbshuur2s3fOS__1_a7338ed8a7d047d2842c33628fbb07c0\",\r\n + [\r\n {\r\n \"name\": \"clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_00d110bc7aaf4fbebbd4095a4a610862\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-10-28T02:49:10.485788+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-08-04T17:18:33.8976766+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2021-10-28T02:51:39.7669747+00:00\"\r\n },\r\n {\r\n + \ \"time\": \"2022-08-04T17:20:25.8188856+00:00\"\r\n },\r\n {\r\n \ \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \ \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '1261' + - '1262' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:52:13 GMT + - Thu, 04 Aug 2022 17:20:51 GMT expires: - '-1' pragma: @@ -4851,7 +5004,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;997,Microsoft.Compute/GetVMScaleSetVM30Min;4991,Microsoft.Compute/VMScaleSetVMViews3Min;4997 + - Microsoft.Compute/GetVMScaleSetVM3Min;487,Microsoft.Compute/GetVMScaleSetVM30Min;2450,Microsoft.Compute/VMScaleSetVMViews3Min;4983 x-ms-request-charge: - '1' status: @@ -4861,7 +5014,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -4873,25 +5026,25 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/2/deallocate?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/deallocate?api-version=2022-03-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b312e721-af47-4f55-a306-ef783e20e75e?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/903b6095-5bc8-4c09-aded-64300145e321?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 28 Oct 2021 02:52:14 GMT + - Thu, 04 Aug 2022 17:20:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b312e721-af47-4f55-a306-ef783e20e75e?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/903b6095-5bc8-4c09-aded-64300145e321?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -4902,9 +5055,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVMScaleSetVM3Min;239,Microsoft.Compute/DeleteVMScaleSetVM30Min;1197,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1194,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/DeleteVMScaleSetVM3Min;239,Microsoft.Compute/DeleteVMScaleSetVM30Min;1194,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2234,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' x-ms-request-charge: - '1' status: @@ -4924,13 +5077,13 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b312e721-af47-4f55-a306-ef783e20e75e?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/903b6095-5bc8-4c09-aded-64300145e321?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T02:52:14.7825409+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"b312e721-af47-4f55-a306-ef783e20e75e\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:20:53.1312236+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"903b6095-5bc8-4c09-aded-64300145e321\"\r\n}" headers: cache-control: - no-cache @@ -4939,7 +5092,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:52:44 GMT + - Thu, 04 Aug 2022 17:21:22 GMT expires: - '-1' pragma: @@ -4956,7 +5109,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29921 + - Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29729 status: code: 200 message: OK @@ -4974,14 +5127,14 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b312e721-af47-4f55-a306-ef783e20e75e?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/903b6095-5bc8-4c09-aded-64300145e321?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T02:52:14.7825409+00:00\",\r\n \"endTime\": - \"2021-10-28T02:53:03.9855673+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"b312e721-af47-4f55-a306-ef783e20e75e\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:20:53.1312236+00:00\",\r\n \"endTime\": + \"2022-08-04T17:21:40.8028128+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"903b6095-5bc8-4c09-aded-64300145e321\"\r\n}" headers: cache-control: - no-cache @@ -4990,7 +5143,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:53:15 GMT + - Thu, 04 Aug 2022 17:21:53 GMT expires: - '-1' pragma: @@ -5007,7 +5160,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29918 + - Microsoft.Compute/GetOperation3Min;14974,Microsoft.Compute/GetOperation30Min;29726 status: code: 200 message: OK @@ -5025,9 +5178,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b312e721-af47-4f55-a306-ef783e20e75e?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/903b6095-5bc8-4c09-aded-64300145e321?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -5037,7 +5190,7 @@ interactions: content-length: - '0' date: - - Thu, 28 Oct 2021 02:53:15 GMT + - Thu, 04 Aug 2022 17:21:53 GMT expires: - '-1' pragma: @@ -5050,7 +5203,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29917 + - Microsoft.Compute/GetOperation3Min;14973,Microsoft.Compute/GetOperation30Min;29725 status: code: 200 message: OK @@ -5068,8 +5221,8 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -5083,7 +5236,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 02:53:17 GMT + - Thu, 04 Aug 2022 17:21:53 GMT expires: - '-1' pragma: @@ -5117,21 +5270,21 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/2/instanceView?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-03-01 response: body: - string: "{\r\n \"placementGroupId\": \"abf35d1e-e5be-417f-bd3a-5c2fdaf33657\",\r\n + string: "{\r\n \"placementGroupId\": \"d026ef0f-b482-4884-8583-16ebe50a963b\",\r\n \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"disks\": - [\r\n {\r\n \"name\": \"cliylc7x7dlbshuur2s3cliylc7x7dlbshuur2s3fOS__1_a7338ed8a7d047d2842c33628fbb07c0\",\r\n + [\r\n {\r\n \"name\": \"clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_00d110bc7aaf4fbebbd4095a4a610862\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-10-28T02:53:03.7980989+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-08-04T17:21:40.6465621+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2021-10-28T02:53:03.8293541+00:00\"\r\n },\r\n {\r\n + \ \"time\": \"2022-08-04T17:21:40.6621708+00:00\"\r\n },\r\n {\r\n \ \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \ \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n}" headers: @@ -5142,7 +5295,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:53:18 GMT + - Thu, 04 Aug 2022 17:21:53 GMT expires: - '-1' pragma: @@ -5159,17 +5312,17 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;997,Microsoft.Compute/GetVMScaleSetVM30Min;4990,Microsoft.Compute/VMScaleSetVMViews3Min;4997 + - Microsoft.Compute/GetVMScaleSetVM3Min;484,Microsoft.Compute/GetVMScaleSetVM30Min;2446,Microsoft.Compute/VMScaleSetVMViews3Min;4980 x-ms-request-charge: - '1' status: code: 200 message: OK - request: - body: '{"instanceIds": ["2"]}' + body: '{"instanceIds": ["3"]}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -5183,25 +5336,25 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/start?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/start?api-version=2022-03-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/fda89acb-c772-4679-976e-3ccf50e04321?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ce4de450-4935-456d-8c81-df3ff06533a9?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 28 Oct 2021 02:53:19 GMT + - Thu, 04 Aug 2022 17:21:54 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/fda89acb-c772-4679-976e-3ccf50e04321?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ce4de450-4935-456d-8c81-df3ff06533a9?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -5212,9 +5365,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1192,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1194,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;236,Microsoft.Compute/VMScaleSetActions30Min;1177,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2235,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1197' x-ms-request-charge: - '1' status: @@ -5234,14 +5387,14 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/fda89acb-c772-4679-976e-3ccf50e04321?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ce4de450-4935-456d-8c81-df3ff06533a9?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T02:53:20.4542284+00:00\",\r\n \"endTime\": - \"2021-10-28T02:53:33.9229409+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"fda89acb-c772-4679-976e-3ccf50e04321\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:21:55.0995667+00:00\",\r\n \"endTime\": + \"2022-08-04T17:22:12.6150939+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"ce4de450-4935-456d-8c81-df3ff06533a9\"\r\n}" headers: cache-control: - no-cache @@ -5250,7 +5403,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:53:50 GMT + - Thu, 04 Aug 2022 17:22:24 GMT expires: - '-1' pragma: @@ -5267,7 +5420,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29914 + - Microsoft.Compute/GetOperation3Min;14973,Microsoft.Compute/GetOperation30Min;29720 status: code: 200 message: OK @@ -5285,9 +5438,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/fda89acb-c772-4679-976e-3ccf50e04321?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ce4de450-4935-456d-8c81-df3ff06533a9?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -5297,7 +5450,7 @@ interactions: content-length: - '0' date: - - Thu, 28 Oct 2021 02:53:50 GMT + - Thu, 04 Aug 2022 17:22:24 GMT expires: - '-1' pragma: @@ -5310,7 +5463,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29913 + - Microsoft.Compute/GetOperation3Min;14971,Microsoft.Compute/GetOperation30Min;29718 status: code: 200 message: OK @@ -5328,9 +5481,9 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n @@ -5342,35 +5495,37 @@ interactions: 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"cliyl8509\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"clinqc38b\",\r\n \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n + \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n + \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cliyl8509Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cliyl8509IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clinqc38bNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clinqc38bIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n \ }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"6a4ae39b-e2d9-409f-97f9-6433b410ba17\"\r\n }\r\n}" + false,\r\n \"uniqueId\": \"239f9fe3-2e0c-403b-8c3a-55cda6cd7b9a\",\r\n + \ \"timeCreated\": \"2022-08-04T17:10:51.2598866+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3824' + - '3596' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:53:52 GMT + - Thu, 04 Aug 2022 17:22:26 GMT expires: - '-1' pragma: @@ -5387,7 +5542,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;396,Microsoft.Compute/GetVMScaleSet30Min;2581 + - Microsoft.Compute/GetVMScaleSet3Min;387,Microsoft.Compute/GetVMScaleSet30Min;2477 status: code: 200 message: OK @@ -5396,16 +5551,17 @@ interactions: "tier": "Standard", "capacity": 2}, "properties": {"upgradePolicy": {"mode": "Manual", "rollingUpgradePolicy": {"maxBatchInstancePercent": 20, "maxUnhealthyInstancePercent": 20, "maxUnhealthyUpgradedInstancePercent": 20, "pauseTimeBetweenBatches": "PT0S"}}, - "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "cliyl8509", "adminUsername": - "azureuser", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": - {"publicKeys": [{"path": "/home/azureuser/.ssh/authorized_keys", "keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh"}]}, - "provisionVMAgent": true}, "secrets": []}, "storageProfile": {"osDisk": {"caching": - "ReadWrite", "createOption": "FromImage", "diskSizeGB": 30, "osType": "Linux", - "managedDisk": {"storageAccountType": "Premium_LRS"}}}, "networkProfile": {"networkInterfaceConfigurations": - [{"name": "cliyl8509Nic", "properties": {"primary": true, "enableAcceleratedNetworking": - false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "cliyl8509IPConfig", - "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"}, + "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "clinqc38b", "adminUsername": + "rhl", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": + {"publicKeys": [{"path": "/home/rhl/.ssh/authorized_keys", "keyData": "ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5"}]}, + "provisionVMAgent": true}, "secrets": [], "allowExtensionOperations": true}, + "storageProfile": {"osDisk": {"caching": "ReadWrite", "createOption": "FromImage", + "diskSizeGB": 30, "osType": "Linux", "managedDisk": {"storageAccountType": "Premium_LRS"}}}, + "networkProfile": {"networkInterfaceConfigurations": [{"name": "clinqc38bNic", + "properties": {"primary": true, "enableAcceleratedNetworking": false, "dnsSettings": + {"dnsServers": []}, "ipConfigurations": [{"name": "clinqc38bIPConfig", "properties": + {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"}, "privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool"}]}}], @@ -5422,15 +5578,15 @@ interactions: Connection: - keep-alive Content-Length: - - '2566' + - '2357' Content-Type: - application/json ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n @@ -5442,38 +5598,40 @@ interactions: 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"cliyl8509\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"clinqc38b\",\r\n \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n + \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n + \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cliyl8509Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cliyl8509IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clinqc38bNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clinqc38bIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true\r\n }\r\n }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \ \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"6a4ae39b-e2d9-409f-97f9-6433b410ba17\"\r\n }\r\n}" + false,\r\n \"uniqueId\": \"239f9fe3-2e0c-403b-8c3a-55cda6cd7b9a\",\r\n + \ \"timeCreated\": \"2022-08-04T17:10:51.2598866+00:00\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b1c0f11a-b7f6-434c-b41c-1ec87a3f82bc?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d54e9cdd-9671-44b5-9599-b2bb63d31fc0?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - - '3738' + - '3525' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:53:57 GMT + - Thu, 04 Aug 2022 17:22:28 GMT expires: - '-1' pragma: @@ -5490,9 +5648,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;295,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/CreateVMScaleSet3Min;110,Microsoft.Compute/CreateVMScaleSet30Min;540,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1198' x-ms-request-charge: - '0' status: @@ -5512,14 +5670,14 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b1c0f11a-b7f6-434c-b41c-1ec87a3f82bc?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d54e9cdd-9671-44b5-9599-b2bb63d31fc0?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T02:53:56.0479561+00:00\",\r\n \"endTime\": - \"2021-10-28T02:53:56.2043461+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"b1c0f11a-b7f6-434c-b41c-1ec87a3f82bc\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:22:28.0525063+00:00\",\r\n \"endTime\": + \"2022-08-04T17:22:28.1778164+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"d54e9cdd-9671-44b5-9599-b2bb63d31fc0\"\r\n}" headers: cache-control: - no-cache @@ -5528,7 +5686,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:54:07 GMT + - Thu, 04 Aug 2022 17:22:38 GMT expires: - '-1' pragma: @@ -5545,7 +5703,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29911 + - Microsoft.Compute/GetOperation3Min;14975,Microsoft.Compute/GetOperation30Min;29715 status: code: 200 message: OK @@ -5563,9 +5721,9 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n @@ -5577,34 +5735,36 @@ interactions: 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"cliyl8509\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"clinqc38b\",\r\n \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n + \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n + \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cliyl8509Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cliyl8509IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clinqc38bNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clinqc38bIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true\r\n }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"6a4ae39b-e2d9-409f-97f9-6433b410ba17\"\r\n }\r\n}" + false,\r\n \"uniqueId\": \"239f9fe3-2e0c-403b-8c3a-55cda6cd7b9a\",\r\n + \ \"timeCreated\": \"2022-08-04T17:10:51.2598866+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3739' + - '3526' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:54:08 GMT + - Thu, 04 Aug 2022 17:22:38 GMT expires: - '-1' pragma: @@ -5621,7 +5781,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;394,Microsoft.Compute/GetVMScaleSet30Min;2578 + - Microsoft.Compute/GetVMScaleSet3Min;386,Microsoft.Compute/GetVMScaleSet30Min;2474 status: code: 200 message: OK @@ -5639,8 +5799,8 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -5654,7 +5814,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 02:54:09 GMT + - Thu, 04 Aug 2022 17:22:38 GMT expires: - '-1' pragma: @@ -5688,38 +5848,38 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/2/instanceView?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-03-01 response: body: - string: "{\r\n \"placementGroupId\": \"abf35d1e-e5be-417f-bd3a-5c2fdaf33657\",\r\n + string: "{\r\n \"placementGroupId\": \"d026ef0f-b482-4884-8583-16ebe50a963b\",\r\n \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": - \"cliyl8509000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.5.0.2\",\r\n \"statuses\": + \"clinqc38b000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.3.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2021-10-28T02:53:53+00:00\"\r\n + \"Guest Agent is running\",\r\n \"time\": \"2022-08-04T17:22:30+00:00\"\r\n \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"cliylc7x7dlbshuur2s3cliylc7x7dlbshuur2s3fOS__1_a7338ed8a7d047d2842c33628fbb07c0\",\r\n + [\r\n {\r\n \"name\": \"clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_00d110bc7aaf4fbebbd4095a4a610862\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-10-28T02:53:21.0167701+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-08-04T17:21:55.7245758+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2021-10-28T02:53:33.8917211+00:00\"\r\n },\r\n {\r\n + \ \"time\": \"2022-08-04T17:22:12.599487+00:00\"\r\n },\r\n {\r\n \ \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \ \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '1262' + - '1261' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:54:12 GMT + - Thu, 04 Aug 2022 17:22:38 GMT expires: - '-1' pragma: @@ -5736,17 +5896,17 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;997,Microsoft.Compute/GetVMScaleSetVM30Min;4989,Microsoft.Compute/VMScaleSetVMViews3Min;4997 + - Microsoft.Compute/GetVMScaleSetVM3Min;490,Microsoft.Compute/GetVMScaleSetVM30Min;2445,Microsoft.Compute/VMScaleSetVMViews3Min;4990 x-ms-request-charge: - '1' status: code: 200 message: OK - request: - body: '{"instanceIds": ["2"]}' + body: '{"instanceIds": ["3"]}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -5760,25 +5920,25 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/manualupgrade?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/manualupgrade?api-version=2022-03-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/7730bce7-e9f1-49ab-81dd-ffcb03b6e0b2?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f6b82fdb-efc7-4b6d-88ec-6fd59c4654e9?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 28 Oct 2021 02:54:13 GMT + - Thu, 04 Aug 2022 17:22:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/7730bce7-e9f1-49ab-81dd-ffcb03b6e0b2?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f6b82fdb-efc7-4b6d-88ec-6fd59c4654e9?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -5789,9 +5949,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1191,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1195,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;237,Microsoft.Compute/VMScaleSetActions30Min;1176,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2238,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' x-ms-request-charge: - '1' status: @@ -5811,23 +5971,23 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/7730bce7-e9f1-49ab-81dd-ffcb03b6e0b2?p=86787c75-ed5e-4503-9048-66d86936d980&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f6b82fdb-efc7-4b6d-88ec-6fd59c4654e9?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-10-28T02:54:13.6729634+00:00\",\r\n \"endTime\": - \"2021-10-28T02:54:24.5011055+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"7730bce7-e9f1-49ab-81dd-ffcb03b6e0b2\"\r\n}" + string: "{\r\n \"startTime\": \"2022-08-04T17:22:39.9587222+00:00\",\r\n \"endTime\": + \"2022-08-04T17:22:48.099251+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"f6b82fdb-efc7-4b6d-88ec-6fd59c4654e9\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:54:43 GMT + - Thu, 04 Aug 2022 17:23:09 GMT expires: - '-1' pragma: @@ -5844,7 +6004,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29909 + - Microsoft.Compute/GetOperation3Min;14978,Microsoft.Compute/GetOperation30Min;29713 status: code: 200 message: OK @@ -5862,9 +6022,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/7730bce7-e9f1-49ab-81dd-ffcb03b6e0b2?p=86787c75-ed5e-4503-9048-66d86936d980&monitor=true&api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f6b82fdb-efc7-4b6d-88ec-6fd59c4654e9?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -5874,7 +6034,7 @@ interactions: content-length: - '0' date: - - Thu, 28 Oct 2021 02:54:44 GMT + - Thu, 04 Aug 2022 17:23:09 GMT expires: - '-1' pragma: @@ -5887,7 +6047,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29908 + - Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29712 status: code: 200 message: OK @@ -5905,8 +6065,8 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -5920,7 +6080,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 28 Oct 2021 02:54:45 GMT + - Thu, 04 Aug 2022 17:23:10 GMT expires: - '-1' pragma: @@ -5954,38 +6114,38 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-compute/23.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/2/instanceView?api-version=2021-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-03-01 response: body: - string: "{\r\n \"placementGroupId\": \"abf35d1e-e5be-417f-bd3a-5c2fdaf33657\",\r\n + string: "{\r\n \"placementGroupId\": \"d026ef0f-b482-4884-8583-16ebe50a963b\",\r\n \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": - \"cliyl8509000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.5.0.2\",\r\n \"statuses\": + \"clinqc38b000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.3.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2021-10-28T02:54:23+00:00\"\r\n + \"Guest Agent is running\",\r\n \"time\": \"2022-08-04T17:22:48+00:00\"\r\n \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"cliylc7x7dlbshuur2s3cliylc7x7dlbshuur2s3fOS__1_a7338ed8a7d047d2842c33628fbb07c0\",\r\n + [\r\n {\r\n \"name\": \"clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_00d110bc7aaf4fbebbd4095a4a610862\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-10-28T02:54:14.516692+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-08-04T17:22:40.8024299+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {},\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2021-10-28T02:54:24.4541841+00:00\"\r\n },\r\n {\r\n + \ \"time\": \"2022-08-04T17:22:48.0523799+00:00\"\r\n },\r\n {\r\n \ \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \ \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '1287' + - '1288' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 02:54:47 GMT + - Thu, 04 Aug 2022 17:23:10 GMT expires: - '-1' pragma: @@ -6002,7 +6162,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;996,Microsoft.Compute/GetVMScaleSetVM30Min;4988,Microsoft.Compute/VMScaleSetVMViews3Min;4996 + - Microsoft.Compute/GetVMScaleSetVM3Min;490,Microsoft.Compute/GetVMScaleSetVM30Min;2444,Microsoft.Compute/VMScaleSetVMViews3Min;4990 x-ms-request-charge: - '1' status: diff --git a/src/serial-console/azext_serialconsole/tests/latest/recordings/test_enable_disable.yaml b/src/serial-console/azext_serialconsole/tests/latest/recordings/test_enable_disable.yaml index 477b881555b..bc7c3673474 100644 --- a/src/serial-console/azext_serialconsole/tests/latest/recordings/test_enable_disable.yaml +++ b/src/serial-console/azext_serialconsole/tests/latest/recordings/test_enable_disable.yaml @@ -15,8 +15,8 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 - (Windows-10-10.0.19042-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default/disableConsole?api-version=2018-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Mon, 02 Aug 2021 18:41:04 GMT + - Thu, 04 Aug 2022 17:10:07 GMT expires: - '-1' pragma: @@ -48,7 +48,7 @@ interactions: x-frame-options: - deny x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -68,8 +68,8 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 - (Windows-10-10.0.19042-SP0) + - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default/enableConsole?api-version=2018-05-01 response: @@ -83,7 +83,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Mon, 02 Aug 2021 18:41:04 GMT + - Thu, 04 Aug 2022 17:10:07 GMT expires: - '-1' pragma: @@ -101,7 +101,7 @@ interactions: x-frame-options: - deny x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK diff --git a/src/serial-console/azext_serialconsole/tests/latest/test_serialconsole_scenario.py b/src/serial-console/azext_serialconsole/tests/latest/test_serialconsole_scenario.py index d8cbd93dc0f..04d614fc855 100644 --- a/src/serial-console/azext_serialconsole/tests/latest/test_serialconsole_scenario.py +++ b/src/serial-console/azext_serialconsole/tests/latest/test_serialconsole_scenario.py @@ -51,8 +51,7 @@ def test_check_resource_VMSS(self, resource_group, storage_account): self.cmd('az vmss update --name {name} --resource-group {rg} --set virtualMachineProfile.diagnosticsProfile="{{\\"bootDiagnostics\\": {{\\"Enabled\\" : \\"True\\",\\"StorageUri\\" : null}}}}"') self.cmd('az vmss update-instances -g {rg} -n {name} --instance-ids {id}') - with self.assertRaises(AzureConnectionError): - check_resource(self.cli_ctx, resource_group, name, iid) + check_resource(self.cli_ctx, resource_group, name, iid) self.cmd('az vmss deallocate -g {rg} -n {name} --instance-ids {id}') @@ -62,8 +61,7 @@ def test_check_resource_VMSS(self, resource_group, storage_account): self.cmd('az vmss start -g {rg} -n {name} --instance-ids {id}') self.cmd('az vmss stop -g {rg} -n {name} --instance-ids {id}') - with self.assertRaises(AzureConnectionError): - check_resource(self.cli_ctx, resource_group, name, iid) + check_resource(self.cli_ctx, resource_group, name, iid) self.cmd('az vmss start -g {rg} -n {name} --instance-ids {id}') self.cmd('az vmss update --name {name} --resource-group {rg} --set virtualMachineProfile.diagnosticsProfile="{{\\"bootDiagnostics\\": {{\\"Enabled\\" : \\"True\\",\\"StorageUri\\":\\"https://{sa}.blob.core.windows.net/\\"}}}}"') @@ -113,8 +111,7 @@ def test_check_resource_VMSS(self, resource_group, storage_account): self.cmd('az vmss update-instances -g {rg} -n {name} --instance-ids {id}') - with self.assertRaises(AzureConnectionError): - check_resource(self.cli_ctx, resource_group, name, iid) + check_resource(self.cli_ctx, resource_group, name, iid) @ResourceGroupPreparer(name_prefix='cli_test_serialconsole', location='westus2') @StorageAccountPreparer(name_prefix='cli', location="westus2") @@ -141,8 +138,7 @@ def test_check_resource_VM(self, resource_group, storage_account): self.cmd('az vm boot-diagnostics enable -g {rg} -n {name}') - with self.assertRaises(AzureConnectionError): - check_resource(self.cli_ctx, resource_group, name, None) + check_resource(self.cli_ctx, resource_group, name, None) self.cmd('az vm deallocate -g {rg} -n {name}') @@ -152,8 +148,7 @@ def test_check_resource_VM(self, resource_group, storage_account): self.cmd('az vm start -g {rg} -n {name}') self.cmd('az vm stop -g {rg} -n {name}') - with self.assertRaises(AzureConnectionError): - check_resource(self.cli_ctx, resource_group, name, None) + check_resource(self.cli_ctx, resource_group, name, None) self.cmd('az vm boot-diagnostics disable -g {rg} -n {name}') diff --git a/src/serial-console/setup.py b/src/serial-console/setup.py index 1b52e4e8db0..3bded74de4a 100644 --- a/src/serial-console/setup.py +++ b/src/serial-console/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.1.1' +VERSION = '0.1.2' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers From 5e28c10631113f30abe8a9db0b0842eb17ec47e2 Mon Sep 17 00:00:00 2001 From: Azure CLI Bot Date: Mon, 8 Aug 2022 11:06:02 +0800 Subject: [PATCH 3/7] [Release] Update index.json for extension [ serial-console ] (#5210) Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_ID=1763768 Last commit: https://github.com/Azure/azure-cli-extensions/commit/ec39c71193f6735f25f7caa43975ca60988bd515 --- src/index.json | 51 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/src/index.json b/src/index.json index 06b3afb2234..d44495fa8d0 100644 --- a/src/index.json +++ b/src/index.json @@ -31323,6 +31323,57 @@ "version": "0.1.1" }, "sha256Digest": "082f315c9cdf5887987f12d6e27645101ea8318003a8d60c24dc630c861ebc97" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/serial_console-0.1.2-py3-none-any.whl", + "filename": "serial_console-0.1.2-py3-none-any.whl", + "metadata": { + "azext.isPreview": true, + "azext.minCliCoreVersion": "2.15.0", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "azpycli@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions/tree/main/src/serialconsole" + } + } + }, + "extras": [], + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "serial-console", + "run_requires": [ + { + "requires": [ + "websocket-client (~=0.56.0)" + ] + } + ], + "summary": "Microsoft Azure Command-Line Tools for Serial Console Extension", + "version": "0.1.2" + }, + "sha256Digest": "51493fe5617f90d06f5e4493b81a85b5d664f80c264941d4e6f5ca5f3473dc57" } ], "spring": [ From 81a661fa21d9ac644d944a0ee7210bd7f7bdb455 Mon Sep 17 00:00:00 2001 From: Azure CLI Bot Date: Mon, 8 Aug 2022 11:06:18 +0800 Subject: [PATCH 4/7] [Release] Update index.json for extension [ amg ] (#5209) Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_ID=1763756 Last commit: https://github.com/Azure/azure-cli-extensions/commit/37befebf76f21ac1b278959705060454e12b9b2c --- src/index.json | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/src/index.json b/src/index.json index d44495fa8d0..d766f52b740 100644 --- a/src/index.json +++ b/src/index.json @@ -6641,6 +6641,50 @@ "version": "0.1.3" }, "sha256Digest": "81e5bffefbb991136eaa19ab5175ff33ca8edec31b38c615ef2ffcaee80f5725" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/amg-0.2.0-py3-none-any.whl", + "filename": "amg-0.2.0-py3-none-any.whl", + "metadata": { + "azext.isPreview": true, + "azext.maxCliCoreVersion": "2.99.0", + "azext.minCliCoreVersion": "2.38.0", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "ad4g@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions/tree/master/src/amg" + } + } + }, + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "amg", + "summary": "Microsoft Azure Command-Line Tools Azure Managed Grafana Extension", + "version": "0.2.0" + }, + "sha256Digest": "05b53c3e894a7f776251d2e5854c16e30cb6f5755d1e67e52fbcc5815f428d61" } ], "application-insights": [ From a5396efdf57cdeda610cadebdad470a786c2f2ae Mon Sep 17 00:00:00 2001 From: Zeng Taoxu <96050289+ZengTaoxu@users.noreply.github.com> Date: Mon, 8 Aug 2022 11:11:17 +0800 Subject: [PATCH 5/7] [AzureFirewall] Update help message (#5211) * Update _help.py --- src/azure-firewall/azext_firewall/_help.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/azure-firewall/azext_firewall/_help.py b/src/azure-firewall/azext_firewall/_help.py index 75bdf15def2..31b33fce2cf 100644 --- a/src/azure-firewall/azext_firewall/_help.py +++ b/src/azure-firewall/azext_firewall/_help.py @@ -405,6 +405,11 @@ short-summary: Add a filter collection into an Azure firewall policy rule collection group. long-summary: | Common Rule Arguments are used for both Network rule and Application rule. If you want to add more rules into filter collection, please use "az network policy rule-collection-group collection rule add/remove" + parameters: + - name: --destination-ports + short-summary: Space-separated list of destination ports. This argument is supported for Nat and Network Rule. + long-summary: | + Notice: When the parameter --rule-name is 'network_rule', --destination-ports is required. examples: - name: Add a filter collection with Network rule into the rule collection group text: az network firewall policy rule-collection-group collection add-filter-collection -g {rg} --policy-name {policy} --rule-collection-group-name {collectiongroup} From d4ffc4100d82af66c4f88e9401397c66b85bd501 Mon Sep 17 00:00:00 2001 From: Bavneet Singh <33008256+bavneetsingh16@users.noreply.github.com> Date: Mon, 8 Aug 2022 23:09:14 -0700 Subject: [PATCH 6/7] [k8s-extension] Update extension CLI to v1.3.0 (#5204) --- src/k8s-extension/HISTORY.rst | 4 +++ .../azext_k8s_extension/_params.py | 7 ++-- .../azext_k8s_extension/consts.py | 3 ++ .../azext_k8s_extension/custom.py | 34 ++++++++++--------- .../partner_extensions/AzureDefender.py | 6 ++-- .../partner_extensions/AzureMLKubernetes.py | 8 ++--- .../partner_extensions/ContainerInsights.py | 32 ++++++++--------- .../partner_extensions/Dapr.py | 4 +-- .../partner_extensions/DefaultExtension.py | 3 +- .../partner_extensions/OpenServiceMesh.py | 4 +-- .../PartnerExtensionModel.py | 2 ++ .../azext_k8s_extension/utils.py | 17 ++++++++-- src/k8s-extension/setup.py | 2 +- 13 files changed, 77 insertions(+), 49 deletions(-) diff --git a/src/k8s-extension/HISTORY.rst b/src/k8s-extension/HISTORY.rst index 040ef934ffa..4b40bd2fbd4 100644 --- a/src/k8s-extension/HISTORY.rst +++ b/src/k8s-extension/HISTORY.rst @@ -3,6 +3,10 @@ Release History =============== +1.3.0 +++++++++++++++++++ +* Add support for provisionedClusters + 1.2.6 ++++++++++++++++++ * k8s-extension new sub command group for extension types diff --git a/src/k8s-extension/azext_k8s_extension/_params.py b/src/k8s-extension/azext_k8s_extension/_params.py index 8221369661b..3e8121e3d69 100644 --- a/src/k8s-extension/azext_k8s_extension/_params.py +++ b/src/k8s-extension/azext_k8s_extension/_params.py @@ -29,9 +29,12 @@ def load_arguments(self, _): options_list=['--cluster-name', '-c'], help='Name of the Kubernetes cluster') c.argument('cluster_type', - arg_type=get_enum_type(['connectedClusters', 'managedClusters', 'appliances']), + arg_type=get_enum_type(['connectedClusters', 'managedClusters', 'appliances', 'provisionedClusters']), options_list=['--cluster-type', '-t'], - help='Specify Arc clusters or AKS managed clusters or Arc appliances.') + help='Specify Arc clusters or AKS managed clusters or Arc appliances or provisionedClusters.') + c.argument('cluster_resource_provider', + options_list=['--cluster-resource-provider', '--cluster-rp'], + help='Cluster Resource Provider name for this clusterType (Required for provisionedClusters)') c.argument('scope', arg_type=get_enum_type(['cluster', 'namespace']), help='Specify the extension scope.') diff --git a/src/k8s-extension/azext_k8s_extension/consts.py b/src/k8s-extension/azext_k8s_extension/consts.py index b40cf57ed27..c69df7a73f0 100644 --- a/src/k8s-extension/azext_k8s_extension/consts.py +++ b/src/k8s-extension/azext_k8s_extension/consts.py @@ -13,13 +13,16 @@ CONNECTED_CLUSTER_RP = "Microsoft.Kubernetes" MANAGED_CLUSTER_RP = "Microsoft.ContainerService" APPLIANCE_RP = "Microsoft.ResourceConnector" +HYBRIDCONTAINERSERVICE_RP = "microsoft.hybridcontainerservice" CONNECTED_CLUSTER_TYPE = "connectedclusters" MANAGED_CLUSTER_TYPE = "managedclusters" APPLIANCE_TYPE = "appliances" +PROVISIONED_CLUSTER_TYPE = "provisionedclusters" CONNECTED_CLUSTER_API_VERSION = "2021-10-01" MANAGED_CLUSTER_API_VERSION = "2021-10-01" APPLIANCE_API_VERSION = "2021-10-31-preview" +HYBRIDCONTAINERSERVICE_API_VERSION = "2022-05-01-preview" EXTENSION_TYPE_API_VERSION = "2022-01-15-preview" diff --git a/src/k8s-extension/azext_k8s_extension/custom.py b/src/k8s-extension/azext_k8s_extension/custom.py index ab3206bc383..1643678e6c7 100644 --- a/src/k8s-extension/azext_k8s_extension/custom.py +++ b/src/k8s-extension/azext_k8s_extension/custom.py @@ -53,10 +53,10 @@ def ExtensionFactory(extension_name): return extension_map.get(extension_name, DefaultExtension)() -def show_k8s_extension(client, resource_group_name, cluster_name, name, cluster_type): +def show_k8s_extension(client, resource_group_name, cluster_name, name, cluster_type, cluster_resource_provider=None): """Get an existing K8s Extension.""" # Determine ClusterRP - cluster_rp, _ = get_cluster_rp_api_version(cluster_type) + cluster_rp, _ = get_cluster_rp_api_version(cluster_type=cluster_type, cluster_rp=cluster_resource_provider) try: extension = client.get( @@ -95,6 +95,7 @@ def create_k8s_extension( name, cluster_type, extension_type, + cluster_resource_provider=None, scope=None, auto_upgrade_minor_version=None, release_train=None, @@ -110,7 +111,7 @@ def create_k8s_extension( """Create a new Extension Instance.""" extension_type_lower = extension_type.lower() - cluster_rp, _ = get_cluster_rp_api_version(cluster_type) + cluster_rp, _ = get_cluster_rp_api_version(cluster_type=cluster_type, cluster_rp=cluster_resource_provider) # Configuration Settings & Configuration Protected Settings if configuration_settings is not None and configuration_settings_file is not None: @@ -167,6 +168,7 @@ def create_k8s_extension( cluster_name, name, cluster_type, + cluster_rp, extension_type_lower, scope, auto_upgrade_minor_version, @@ -193,7 +195,7 @@ def create_k8s_extension( # We don't create the identity if we are in DF if create_identity and not is_dogfood_cluster(cmd): identity_object, location = __create_identity( - cmd, resource_group_name, cluster_name, cluster_type + cmd, resource_group_name, cluster_name, cluster_type, cluster_rp ) if identity_object is not None and location is not None: extension_instance.identity, extension_instance.location = ( @@ -214,8 +216,8 @@ def create_k8s_extension( ) -def list_k8s_extension(client, resource_group_name, cluster_name, cluster_type): - cluster_rp, _ = get_cluster_rp_api_version(cluster_type) +def list_k8s_extension(client, resource_group_name, cluster_name, cluster_type, cluster_resource_provider=None): + cluster_rp, _ = get_cluster_rp_api_version(cluster_type=cluster_type, cluster_rp=cluster_resource_provider) return client.list(resource_group_name, cluster_rp, cluster_type, cluster_name) @@ -226,6 +228,7 @@ def update_k8s_extension( cluster_name, name, cluster_type, + cluster_resource_provider=None, auto_upgrade_minor_version=None, release_train=None, version=None, @@ -253,22 +256,21 @@ def update_k8s_extension( user_confirmation_factory(cmd, yes, msg) # Determine ClusterRP - cluster_rp, _ = get_cluster_rp_api_version(cluster_type) + cluster_rp, _ = get_cluster_rp_api_version(cluster_type=cluster_type, cluster_rp=cluster_resource_provider) # We need to determine the ExtensionType to call ExtensionFactory and create Extension class extension = show_k8s_extension( - client, resource_group_name, cluster_name, name, cluster_type + client, resource_group_name, cluster_name, name, cluster_type, cluster_rp ) extension_type_lower = extension.extension_type.lower() - config_settings = None - config_protected_settings = None + config_settings = {} + config_protected_settings = {} # Get Configuration Settings from file if configuration_settings_file is not None: config_settings = read_config_settings_file(configuration_settings_file) if configuration_settings is not None: - config_settings = {} for dicts in configuration_settings: for key, value in dicts.items(): config_settings[key] = value @@ -280,7 +282,6 @@ def update_k8s_extension( ) if configuration_protected_settings is not None: - config_protected_settings = {} for dicts in configuration_protected_settings: for key, value in dicts.items(): config_protected_settings[key] = value @@ -320,13 +321,14 @@ def delete_k8s_extension( cluster_name, name, cluster_type, + cluster_resource_provider=None, no_wait=False, yes=False, force=False, ): """Delete an existing Kubernetes Extension.""" # Determine ClusterRP - cluster_rp, _ = get_cluster_rp_api_version(cluster_type) + cluster_rp, _ = get_cluster_rp_api_version(cluster_type=cluster_type, cluster_rp=cluster_resource_provider) extension = None try: extension = client.get( @@ -343,7 +345,7 @@ def delete_k8s_extension( # If there is any custom delete logic, this will call the logic extension_class.Delete( - cmd, client, resource_group_name, cluster_name, name, cluster_type, yes + cmd, client, resource_group_name, cluster_name, name, cluster_type, cluster_rp, yes ) return sdk_no_wait( @@ -406,7 +408,7 @@ def show_k8s_cluster_extension_type(client, resource_group_name, cluster_type, c raise ex -def __create_identity(cmd, resource_group_name, cluster_name, cluster_type): +def __create_identity(cmd, resource_group_name, cluster_name, cluster_type, cluster_rp): subscription_id = get_subscription_id(cmd.cli_ctx) resources = cf_resources(cmd.cli_ctx, subscription_id) @@ -417,7 +419,7 @@ def __create_identity(cmd, resource_group_name, cluster_name, cluster_type): ): return None, None - cluster_rp, parent_api_version = get_cluster_rp_api_version(cluster_type) + cluster_rp, parent_api_version = get_cluster_rp_api_version(cluster_type=cluster_type, cluster_rp=cluster_rp) cluster_resource_id = ( "/subscriptions/{0}/resourceGroups/{1}/providers/{2}/{3}/{4}".format( diff --git a/src/k8s-extension/azext_k8s_extension/partner_extensions/AzureDefender.py b/src/k8s-extension/azext_k8s_extension/partner_extensions/AzureDefender.py index e0d6d047292..bee8afa0067 100644 --- a/src/k8s-extension/azext_k8s_extension/partner_extensions/AzureDefender.py +++ b/src/k8s-extension/azext_k8s_extension/partner_extensions/AzureDefender.py @@ -18,8 +18,8 @@ class AzureDefender(DefaultExtension): - def Create(self, cmd, client, resource_group_name, cluster_name, name, cluster_type, extension_type, - scope, auto_upgrade_minor_version, release_train, version, target_namespace, + def Create(self, cmd, client, resource_group_name, cluster_name, name, cluster_type, cluster_rp, + extension_type, scope, auto_upgrade_minor_version, release_train, version, target_namespace, release_namespace, configuration_settings, configuration_protected_settings, configuration_settings_file, configuration_protected_settings_file): @@ -43,7 +43,7 @@ def Create(self, cmd, client, resource_group_name, cluster_name, name, cluster_t 'only supports cluster scope and single instance of this extension.', extension_type) logger.warning("Defaulting to extension name '%s' and release-namespace '%s'", name, release_namespace) - _get_container_insights_settings(cmd, resource_group_name, cluster_name, configuration_settings, + _get_container_insights_settings(cmd, resource_group_name, cluster_rp, cluster_type, cluster_name, configuration_settings, configuration_protected_settings, is_ci_extension_type) # NOTE-2: Return a valid Extension object, Instance name and flag for Identity diff --git a/src/k8s-extension/azext_k8s_extension/partner_extensions/AzureMLKubernetes.py b/src/k8s-extension/azext_k8s_extension/partner_extensions/AzureMLKubernetes.py index 4f3613daa09..a260580cf8d 100644 --- a/src/k8s-extension/azext_k8s_extension/partner_extensions/AzureMLKubernetes.py +++ b/src/k8s-extension/azext_k8s_extension/partner_extensions/AzureMLKubernetes.py @@ -108,8 +108,8 @@ def __init__(self): self.OPEN_SHIFT = 'openshift' - def Create(self, cmd, client, resource_group_name, cluster_name, name, cluster_type, extension_type, - scope, auto_upgrade_minor_version, release_train, version, target_namespace, + def Create(self, cmd, client, resource_group_name, cluster_name, name, cluster_type, cluster_rp, + extension_type, scope, auto_upgrade_minor_version, release_train, version, target_namespace, release_namespace, configuration_settings, configuration_protected_settings, configuration_settings_file, configuration_protected_settings_file): if scope == 'namespace': @@ -126,7 +126,7 @@ def Create(self, cmd, client, resource_group_name, cluster_name, name, cluster_t # get the arc's location subscription_id = get_subscription_id(cmd.cli_ctx) - cluster_rp, parent_api_version = get_cluster_rp_api_version(cluster_type) + cluster_rp, parent_api_version = get_cluster_rp_api_version(cluster_type=cluster_type, cluster_rp=cluster_rp) cluster_resource_id = '/subscriptions/{0}/resourceGroups/{1}/providers/{2}' \ '/{3}/{4}'.format(subscription_id, resource_group_name, cluster_rp, cluster_type, cluster_name) cluster_location = '' @@ -216,7 +216,7 @@ def Create(self, cmd, client, resource_group_name, cluster_name, name, cluster_t ) return extension, name, create_identity - def Delete(self, cmd, client, resource_group_name, cluster_name, name, cluster_type, yes): + def Delete(self, cmd, client, resource_group_name, cluster_name, name, cluster_type, cluster_rp, yes): user_confirmation_factory(cmd, yes) def Update(self, cmd, resource_group_name, cluster_name, auto_upgrade_minor_version, release_train, version, configuration_settings, diff --git a/src/k8s-extension/azext_k8s_extension/partner_extensions/ContainerInsights.py b/src/k8s-extension/azext_k8s_extension/partner_extensions/ContainerInsights.py index 0db8b5dbed8..3908ee54d26 100644 --- a/src/k8s-extension/azext_k8s_extension/partner_extensions/ContainerInsights.py +++ b/src/k8s-extension/azext_k8s_extension/partner_extensions/ContainerInsights.py @@ -32,8 +32,8 @@ class ContainerInsights(DefaultExtension): - def Create(self, cmd, client, resource_group_name, cluster_name, name, cluster_type, extension_type, - scope, auto_upgrade_minor_version, release_train, version, target_namespace, + def Create(self, cmd, client, resource_group_name, cluster_name, name, cluster_type, cluster_rp, + extension_type, scope, auto_upgrade_minor_version, release_train, version, target_namespace, release_namespace, configuration_settings, configuration_protected_settings, configuration_settings_file, configuration_protected_settings_file): """ExtensionType 'microsoft.azuremonitor.containers' specific validations & defaults for Create @@ -56,7 +56,7 @@ def Create(self, cmd, client, resource_group_name, cluster_name, name, cluster_t 'only supports cluster scope and single instance of this extension.', extension_type) logger.warning("Defaulting to extension name '%s' and release-namespace '%s'", name, release_namespace) - _get_container_insights_settings(cmd, resource_group_name, cluster_name, configuration_settings, + _get_container_insights_settings(cmd, resource_group_name, cluster_rp, cluster_type, cluster_name, configuration_settings, configuration_protected_settings, is_ci_extension_type) # NOTE-2: Return a valid Extension object, Instance name and flag for Identity @@ -72,11 +72,11 @@ def Create(self, cmd, client, resource_group_name, cluster_name, name, cluster_t ) return extension, name, create_identity - def Delete(self, cmd, client, resource_group_name, cluster_name, name, cluster_type, yes): + def Delete(self, cmd, client, resource_group_name, cluster_name, name, cluster_type, cluster_rp, yes): # Delete DCR-A if it exists incase of MSI Auth useAADAuth = False isDCRAExists = False - cluster_rp, _ = get_cluster_rp_api_version(cluster_type) + cluster_rp, _ = get_cluster_rp_api_version(cluster_type=cluster_type, cluster_rp=cluster_rp) try: extension = client.get(resource_group_name, cluster_rp, cluster_type, cluster_name, name) except Exception: @@ -140,8 +140,8 @@ def _invoke_deployment(cmd, resource_group_name, deployment_name, template, para return sdk_no_wait(no_wait, smc.begin_create_or_update, resource_group_name, deployment_name, deployment) -def _ensure_default_log_analytics_workspace_for_monitoring(cmd, subscription_id, - cluster_resource_group_name, cluster_name): +def _ensure_default_log_analytics_workspace_for_monitoring(cmd, subscription_id, cluster_resource_group_name, + cluster_rp, cluster_type, cluster_name): # mapping for azure public cloud # log analytics workspaces cannot be created in WCUS region due to capacity limits # so mapped to EUS per discussion with log analytics team @@ -236,8 +236,8 @@ def _ensure_default_log_analytics_workspace_for_monitoring(cmd, subscription_id, cluster_location = '' resources = cf_resources(cmd.cli_ctx, subscription_id) - cluster_resource_id = '/subscriptions/{0}/resourceGroups/{1}/providers/Microsoft.Kubernetes' \ - '/connectedClusters/{2}'.format(subscription_id, cluster_resource_group_name, cluster_name) + cluster_resource_id = '/subscriptions/{0}/resourceGroups/{1}/providers//{2}/{3}/{4}'.format( + subscription_id, cluster_resource_group_name, cluster_rp, cluster_type, cluster_name) try: resource = resources.get_by_id(cluster_resource_id, '2020-01-01-preview') cluster_location = resource.location.lower() @@ -438,8 +438,8 @@ def _ensure_container_insights_for_monitoring(cmd, workspace_resource_id): validate=False, no_wait=False, subscription_id=subscription_id) -def _get_container_insights_settings(cmd, cluster_resource_group_name, cluster_name, configuration_settings, - configuration_protected_settings, is_ci_extension_type): +def _get_container_insights_settings(cmd, cluster_resource_group_name, cluster_rp, cluster_type, cluster_name, + configuration_settings, configuration_protected_settings, is_ci_extension_type): subscription_id = get_subscription_id(cmd.cli_ctx) workspace_resource_id = '' @@ -477,7 +477,7 @@ def _get_container_insights_settings(cmd, cluster_resource_group_name, cluster_n if not workspace_resource_id: workspace_resource_id = _ensure_default_log_analytics_workspace_for_monitoring( - cmd, subscription_id, cluster_resource_group_name, cluster_name) + cmd, subscription_id, cluster_resource_group_name, cluster_rp, cluster_type, cluster_name) else: if not is_valid_resource_id(workspace_resource_id): raise InvalidArgumentValueError('{} is not a valid Azure resource ID.'.format(workspace_resource_id)) @@ -485,7 +485,7 @@ def _get_container_insights_settings(cmd, cluster_resource_group_name, cluster_n if is_ci_extension_type: if useAADAuth: logger.info("creating data collection rule and association") - _ensure_container_insights_dcr_for_monitoring(cmd, subscription_id, cluster_resource_group_name, cluster_name, workspace_resource_id) + _ensure_container_insights_dcr_for_monitoring(cmd, subscription_id, cluster_resource_group_name, cluster_rp, cluster_type, cluster_name, workspace_resource_id) elif not _is_container_insights_solution_exists(cmd, workspace_resource_id): logger.info("Creating ContainerInsights solution resource, since it doesn't exist and it is using legacy authentication") _ensure_container_insights_for_monitoring(cmd, workspace_resource_id).result() @@ -545,13 +545,13 @@ def get_existing_container_insights_extension_dcr_tags(cmd, dcr_url): return tags -def _ensure_container_insights_dcr_for_monitoring(cmd, subscription_id, cluster_resource_group_name, cluster_name, workspace_resource_id): +def _ensure_container_insights_dcr_for_monitoring(cmd, subscription_id, cluster_resource_group_name, cluster_rp, cluster_type, cluster_name, workspace_resource_id): from azure.core.exceptions import HttpResponseError cluster_region = '' resources = cf_resources(cmd.cli_ctx, subscription_id) - cluster_resource_id = '/subscriptions/{0}/resourceGroups/{1}/providers/Microsoft.Kubernetes' \ - '/connectedClusters/{2}'.format(subscription_id, cluster_resource_group_name, cluster_name) + cluster_resource_id = '/subscriptions/{0}/resourceGroups/{1}/providers/{2}/{3}/{4}'.format( + subscription_id, cluster_resource_group_name, cluster_rp, cluster_type, cluster_name) try: resource = resources.get_by_id(cluster_resource_id, '2020-01-01-preview') cluster_region = resource.location.lower() diff --git a/src/k8s-extension/azext_k8s_extension/partner_extensions/Dapr.py b/src/k8s-extension/azext_k8s_extension/partner_extensions/Dapr.py index 484c1f23d4a..e16a0cb1dee 100644 --- a/src/k8s-extension/azext_k8s_extension/partner_extensions/Dapr.py +++ b/src/k8s-extension/azext_k8s_extension/partner_extensions/Dapr.py @@ -19,8 +19,8 @@ def __init__(self): # constants for configuration settings. self.CLUSTER_TYPE = 'global.clusterType' - def Create(self, cmd, client, resource_group_name, cluster_name, name, cluster_type, extension_type, - scope, auto_upgrade_minor_version, release_train, version, target_namespace, + def Create(self, cmd, client, resource_group_name, cluster_name, name, cluster_type, cluster_rp, + extension_type, scope, auto_upgrade_minor_version, release_train, version, target_namespace, release_namespace, configuration_settings, configuration_protected_settings, configuration_settings_file, configuration_protected_settings_file): diff --git a/src/k8s-extension/azext_k8s_extension/partner_extensions/DefaultExtension.py b/src/k8s-extension/azext_k8s_extension/partner_extensions/DefaultExtension.py index bae3fe4d1f0..1f6f1c1326d 100644 --- a/src/k8s-extension/azext_k8s_extension/partner_extensions/DefaultExtension.py +++ b/src/k8s-extension/azext_k8s_extension/partner_extensions/DefaultExtension.py @@ -25,6 +25,7 @@ def Create( cluster_name, name, cluster_type, + cluster_rp, extension_type, scope, auto_upgrade_minor_version, @@ -87,7 +88,7 @@ def Update( ) def Delete( - self, cmd, client, resource_group_name, cluster_name, name, cluster_type, yes + self, cmd, client, resource_group_name, cluster_name, name, cluster_type, cluster_rp, yes ): user_confirmation_factory(cmd, yes) diff --git a/src/k8s-extension/azext_k8s_extension/partner_extensions/OpenServiceMesh.py b/src/k8s-extension/azext_k8s_extension/partner_extensions/OpenServiceMesh.py index 7b02f0e4336..76b5b926df1 100644 --- a/src/k8s-extension/azext_k8s_extension/partner_extensions/OpenServiceMesh.py +++ b/src/k8s-extension/azext_k8s_extension/partner_extensions/OpenServiceMesh.py @@ -32,8 +32,8 @@ class OpenServiceMesh(DefaultExtension): - def Create(self, cmd, client, resource_group_name, cluster_name, name, cluster_type, extension_type, - scope, auto_upgrade_minor_version, release_train, version, target_namespace, + def Create(self, cmd, client, resource_group_name, cluster_name, name, cluster_type, cluster_rp, + extension_type, scope, auto_upgrade_minor_version, release_train, version, target_namespace, release_namespace, configuration_settings, configuration_protected_settings, configuration_settings_file, configuration_protected_settings_file): """ExtensionType 'microsoft.openservicemesh' specific validations & defaults for Create diff --git a/src/k8s-extension/azext_k8s_extension/partner_extensions/PartnerExtensionModel.py b/src/k8s-extension/azext_k8s_extension/partner_extensions/PartnerExtensionModel.py index c83429e2cfb..44e71daa20d 100644 --- a/src/k8s-extension/azext_k8s_extension/partner_extensions/PartnerExtensionModel.py +++ b/src/k8s-extension/azext_k8s_extension/partner_extensions/PartnerExtensionModel.py @@ -18,6 +18,7 @@ def Create( cluster_name: str, name: str, cluster_type: str, + cluster_rp: str, extension_type: str, scope: str, auto_upgrade_minor_version: bool, @@ -57,6 +58,7 @@ def Delete( cluster_name: str, name: str, cluster_type: str, + cluster_rp: str, yes: bool, ): pass diff --git a/src/k8s-extension/azext_k8s_extension/utils.py b/src/k8s-extension/azext_k8s_extension/utils.py index c587c3050a1..11112935c87 100644 --- a/src/k8s-extension/azext_k8s_extension/utils.py +++ b/src/k8s-extension/azext_k8s_extension/utils.py @@ -7,10 +7,23 @@ from typing import Tuple from urllib.parse import urlparse from . import consts -from azure.cli.core.azclierror import InvalidArgumentValueError +from azure.cli.core.azclierror import InvalidArgumentValueError, RequiredArgumentMissingError -def get_cluster_rp_api_version(cluster_type) -> Tuple[str, str]: +def get_cluster_rp_api_version(cluster_type, cluster_rp=None) -> Tuple[str, str]: + if cluster_type.lower() == consts.PROVISIONED_CLUSTER_TYPE: + if cluster_rp is None or cluster_rp.strip() == "": + raise RequiredArgumentMissingError( + "Error! Cluster Resource Provider value is required for Cluster Type '{}'".format(cluster_type) + ) + if cluster_rp.lower() == consts.HYBRIDCONTAINERSERVICE_RP: + return ( + consts.HYBRIDCONTAINERSERVICE_RP, + consts.HYBRIDCONTAINERSERVICE_API_VERSION, + ) + raise InvalidArgumentValueError( + "Error! Cluster type '{}' and Cluster Resource Provider '{}' combination is not supported".format(cluster_type, cluster_rp) + ) if cluster_type.lower() == consts.CONNECTED_CLUSTER_TYPE: return consts.CONNECTED_CLUSTER_RP, consts.CONNECTED_CLUSTER_API_VERSION if cluster_type.lower() == consts.APPLIANCE_TYPE: diff --git a/src/k8s-extension/setup.py b/src/k8s-extension/setup.py index 0de2022b47f..be009d730cb 100644 --- a/src/k8s-extension/setup.py +++ b/src/k8s-extension/setup.py @@ -33,7 +33,7 @@ # TODO: Add any additional SDK dependencies here DEPENDENCIES = [] -VERSION = "1.2.6" +VERSION = "1.3.0" with open("README.rst", "r", encoding="utf-8") as f: README = f.read() From 6694093b8eae1bc765b347205b198a153b83562b Mon Sep 17 00:00:00 2001 From: ZelinWang Date: Wed, 10 Aug 2022 08:55:37 +0800 Subject: [PATCH 7/7] {CI} drop python 3.6 (#5218) * drop python36 * update --- azure-pipelines.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 12216a7891c..3e932cfd640 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -102,8 +102,6 @@ jobs: vmImage: 'ubuntu-20.04' strategy: matrix: - Python36: - python.version: '3.6' Python38: python.version: '3.8' Python39: