diff --git a/src/support/HISTORY.md b/src/support/HISTORY.md index 0e9738b59ff..b1bbf215c25 100644 --- a/src/support/HISTORY.md +++ b/src/support/HISTORY.md @@ -1,6 +1,10 @@ Release History =============== +1.0.4 +----- +* Add deprecated message for commands before new upcoming version + 1.0.3 ----- * Migrate to track 2 SDK diff --git a/src/support/azext_support/_params.py b/src/support/azext_support/_params.py index 15dc7703da9..1a47dbf4bfa 100644 --- a/src/support/azext_support/_params.py +++ b/src/support/azext_support/_params.py @@ -102,7 +102,8 @@ def load_tickets_argument(self, _): help='Indicates if this requires a 24x7 response from Azure. Default is false.') c.argument('partner_tenant_id', help='Partner tenant id for Admin On Behalf ' + 'of (AOBO) scenario. In addition to logging in to the customer tenant, logging in to the partner ' + - 'tenant (PT) using "az login -t PT --allow-no-subscriptions" is required.') + 'tenant (PT) using "az login -t PT --allow-no-subscriptions" is required.', + deprecate_info=c.deprecate()) with self.argument_context('support tickets create', arg_group="Contact") as c: c.argument('contact_first_name', help='First Name', required=True) @@ -126,10 +127,11 @@ def load_tickets_argument(self, _): c.argument('quota_change_subtype', help='Required for certain quota types when there is a sub type that ' + 'you are requesting quota increase for. Example: Batch') c.argument('quota_change_regions', nargs='+', help='Space-separated list of region for which ' + - 'the quota increase request is being made.') + 'the quota increase request is being made.', deprecate_info=c.deprecate()) c.argument('quota_change_payload', nargs='+', help='Space -separated list of serialized payload of the ' + 'quota increase request corresponding to regions. Visit ' + - 'https://aka.ms/supportrpquotarequestpayload for details.') + 'https://aka.ms/supportrpquotarequestpayload for details.', + deprecate_info=c.deprecate()) def load_communications_argument(self, _): diff --git a/src/support/azext_support/_utils.py b/src/support/azext_support/_utils.py index 9429828d972..69090d31223 100644 --- a/src/support/azext_support/_utils.py +++ b/src/support/azext_support/_utils.py @@ -34,7 +34,7 @@ def is_technical_ticket(service_name): def parse_support_area_path(problem_classification_id): service_id_prefix = "/providers/Microsoft.Support/services/".lower() guid_regex = "[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}" - sap_regex = re.compile('^{0}({1})/problemclassifications/({1})$'.format(service_id_prefix, guid_regex)) + sap_regex = re.compile(f'^{service_id_prefix}({guid_regex})/problemclassifications/({guid_regex})$') match = sap_regex.search(problem_classification_id.lower()) if match is not None and len(match.groups()) == 2: @@ -50,7 +50,7 @@ def get_bearer_token(cmd, tenant_id): logger.debug("Retrieving access token for tenant %s", tenant_id) creds, _, _ = client.get_raw_token(tenant=tenant_id) except CLIError as unauthorized_error: - raise UnauthorizedError("Can't find authorization for {0}. ".format(tenant_id) + + raise UnauthorizedError(f"Can't find authorization for {tenant_id}. " + "Run \'az login -t --allow-no-subscriptions\' and try again.") from \ unauthorized_error diff --git a/src/support/azext_support/_validators.py b/src/support/azext_support/_validators.py index 092a9e4e571..cc116b70aa0 100644 --- a/src/support/azext_support/_validators.py +++ b/src/support/azext_support/_validators.py @@ -25,7 +25,7 @@ def datetime_type(string): return datetime.strptime(string, form) except ValueError: continue - raise ValueError("Input '{0}' not valid. Valid example: 2017-02-11T23:59:59Z".format(string)) + raise ValueError(f"Input '{string}' not valid. Valid example: 2017-02-11T23:59:59Z") def validate_tickets_create(cmd, namespace): @@ -67,18 +67,18 @@ def _validate_resource_name(cmd, resource_id): if resource_id is None: return - base_error_msg = "Technical resource argument {0} is invalid.".format(resource_id) + base_error_msg = f"Technical resource argument {resource_id} is invalid." if not is_valid_resource_id(resource_id): raise CLIError(base_error_msg) parsed_resource = parse_resource_id(resource_id) subid = parsed_resource["subscription"] if not _is_guid(subid): - raise CLIError(base_error_msg + "Subscription id {0} is invalid.".format(subid)) + raise CLIError(f"{base_error_msg} Subscription id {subid} is invalid.") session_subid = get_subscription_id(cmd.cli_ctx) if subid != session_subid: - raise CLIError("{0} {1} does not match with {2}".format(base_error_msg, subid, session_subid)) + raise CLIError(f"{base_error_msg} {subid} does not match with {session_subid}") def _is_guid(guid): diff --git a/src/support/azext_support/commands.py b/src/support/azext_support/commands.py index aae0b563c91..4547219037c 100644 --- a/src/support/azext_support/commands.py +++ b/src/support/azext_support/commands.py @@ -40,14 +40,16 @@ def load_command_table(self, _): g.show_command('show', getter_name='get') with self.command_group('support tickets', support_tickets, - client_factory=cf_support_tickets) as g: + client_factory=cf_support_tickets, + deprecate_info=self.deprecate()) as g: g.custom_command('list', 'list_support_tickets') g.custom_show_command('show', 'get_support_tickets') g.custom_command('create', 'create_support_tickets', supports_no_wait=False, validator=validate_tickets_create) g.custom_command('update', 'update_support_tickets') with self.command_group('support tickets communications', support_communications, - client_factory=cf_communications) as g: + client_factory=cf_communications, + deprecate_info=self.deprecate()) as g: g.custom_command('list', 'list_support_tickets_communications') g.custom_show_command('show', 'get_support_tickets_communications') g.custom_command('create', 'create_support_tickets_communications', supports_no_wait=False) diff --git a/src/support/azext_support/custom.py b/src/support/azext_support/custom.py index 2073f051a08..06552496ffe 100644 --- a/src/support/azext_support/custom.py +++ b/src/support/azext_support/custom.py @@ -17,12 +17,17 @@ def list_support_tickets(cmd, client, filters=None): + logger.warning("Command group 'az support tickets' will be replaced by 'az support in-subscription tickets'" + + " and 'az support no-subscription tickets'") + logger.warning("Parameter 'filters' argument will be replaced by 'filter'") if filters is None: filters = "CreatedDate ge " + str(date.today() - timedelta(days=7)) return client.list(top=100, filter=filters) def get_support_tickets(cmd, client, ticket_name=None): + logger.warning("Command group 'az support tickets' will be replaced by 'az support in-subscription tickets'" + + " and 'az support no-subscription tickets'") return client.get(support_ticket_name=ticket_name) @@ -39,6 +44,8 @@ def update_support_tickets(cmd, client, contact_timezone=None, contact_country=None, contact_language=None): + logger.warning("Command group 'az support tickets' will be replaced by 'az support in-subscription tickets'" + + " and 'az support no-subscription tickets'") contactBody = {} contactBody["first_name"] = contact_first_name contactBody["last_name"] = contact_last_name @@ -62,10 +69,17 @@ def update_support_tickets(cmd, client, def list_support_tickets_communications(cmd, client, ticket_name=None, filters=None): + logger.warning("Command group 'az support tickets communications' will be replaced by" + + " 'az support in-subscription communication'" + + " and 'az support no-subscription communication'") + logger.warning("'filters' argument will be replaced by 'filter'") return client.list(support_ticket_name=ticket_name, filter=filters) def get_support_tickets_communications(cmd, client, ticket_name=None, communication_name=None): + logger.warning("Command group 'az support tickets communications' will be replaced by" + + " 'az support in-subscription communication'" + + " and 'az support no-subscription communication'") return client.get(support_ticket_name=ticket_name, communication_name=communication_name) @@ -92,8 +106,12 @@ def create_support_tickets(cmd, client, quota_change_regions=None, quota_change_payload=None, partner_tenant_id=None): + logger.warning("Command group 'az support tickets' will be replaced by 'az support in-subscription tickets'" + + " and 'az support no-subscription tickets'") + logger.warning("Parameters 'quota-change-regions' and ''quota-change-payload' will be replaced by" + + " 'quota-change-requests[].region' and 'quota-change-requests[].payload'") service_name = parse_support_area_path(problem_classification)["service_name"] - service = "/providers/Microsoft.Support/services/{0}".format(service_name) + service = f"/providers/Microsoft.Support/services/{service_name}" contactBody = {} contactBody["first_name"] = contact_first_name @@ -149,6 +167,9 @@ def create_support_tickets_communications(cmd, client, communication_body=None, communication_subject=None, communication_sender=None): + logger.warning("Command group 'az support tickets communications' will be replaced by" + + " 'az support in-subscription communication'" + + " and 'az support no-subscription communication'") body = {} body["sender"] = communication_sender body["subject"] = communication_subject diff --git a/src/support/azext_support/tests/latest/recordings/test_support_services.yaml b/src/support/azext_support/tests/latest/recordings/test_support_services.yaml index 196d20d84d8..3e0879d7c96 100644 --- a/src/support/azext_support/tests/latest/recordings/test_support_services.yaml +++ b/src/support/azext_support/tests/latest/recordings/test_support_services.yaml @@ -11,311 +11,382 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-support/6.0.0 Python/3.11.8 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/providers/Microsoft.Support/services?api-version=2020-04-01 response: body: - string: "{\"value\":[{\"id\":\"/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea\",\"name\":\"484e2236-bc6d-b1bb-76d2-7d09278cf9ea\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Activity - Logs\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/26d8424b-0a41-4443-cbc6-0309ea8708d0\",\"name\":\"26d8424b-0a41-4443-cbc6-0309ea8708d0\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Advisor\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/c1840ac9-309f-f235-c0ae-4782f283b698\",\"name\":\"c1840ac9-309f-f235-c0ae-4782f283b698\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Alerts - and Action Groups\",\"resourceTypes\":[\"MICROSOFT.INSIGHTS/ALERTRULES\",\"MICROSOFT.INSIGHTS/ACTIVITYLOGALERTS\",\"MICROSOFT.INSIGHTS/METRICALERTS\",\"MICROSOFT.INSIGHTS/SCHEDULEDQUERYRULES\"]}},{\"id\":\"/providers/Microsoft.Support/services/e8fe7c6f-d883-c57f-6576-cf801ca30653\",\"name\":\"e8fe7c6f-d883-c57f-6576-cf801ca30653\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Analysis - Services\",\"resourceTypes\":[\"MICROSOFT.ANALYSISSERVICES/SERVERS\"]}},{\"id\":\"/providers/Microsoft.Support/services/07651e65-958a-0877-36f3-61bbba85d783\",\"name\":\"07651e65-958a-0877-36f3-61bbba85d783\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"API - for FHIR\",\"resourceTypes\":[\"Microsoft.HealthcareApis/services\"]}},{\"id\":\"/providers/Microsoft.Support/services/b4d0e877-0166-0474-9a76-b5be30ba40e4\",\"name\":\"b4d0e877-0166-0474-9a76-b5be30ba40e4\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"API - Management Service\",\"resourceTypes\":[\"MICROSOFT.APIMANAGEMENT/SERVICE\"]}},{\"id\":\"/providers/Microsoft.Support/services/e14f616b-42c5-4515-3d7c-67935eece51a\",\"name\":\"e14f616b-42c5-4515-3d7c-67935eece51a\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"App - Configuration\",\"resourceTypes\":[\"Microsoft.Azconfig\"]}},{\"id\":\"/providers/Microsoft.Support/services/445c0905-55e2-4f42-d853-ec9e17a5180e\",\"name\":\"445c0905-55e2-4f42-d853-ec9e17a5180e\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"App - Service Certificates\",\"resourceTypes\":[\"MICROSOFT.CERTIFICATEREGISTRATION/CERTIFICATEORDERS\"]}},{\"id\":\"/providers/Microsoft.Support/services/b7d2f8b7-7d20-cf2f-ddd5-5543ada54bd2\",\"name\":\"b7d2f8b7-7d20-cf2f-ddd5-5543ada54bd2\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"App - Service Domains\",\"resourceTypes\":[\"MICROSOFT.DOMAINREGISTRATION/DOMAINS\"]}},{\"id\":\"/providers/Microsoft.Support/services/0420c0b3-5e23-1475-d8ad-c883ef940b46\",\"name\":\"0420c0b3-5e23-1475-d8ad-c883ef940b46\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"App - Service on Azure Stack Hub\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/101732bb-31af-ee61-7c16-d4ad77c86a50\",\"name\":\"101732bb-31af-ee61-7c16-d4ad77c86a50\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Application - Gateway\",\"resourceTypes\":[\"MICROSOFT.NETWORK/APPLICATIONGATEWAYS\"]}},{\"id\":\"/providers/Microsoft.Support/services/63df7848-ce1c-06d4-517f-2a62983372c6\",\"name\":\"63df7848-ce1c-06d4-517f-2a62983372c6\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Application - Insights\",\"resourceTypes\":[\"MICROSOFT.INSIGHTS/COMPONENTS\",\"MICROSOFT.INSIGHTS/ACTIVITYLOGALERTS\",\"MICROSOFT.INSIGHTS/METRICALERTS\",\"MICROSOFT.INSIGHTS/SCHEDULEDQUERYRULES\"]}},{\"id\":\"/providers/Microsoft.Support/services/2fd37acf-7616-eae7-546b-1a78a16d11b5\",\"name\":\"2fd37acf-7616-eae7-546b-1a78a16d11b5\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"ASE\",\"resourceTypes\":[\"MICROSOFT.WEB/HOSTINGENVIRONMENTS\"]}},{\"id\":\"/providers/Microsoft.Support/services/b661f9c2-28ee-800a-b621-118a6787a8e6\",\"name\":\"b661f9c2-28ee-800a-b621-118a6787a8e6\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Automanage - for Virtual Machines - Preview\",\"resourceTypes\":[\"microsoft.automanage\"]}},{\"id\":\"/providers/Microsoft.Support/services/82881226-e06c-2b57-3365-38437e84059e\",\"name\":\"82881226-e06c-2b57-3365-38437e84059e\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Autoscale\",\"resourceTypes\":[\"MICROSOFT.INSIGHTS/AUTOSCALESETTINGS\"]}},{\"id\":\"/providers/Microsoft.Support/services/c2514c34-3bf2-9e82-0119-17da8f366a19\",\"name\":\"c2514c34-3bf2-9e82-0119-17da8f366a19\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Avere - Legacy\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/500d88b2-c24c-0d5d-3b76-acfde7d6ee20\",\"name\":\"500d88b2-c24c-0d5d-3b76-acfde7d6ee20\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Avere - vFXT\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/7505036e-a364-8354-e894-56d394dd4a61\",\"name\":\"7505036e-a364-8354-e894-56d394dd4a61\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Active Directory App Integration and Development\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/b16f3aa1-e798-0090-9159-5dc3bae17c5b\",\"name\":\"b16f3aa1-e798-0090-9159-5dc3bae17c5b\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Active Directory Business To Consumer (B2C)\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/3a36c1ba-f910-91c3-9f17-075d63c9488a\",\"name\":\"3a36c1ba-f910-91c3-9f17-075d63c9488a\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Active Directory Directories, Domains, and Objects\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/a69d6bc1-d1db-61e6-2668-451ae3784f86\",\"name\":\"a69d6bc1-d1db-61e6-2668-451ae3784f86\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Active Directory Domain Services (VM \u2013 Domain Controllers)\",\"resourceTypes\":[\"Microsoft.AAD/DomainServices\"]}},{\"id\":\"/providers/Microsoft.Support/services/b98631b1-d53a-3ac4-3181-aef136ec703d\",\"name\":\"b98631b1-d53a-3ac4-3181-aef136ec703d\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Active Directory Governance, Compliance and Reporting\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/516fe906-3a1a-2878-02fd-8dd37ea207de\",\"name\":\"516fe906-3a1a-2878-02fd-8dd37ea207de\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Active Directory Sign-In and Multi-Factor Authentication\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/38a234dd-6baf-d93b-2c48-5a735a3550ed\",\"name\":\"38a234dd-6baf-d93b-2c48-5a735a3550ed\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Active Directory User Provisioning and Synchronization\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/ab3e222e-3538-2b59-d3e8-963047a08f8b\",\"name\":\"ab3e222e-3538-2b59-d3e8-963047a08f8b\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Arc enabled Data Services\",\"resourceTypes\":[\"Microsoft.AzureArcData/datacontrollers\"]}},{\"id\":\"/providers/Microsoft.Support/services/11689be9-43d7-ba72-5806-03ab87626a4a\",\"name\":\"11689be9-43d7-ba72-5806-03ab87626a4a\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Arc enabled Kubernetes\",\"resourceTypes\":[\"Microsoft.Kubernetes/connectedClusters\"]}},{\"id\":\"/providers/Microsoft.Support/services/9ef6b6ba-0bb2-e927-2ea7-32f90a97414d\",\"name\":\"9ef6b6ba-0bb2-e927-2ea7-32f90a97414d\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Arc enabled PostgreSQL Hyperscale - Preview\",\"resourceTypes\":[\"Microsoft.AzureArcData/postgresinstances\"]}},{\"id\":\"/providers/Microsoft.Support/services/17318db1-cfda-52da-b65f-68e53ba89e64\",\"name\":\"17318db1-cfda-52da-b65f-68e53ba89e64\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Arc enabled servers\",\"resourceTypes\":[\"Microsoft.hybridcompute/machines\"]}},{\"id\":\"/providers/Microsoft.Support/services/f6575f88-34bc-79d3-8693-05ee9b7ca72b\",\"name\":\"f6575f88-34bc-79d3-8693-05ee9b7ca72b\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Arc enabled SQL Managed Instance\",\"resourceTypes\":[\"Microsoft.AzureArcData/sqlmanagedinstances\"]}},{\"id\":\"/providers/Microsoft.Support/services/8dfc5d56-9245-222f-19fc-dfafc3fba973\",\"name\":\"8dfc5d56-9245-222f-19fc-dfafc3fba973\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Arc enabled SQL Server\",\"resourceTypes\":[\"Microsoft.AzureArcData/sqlServerInstances\"]}},{\"id\":\"/providers/Microsoft.Support/services/90426252-f966-63ea-cbda-cab5ceaa865d\",\"name\":\"90426252-f966-63ea-cbda-cab5ceaa865d\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Automation\",\"resourceTypes\":[\"MICROSOFT.AUTOMATION/AUTOMATIONACCOUNTS\",\"MICROSOFT.AUTOMATION/AUTOMATIONACCOUNTS/RUNBOOKS\",\"MICROSOFT.AUTOMATION/AUTOMATIONACCOUNTS/JOBS\"]}},{\"id\":\"/providers/Microsoft.Support/services/17d72dfc-8f48-94cb-05e6-5f88efdf72d7\",\"name\":\"17d72dfc-8f48-94cb-05e6-5f88efdf72d7\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Backup\",\"resourceTypes\":[\"Microsoft.RecoveryServices/vaults\",\"Microsoft.DataProtection/BackupVaults\"]}},{\"id\":\"/providers/Microsoft.Support/services/76b41038-ae2e-0cb8-32f8-a575b98d07ae\",\"name\":\"76b41038-ae2e-0cb8-32f8-a575b98d07ae\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Blockchain Service - Preview\",\"resourceTypes\":[\"Microsoft.Blockchain\"]}},{\"id\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\",\"name\":\"58cf91d7-3a04-37d3-9818-9bd5c979d9a9\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - CDN\",\"resourceTypes\":[\"Microsoft.Cdn/profiles\",\"Microsoft.Cdn/profiles/endpoints\",\"Microsoft.Cdn/CdnWebApplicationFirewallPolicies\"]}},{\"id\":\"/providers/Microsoft.Support/services/3f14906b-a48e-b51a-d700-b3eb7784bce8\",\"name\":\"3f14906b-a48e-b51a-d700-b3eb7784bce8\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Database for MariaDB\",\"resourceTypes\":[\"MICROSOFT.DBFORMARIADB/SERVERS\"]}},{\"id\":\"/providers/Microsoft.Support/services/17c72f78-cb09-bc5b-9b99-f3d618e1f057\",\"name\":\"17c72f78-cb09-bc5b-9b99-f3d618e1f057\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Database for MySQL\",\"resourceTypes\":[\"MICROSOFT.DBFORMYSQL/SERVERS\",\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS\"]}},{\"id\":\"/providers/Microsoft.Support/services/7ef8ab5c-3c21-c342-8eed-2b5a8fc7fba3\",\"name\":\"7ef8ab5c-3c21-c342-8eed-2b5a8fc7fba3\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Database for MySQL flexible server - Preview\",\"resourceTypes\":[\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS\"]}},{\"id\":\"/providers/Microsoft.Support/services/32b3cec2-0abd-1d18-68cc-9183b15b7da1\",\"name\":\"32b3cec2-0abd-1d18-68cc-9183b15b7da1\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Database for MySQL single server\",\"resourceTypes\":[\"MICROSOFT.DBFORMYSQL/SERVERS\"]}},{\"id\":\"/providers/Microsoft.Support/services/d4d4e6ba-73e5-a166-549b-4643b78f4d6f\",\"name\":\"d4d4e6ba-73e5-a166-549b-4643b78f4d6f\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Database for PostgreSQL\",\"resourceTypes\":[\"MICROSOFT.DBFORPOSTGRESQL/SERVERS\",\"MICROSOFT.DBFORPOSTGRESQL/SERVERSV2\",\"MICROSOFT.DBFORPOSTGRESQL/SERVERGROUPS\",\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS\",\"Microsoft.DBforPostgreSQL/servergroupsv2\"]}},{\"id\":\"/providers/Microsoft.Support/services/191ddd48-d790-61f4-315b-f621cdd66a91\",\"name\":\"191ddd48-d790-61f4-315b-f621cdd66a91\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Database for PostgreSQL flexible server\",\"resourceTypes\":[\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS\"]}},{\"id\":\"/providers/Microsoft.Support/services/aec6da31-9ef4-f890-e34c-ec1fbac8e6b1\",\"name\":\"aec6da31-9ef4-f890-e34c-ec1fbac8e6b1\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Database for PostgreSQL Hyperscale (Citus)\",\"resourceTypes\":[\"MICROSOFT.DBFORPOSTGRESQL/SERVERSV2\",\"Microsoft.DBforPostgreSQL/servergroupsv2\",\"MICROSOFT.DBFORPOSTGRESQL/SERVERGROUPS\"]}},{\"id\":\"/providers/Microsoft.Support/services/12a55468-fa60-8943-45e2-338011722931\",\"name\":\"12a55468-fa60-8943-45e2-338011722931\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Database for PostgreSQL single server\",\"resourceTypes\":[\"MICROSOFT.DBFORPOSTGRESQL/SERVERS\"]}},{\"id\":\"/providers/Microsoft.Support/services/b9c52334-7da1-7360-b396-0406b0c9d3b7\",\"name\":\"b9c52334-7da1-7360-b396-0406b0c9d3b7\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Dedicated Host\",\"resourceTypes\":[\"Microsoft.Compute/hostGroups\",\"Microsoft.Compute/hostGroups/hosts\"]}},{\"id\":\"/providers/Microsoft.Support/services/cd9d74ec-8333-b326-f42f-303e223e04eb\",\"name\":\"cd9d74ec-8333-b326-f42f-303e223e04eb\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - DevOps Services\",\"resourceTypes\":[\"Microsoft.Visualstudio\"]}},{\"id\":\"/providers/Microsoft.Support/services/985987a3-2363-99eb-321b-c753677e0008\",\"name\":\"985987a3-2363-99eb-321b-c753677e0008\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Digital Twins\",\"resourceTypes\":[\"Microsoft.DigitalTwins\"]}},{\"id\":\"/providers/Microsoft.Support/services/f0269138-eb6e-a81a-10e9-17965b5683d4\",\"name\":\"f0269138-eb6e-a81a-10e9-17965b5683d4\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - DNS\",\"resourceTypes\":[\"MICROSOFT.NETWORK/DNSZONES\"]}},{\"id\":\"/providers/Microsoft.Support/services/5b807b4a-60ff-3256-faf1-5934bd59b4b9\",\"name\":\"5b807b4a-60ff-3256-faf1-5934bd59b4b9\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Edge Hardware Center - Preview\",\"resourceTypes\":[\"Microsoft.EdgeOrder\"]}},{\"id\":\"/providers/Microsoft.Support/services/3b799b70-420a-6397-e69c-853341d0eab5\",\"name\":\"3b799b70-420a-6397-e69c-853341d0eab5\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Firewall\",\"resourceTypes\":[\"Microsoft.Network/azureFirewalls\",\"Microsoft.Network/firewallPolicies\"]}},{\"id\":\"/providers/Microsoft.Support/services/f1e803c0-d4aa-156d-8507-3f9e5e4e1504\",\"name\":\"f1e803c0-d4aa-156d-8507-3f9e5e4e1504\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Firewall Manager\",\"resourceTypes\":[\"Microsoft.Network/firewallPolicies\",\"Microsoft.Network/firewallPolicies\"]}},{\"id\":\"/providers/Microsoft.Support/services/3d598a6c-5432-adab-e87a-1dfdbb562302\",\"name\":\"3d598a6c-5432-adab-e87a-1dfdbb562302\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - FXT Edge Filer\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/be63f24b-d7d7-fac8-d753-388658582f99\",\"name\":\"be63f24b-d7d7-fac8-d753-388658582f99\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Healthcare APIs - Preview\",\"resourceTypes\":[\"Microsoft.HealthcareApis\",\"Microsoft.HealthcareApis/workspaces\"]}},{\"id\":\"/providers/Microsoft.Support/services/8ab9233e-aa65-ab0a-cf6f-7e4ec528556a\",\"name\":\"8ab9233e-aa65-ab0a-cf6f-7e4ec528556a\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Healthcare Bot\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/036bd7f8-ead3-3a43-e7f9-cda1e3ad0120\",\"name\":\"036bd7f8-ead3-3a43-e7f9-cda1e3ad0120\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Import-Export Service\",\"resourceTypes\":[\"Microsoft.ImportExport\",\"Microsoft.ImportExport/jobs\"]}},{\"id\":\"/providers/Microsoft.Support/services/8168c456-2014-a581-dde8-d25e47d964c8\",\"name\":\"8168c456-2014-a581-dde8-d25e47d964c8\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Information Protection\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/e29406fa-af70-5215-e29b-9c9b7f5204d3\",\"name\":\"e29406fa-af70-5215-e29b-9c9b7f5204d3\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Kinect Dev Kit\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/32545be3-202c-9cd6-2031-98e763d29b5e\",\"name\":\"32545be3-202c-9cd6-2031-98e763d29b5e\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Kubernetes Service on Azure Stack HCI\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/ef44dd7b-4344-edcf-2eb1-f6f094fd46a3\",\"name\":\"ef44dd7b-4344-edcf-2eb1-f6f094fd46a3\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Migrate\",\"resourceTypes\":[\"Microsoft.Migrate/migrateProjects\"]}},{\"id\":\"/providers/Microsoft.Support/services/06d6dec8-469a-b652-f8e8-61e47c34efef\",\"name\":\"06d6dec8-469a-b652-f8e8-61e47c34efef\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - mobile app (for Android & iOS)\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/86490df1-3db5-08c6-1f6b-4138be52adb9\",\"name\":\"86490df1-3db5-08c6-1f6b-4138be52adb9\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Monitor for SAP Solutions - Preview\",\"resourceTypes\":[\"Microsoft.HanaOnAzure/sapMonitors\"]}},{\"id\":\"/providers/Microsoft.Support/services/00743e6b-ddfd-e1cb-b90e-2a9f8d1c2a52\",\"name\":\"00743e6b-ddfd-e1cb-b90e-2a9f8d1c2a52\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - NetApp Files\",\"resourceTypes\":[\"Microsoft.NetApp/netAppAccounts\",\"Microsoft.NetApp/netAppAccounts/capacityPools\",\"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes\"]}},{\"id\":\"/providers/Microsoft.Support/services/1d0798a7-8ca0-280e-66d6-bee58f544e67\",\"name\":\"1d0798a7-8ca0-280e-66d6-bee58f544e67\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Network Function Manager - Preview\",\"resourceTypes\":[\"MICROSOFT.HybridNetwork\"]}},{\"id\":\"/providers/Microsoft.Support/services/25aa2af2-9b6e-96b5-ce85-d784a0fea138\",\"name\":\"25aa2af2-9b6e-96b5-ce85-d784a0fea138\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Object Anchors - Preview\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/03dc29df-b9ef-75cc-9bce-d87f55dd0f73\",\"name\":\"03dc29df-b9ef-75cc-9bce-d87f55dd0f73\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Percept - Preview\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/10b4ca52-06e3-3064-3788-5b396ae8ff45\",\"name\":\"10b4ca52-06e3-3064-3788-5b396ae8ff45\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Policy\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/50cb0c81-4dee-0e4e-d7bd-caa5560e76af\",\"name\":\"50cb0c81-4dee-0e4e-d7bd-caa5560e76af\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Private Link\",\"resourceTypes\":[\"Microsoft.Network/privateLinkServices\",\"Microsoft.Network/privateEndpoints\"]}},{\"id\":\"/providers/Microsoft.Support/services/a674bd96-b6a2-0636-3fb9-c665e6497b88\",\"name\":\"a674bd96-b6a2-0636-3fb9-c665e6497b88\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Purview - Preview\",\"resourceTypes\":[\"Microsoft.Purview/Accounts\"]}},{\"id\":\"/providers/Microsoft.Support/services/c20fd445-607c-6af4-8dff-7e248c950344\",\"name\":\"c20fd445-607c-6af4-8dff-7e248c950344\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Quantum - Preview\",\"resourceTypes\":[\"Microsoft.Quantum/Workspaces\"]}},{\"id\":\"/providers/Microsoft.Support/services/b701b8d6-fc99-aba8-bab9-bc2e171fa89c\",\"name\":\"b701b8d6-fc99-aba8-bab9-bc2e171fa89c\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - RedHat OpenShift\",\"resourceTypes\":[\"Microsoft.RedHatOpenShift/OpenShiftClusters\"]}},{\"id\":\"/providers/Microsoft.Support/services/cb6b214b-fbeb-8fd1-a055-3d60bbe81c28\",\"name\":\"cb6b214b-fbeb-8fd1-a055-3d60bbe81c28\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Resource Graph\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/3366336e-70d9-3450-f04d-5eecce9374fe\",\"name\":\"3366336e-70d9-3450-f04d-5eecce9374fe\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Resource Mover\",\"resourceTypes\":[\"Microsoft.Migrate/MoveCollections\"]}},{\"id\":\"/providers/Microsoft.Support/services/c0ea59a0-318d-3a01-8b10-eeb155952e7c\",\"name\":\"c0ea59a0-318d-3a01-8b10-eeb155952e7c\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Route Server - Preview\",\"resourceTypes\":[\"Microsoft.Network/virtualHubs\"]}},{\"id\":\"/providers/Microsoft.Support/services/7ab45c4c-7827-cedf-07bd-2b38f63540ae\",\"name\":\"7ab45c4c-7827-cedf-07bd-2b38f63540ae\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - RTOS\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/9cd60433-a646-8748-7e7f-fd0781fea78e\",\"name\":\"9cd60433-a646-8748-7e7f-fd0781fea78e\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Sentinel\",\"resourceTypes\":[\"Microsoft.SecurityInsights\"]}},{\"id\":\"/providers/Microsoft.Support/services/b1d432df-e9cc-ff08-d261-32586b843bc1\",\"name\":\"b1d432df-e9cc-ff08-d261-32586b843bc1\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Site Recovery\",\"resourceTypes\":[\"Microsoft.RecoveryServices/vaults\"]}},{\"id\":\"/providers/Microsoft.Support/services/a6475480-6048-1d77-76fc-3118551f24c1\",\"name\":\"a6475480-6048-1d77-76fc-3118551f24c1\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Sphere\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/2950380d-f11a-136b-1b95-017b71f25ef8\",\"name\":\"2950380d-f11a-136b-1b95-017b71f25ef8\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Stack Edge\",\"resourceTypes\":[\"Microsoft.DataBoxEdge/DataBoxEdgeDevices\"]}},{\"id\":\"/providers/Microsoft.Support/services/297c5dfa-56dd-8040-1ae5-88f78d60e055\",\"name\":\"297c5dfa-56dd-8040-1ae5-88f78d60e055\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Stack Edge Mini R\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/65f78722-e5a1-858a-6d66-0d5640d688a2\",\"name\":\"65f78722-e5a1-858a-6d66-0d5640d688a2\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Stack Edge Pro R\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/5804950e-8756-4711-367a-57965175f0ad\",\"name\":\"5804950e-8756-4711-367a-57965175f0ad\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Stack HCI\",\"resourceTypes\":[\"Microsoft.AzureStackHCI/clusters\"]}},{\"id\":\"/providers/Microsoft.Support/services/32d322a8-acae-202d-e9a9-7371dccf381b\",\"name\":\"32d322a8-acae-202d-e9a9-7371dccf381b\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Stack Hub\",\"resourceTypes\":[\"Microsoft.AzureStack/registrations\"]}},{\"id\":\"/providers/Microsoft.Support/services/47e87a02-77c6-23d1-bdd3-858d9b64d4e0\",\"name\":\"47e87a02-77c6-23d1-bdd3-858d9b64d4e0\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Stack Hub Ruggedized\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/1dcbb98a-fbff-9e2a-08c6-0f1fbe934906\",\"name\":\"1dcbb98a-fbff-9e2a-08c6-0f1fbe934906\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - StorSimple 1200 Series\",\"resourceTypes\":[\"MICROSOFT.STORSIMPLE/MANAGERS\",\"MICROSOFT.STORSIMPLEBVTD2/MANAGERS\"]}},{\"id\":\"/providers/Microsoft.Support/services/9fccedfd-3d56-635e-e377-c72e2cdb402f\",\"name\":\"9fccedfd-3d56-635e-e377-c72e2cdb402f\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - StorSimple 8000 Series\",\"resourceTypes\":[\"MICROSOFT.STORSIMPLE/MANAGERS\",\"MICROSOFT.STORSIMPLEBVTD2/MANAGERS\"]}},{\"id\":\"/providers/Microsoft.Support/services/20c0b7e3-3084-2fc5-5530-1ff0cc21e885\",\"name\":\"20c0b7e3-3084-2fc5-5530-1ff0cc21e885\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Synapse Analytics\",\"resourceTypes\":[\"MICROSOFT.SQL/SERVERS\",\"MICROSOFT.SQL/SERVERS/DATABASES\",\"Microsoft.Synapse\",\"MICROSOFT.SYNAPSE/WORKSPACES\",\"MICROSOFT.SYNAPSE/WORKSPACES/BIGDATAPOOLS\",\"MICROSOFT.SYNAPSE/WORKSPACES/SQLPOOLS\"]}},{\"id\":\"/providers/Microsoft.Support/services/9112da51-73b5-92d8-3f2e-1fddb504f4b5\",\"name\":\"9112da51-73b5-92d8-3f2e-1fddb504f4b5\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Synapse Pathway\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/0e8916e5-c267-ff25-d3e2-d43470730254\",\"name\":\"0e8916e5-c267-ff25-d3e2-d43470730254\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Video Analyzer (AVA) - Preview\",\"resourceTypes\":[\"Microsoft.Media/VideoAnalyzers\"]}},{\"id\":\"/providers/Microsoft.Support/services/63cefc01-98f2-7ef4-2b5f-0c4b268a7dad\",\"name\":\"63cefc01-98f2-7ef4-2b5f-0c4b268a7dad\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Virtual Desktop\",\"resourceTypes\":[\"Microsoft.DesktopVirtualization/workspace\",\"Microsoft.Desktopvirtualization/hostpools\",\"Microsoft.DesktopVirtualization/hostpools/hostpool/\",\"Microsoft.DesktopVirtualization/appgroup\",\"Microsoft.DesktopVirtualization/applicationgroups\",\"Microsoft.DesktopVirtualization/workspaces\"]}},{\"id\":\"/providers/Microsoft.Support/services/8df50d5e-6cdd-3a3a-0cb5-95dbef9e09ab\",\"name\":\"8df50d5e-6cdd-3a3a-0cb5-95dbef9e09ab\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - VM Image Builder\",\"resourceTypes\":[\"Microsoft.VirtualMachineImages\"]}},{\"id\":\"/providers/Microsoft.Support/services/e7b24d57-0431-7d60-a4bf-e28adc11d23e\",\"name\":\"e7b24d57-0431-7d60-a4bf-e28adc11d23e\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - VMware Solution\",\"resourceTypes\":[\"Microsoft.AVS/privateClouds\"]}},{\"id\":\"/providers/Microsoft.Support/services/440fc530-a802-3276-f67b-7c39d1c8e972\",\"name\":\"440fc530-a802-3276-f67b-7c39d1c8e972\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - VMware Solution by CloudSimple\",\"resourceTypes\":[\"Microsoft.VMwareCloudSimple\"]}},{\"id\":\"/providers/Microsoft.Support/services/a4ecd5be-8461-dde6-6761-353dc7d7bf54\",\"name\":\"a4ecd5be-8461-dde6-6761-353dc7d7bf54\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Web PubSub Service - Preview\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/ec9fcee4-7ede-9ba9-7edb-0e6b95428ea5\",\"name\":\"ec9fcee4-7ede-9ba9-7edb-0e6b95428ea5\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Workbooks\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/468c696a-3e6b-a470-a3c9-1b59cd4abae4\",\"name\":\"468c696a-3e6b-a470-a3c9-1b59cd4abae4\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"BareMetal - Infrastructure\",\"resourceTypes\":[\"Microsoft.HanaOnAzure/sapMonitors\",\"Microsoft.BareMetalInfrastructure/bareMetalInstances\"]}},{\"id\":\"/providers/Microsoft.Support/services/ffc9bb42-93e4-eb40-5421-ba3537f3a012\",\"name\":\"ffc9bb42-93e4-eb40-5421-ba3537f3a012\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Bastion\",\"resourceTypes\":[\"Microsoft.Network/bastionHosts\"]}},{\"id\":\"/providers/Microsoft.Support/services/3f33d852-e61f-d835-8217-a9a677d96914\",\"name\":\"3f33d852-e61f-d835-8217-a9a677d96914\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Batch - Service\",\"resourceTypes\":[\"MICROSOFT.BATCH/BATCHACCOUNTS\"]}},{\"id\":\"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc\",\"name\":\"517f2da6-78fd-0498-4e22-ad26996b1dfc\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Billing\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/a2c69e6c-34b6-fc5d-0f35-b496a071c28d\",\"name\":\"a2c69e6c-34b6-fc5d-0f35-b496a071c28d\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Blob - Storage\",\"resourceTypes\":[\"MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS\",\"MICROSOFT.STORAGE/STORAGEACCOUNTS\"]}},{\"id\":\"/providers/Microsoft.Support/services/f26f06d5-c3b1-0372-8c5b-93a371ec434c\",\"name\":\"f26f06d5-c3b1-0372-8c5b-93a371ec434c\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Blueprint - - Preview\",\"resourceTypes\":[\"Microsoft.Blueprint/BLUEPRINTS\"]}},{\"id\":\"/providers/Microsoft.Support/services/98134488-9bd9-db12-619c-06636d1ee55e\",\"name\":\"98134488-9bd9-db12-619c-06636d1ee55e\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Bot - Service\",\"resourceTypes\":[\"Microsoft.BotService/botServices\"]}},{\"id\":\"/providers/Microsoft.Support/services/275635f1-6a9b-cca1-af9e-c379b30890ff\",\"name\":\"275635f1-6a9b-cca1-af9e-c379b30890ff\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Cache - for Redis\",\"resourceTypes\":[\"MICROSOFT.CACHE/REDIS\"]}},{\"id\":\"/providers/Microsoft.Support/services/18f0ceb2-fe97-722d-f789-0dfcde3ab2e4\",\"name\":\"18f0ceb2-fe97-722d-f789-0dfcde3ab2e4\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Cache - for Redis Enterprise\",\"resourceTypes\":[\"MICROSOFT.CACHE/REDISENTERPRISE\"]}},{\"id\":\"/providers/Microsoft.Support/services/2f9ed23d-9575-75e3-cdfb-3e9a5ad5223c\",\"name\":\"2f9ed23d-9575-75e3-cdfb-3e9a5ad5223c\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Cloud - App Discovery\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/7dc03991-4dcf-cf5a-904f-35a243ca5551\",\"name\":\"7dc03991-4dcf-cf5a-904f-35a243ca5551\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Cloud - App Security\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/c4b5fb5c-e277-0fba-1a6e-967912edac0c\",\"name\":\"c4b5fb5c-e277-0fba-1a6e-967912edac0c\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Cloud - Service (Extended Support) (Web roles/Worker roles)\",\"resourceTypes\":[\"Microsoft.Compute/cloudServices\",\"MICROSOFT.CLASSICCOMPUTE/DOMAINNAMES\"]}},{\"id\":\"/providers/Microsoft.Support/services/e79dcabe-5f77-3326-2112-74487e1e5f78\",\"name\":\"e79dcabe-5f77-3326-2112-74487e1e5f78\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Cloud - Services (Web roles/Worker roles)\",\"resourceTypes\":[\"MICROSOFT.CLASSICCOMPUTE/DOMAINNAMES\",\"Microsoft.Compute/cloudServices\"]}},{\"id\":\"/providers/Microsoft.Support/services/70a6ce77-640d-fb3b-d2e2-942c479a929b\",\"name\":\"70a6ce77-640d-fb3b-d2e2-942c479a929b\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Cloud - Shell\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/87112f97-cf14-d714-03cb-28af2e422e31\",\"name\":\"87112f97-cf14-d714-03cb-28af2e422e31\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Cognitive - Services\",\"resourceTypes\":[\"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"]}},{\"id\":\"/providers/Microsoft.Support/services/c811355a-31ae-acc0-7364-60bc67ab4ca7\",\"name\":\"c811355a-31ae-acc0-7364-60bc67ab4ca7\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Cognitive - Services-All-in-One Key\",\"resourceTypes\":[\"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"]}},{\"id\":\"/providers/Microsoft.Support/services/3c9e9005-bd01-4331-8483-68c4c0a9c1b9\",\"name\":\"3c9e9005-bd01-4331-8483-68c4c0a9c1b9\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Cognitive - Services-Anomaly Detector\",\"resourceTypes\":[\"Microsoft.CognitiveServices/Accounts\"]}},{\"id\":\"/providers/Microsoft.Support/services/9e65c540-e7ae-b43c-1e0a-ba8dc860dbbd\",\"name\":\"9e65c540-e7ae-b43c-1e0a-ba8dc860dbbd\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Cognitive - Services-Bing Custom Search\",\"resourceTypes\":[\"Microsoft.CognitiveServices/Accounts\"]}},{\"id\":\"/providers/Microsoft.Support/services/355c72f1-6700-8523-f274-8b65d1f10c7b\",\"name\":\"355c72f1-6700-8523-f274-8b65d1f10c7b\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Cognitive - Services-Bing Search\",\"resourceTypes\":[\"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"]}},{\"id\":\"/providers/Microsoft.Support/services/71e0f29e-91d4-acb4-329e-fb16cd7c366e\",\"name\":\"71e0f29e-91d4-acb4-329e-fb16cd7c366e\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Cognitive - Services-Bing Spell Check\",\"resourceTypes\":[\"Microsoft.CognitiveServices/Accounts\"]}},{\"id\":\"/providers/Microsoft.Support/services/00677266-37a0-73ba-d7c4-ad3c814b2b11\",\"name\":\"00677266-37a0-73ba-d7c4-ad3c814b2b11\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Cognitive - Services-Computer Vision\",\"resourceTypes\":[\"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"]}},{\"id\":\"/providers/Microsoft.Support/services/7f35b180-0014-494f-df00-68fc50a92976\",\"name\":\"7f35b180-0014-494f-df00-68fc50a92976\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Cognitive - Services-Content Moderator\",\"resourceTypes\":[\"Microsoft.CognitiveServices/Accounts\"]}},{\"id\":\"/providers/Microsoft.Support/services/6dfefaed-7312-8350-bbe6-c452fe5749c7\",\"name\":\"6dfefaed-7312-8350-bbe6-c452fe5749c7\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Cognitive - Services-Custom Vision\",\"resourceTypes\":[\"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"]}},{\"id\":\"/providers/Microsoft.Support/services/01cde781-0618-be89-60ce-14ca8e939c7d\",\"name\":\"01cde781-0618-be89-60ce-14ca8e939c7d\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Cognitive - Services-Face API\",\"resourceTypes\":[\"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"]}},{\"id\":\"/providers/Microsoft.Support/services/1a8bf6aa-6385-da93-8884-b1de5934f242\",\"name\":\"1a8bf6aa-6385-da93-8884-b1de5934f242\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Cognitive - Services-Form Recognizer\",\"resourceTypes\":[\"Microsoft.CognitiveServices/Accounts\"]}},{\"id\":\"/providers/Microsoft.Support/services/e78c1fb0-1fd4-7ad6-df28-6b8d6f2c803f\",\"name\":\"e78c1fb0-1fd4-7ad6-df28-6b8d6f2c803f\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Cognitive - Services-Immersive Reader\",\"resourceTypes\":[\"Microsoft.CognitiveServices/Accounts\"]}},{\"id\":\"/providers/Microsoft.Support/services/7faf083e-7dd5-a35b-ba18-52eeac29d9a1\",\"name\":\"7faf083e-7dd5-a35b-ba18-52eeac29d9a1\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Cognitive - Services-LUIS\",\"resourceTypes\":[\"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"]}},{\"id\":\"/providers/Microsoft.Support/services/97c076d2-d123-a335-a64b-362198ae7004\",\"name\":\"97c076d2-d123-a335-a64b-362198ae7004\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Cognitive - Services-Metrics Advisor\",\"resourceTypes\":[\"Microsoft.CognitiveServices/Accounts\"]}},{\"id\":\"/providers/Microsoft.Support/services/13fc6b1d-b65d-0800-19e3-77521c7e4e09\",\"name\":\"13fc6b1d-b65d-0800-19e3-77521c7e4e09\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Cognitive - Services-Personalizer\",\"resourceTypes\":[\"Microsoft.CognitiveServices/Accounts\"]}},{\"id\":\"/providers/Microsoft.Support/services/9a2cd2eb-f793-9717-a145-3497086f40b4\",\"name\":\"9a2cd2eb-f793-9717-a145-3497086f40b4\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Cognitive - Services-QnA Maker\",\"resourceTypes\":[\"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"]}},{\"id\":\"/providers/Microsoft.Support/services/8d2d990b-173c-fbee-3913-05e3f338b67b\",\"name\":\"8d2d990b-173c-fbee-3913-05e3f338b67b\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Cognitive - Services-Speech Services\",\"resourceTypes\":[\"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"]}},{\"id\":\"/providers/Microsoft.Support/services/b1bfd43f-f4f6-7e3c-4a01-ed74b71b6dd7\",\"name\":\"b1bfd43f-f4f6-7e3c-4a01-ed74b71b6dd7\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Cognitive - Services-Text Analytics\",\"resourceTypes\":[\"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"]}},{\"id\":\"/providers/Microsoft.Support/services/4bc4301f-b40e-080d-9252-a523f88a16e7\",\"name\":\"4bc4301f-b40e-080d-9252-a523f88a16e7\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Cognitive - Services-Translator Text\",\"resourceTypes\":[\"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"]}},{\"id\":\"/providers/Microsoft.Support/services/2e9d497d-e486-8d76-3582-ad201c974730\",\"name\":\"2e9d497d-e486-8d76-3582-ad201c974730\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Communication - Services\",\"resourceTypes\":[\"Microsoft.Communication/CommunicationServices\"]}},{\"id\":\"/providers/Microsoft.Support/services/6db223ca-4ea9-41b9-af8a-61a0a5b6a150\",\"name\":\"6db223ca-4ea9-41b9-af8a-61a0a5b6a150\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Confidential - Ledger - Preview\",\"resourceTypes\":[\"Microsoft.ConfidentialLedger\"]}},{\"id\":\"/providers/Microsoft.Support/services/6f3d78e8-246d-880c-acec-31033f3a7a8f\",\"name\":\"6f3d78e8-246d-880c-acec-31033f3a7a8f\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Confluent - on Azure\",\"resourceTypes\":[\"microsoft.confluent/organizations\"]}},{\"id\":\"/providers/Microsoft.Support/services/fd718335-8143-4759-bb14-cf7cff4f585e\",\"name\":\"fd718335-8143-4759-bb14-cf7cff4f585e\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Container - Instances\",\"resourceTypes\":[\"MICROSOFT.CONTAINERINSTANCE/CONTAINERGROUPS\"]}},{\"id\":\"/providers/Microsoft.Support/services/f100a6d5-17df-c517-a2bc-ecc2a5bfb975\",\"name\":\"f100a6d5-17df-c517-a2bc-ecc2a5bfb975\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Container - Registry\",\"resourceTypes\":[\"MICROSOFT.CONTAINERREGISTRY/REGISTRIES\"]}},{\"id\":\"/providers/Microsoft.Support/services/d9516a10-74b5-45f4-943d-a5281d7cf1bb\",\"name\":\"d9516a10-74b5-45f4-943d-a5281d7cf1bb\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Cosmos - DB\",\"resourceTypes\":[\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\"]}},{\"id\":\"/providers/Microsoft.Support/services/33476b0f-7f52-9f63-56d0-5924636304ff\",\"name\":\"33476b0f-7f52-9f63-56d0-5924636304ff\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Customer - Lockbox for Microsoft Azure\",\"resourceTypes\":[\"Microsoft.CustomerLockbox\"]}},{\"id\":\"/providers/Microsoft.Support/services/53cdda84-33c0-81db-6a25-adaac64419d6\",\"name\":\"53cdda84-33c0-81db-6a25-adaac64419d6\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"CycleCloud\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/a091fbc6-3624-42e8-4b3c-654a29d6958e\",\"name\":\"a091fbc6-3624-42e8-4b3c-654a29d6958e\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Data - Box\",\"resourceTypes\":[\"MICROSOFT.DATABOX/JOBS\"]}},{\"id\":\"/providers/Microsoft.Support/services/5d6f97e5-c9cf-e3c7-98e0-6011d194d84f\",\"name\":\"5d6f97e5-c9cf-e3c7-98e0-6011d194d84f\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Data - Box Gateway\",\"resourceTypes\":[\"Microsoft.DataBoxGateway\",\"Microsoft.Storage\"]}},{\"id\":\"/providers/Microsoft.Support/services/9a7df480-f592-a980-906c-bd1fd3060aa8\",\"name\":\"9a7df480-f592-a980-906c-bd1fd3060aa8\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Data - Catalog\",\"resourceTypes\":[\"MICROSOFT.DATACATALOG/CATALOGS\"]}},{\"id\":\"/providers/Microsoft.Support/services/f0bd9b83-fcdc-15ec-a9db-47068d512d4f\",\"name\":\"f0bd9b83-fcdc-15ec-a9db-47068d512d4f\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Data - Collection Rules and Agent\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/0d06686e-fac3-fde3-a8c1-6dfbc8bd3865\",\"name\":\"0d06686e-fac3-fde3-a8c1-6dfbc8bd3865\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Data - Explorer\",\"resourceTypes\":[\"Microsoft.Kusto/Clusters\",\"Microsoft.Kusto/Databases\"]}},{\"id\":\"/providers/Microsoft.Support/services/113715b9-70c6-3019-fa70-5d9f0c15c610\",\"name\":\"113715b9-70c6-3019-fa70-5d9f0c15c610\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Data - Factory\",\"resourceTypes\":[\"MICROSOFT.DATAFACTORY/DATAFACTORIES\",\"MICROSOFT.DATAFACTORY/FACTORIES\"]}},{\"id\":\"/providers/Microsoft.Support/services/eea96939-cf20-792a-ed0a-f11eb11336df\",\"name\":\"eea96939-cf20-792a-ed0a-f11eb11336df\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Data - Lake Analytics\",\"resourceTypes\":[\"MICROSOFT.DATALAKEANALYTICS/ACCOUNTS\",\"MICROSOFT.DATALAKEANALYTICS/ACCOUNTS/STORAGEACCOUNTS\"]}},{\"id\":\"/providers/Microsoft.Support/services/7ecbaeae-c1bc-285f-a3bd-b5a3ba00b294\",\"name\":\"7ecbaeae-c1bc-285f-a3bd-b5a3ba00b294\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Data - Lake Storage Gen1\",\"resourceTypes\":[\"MICROSOFT.DATALAKESTORE/ACCOUNTS\"]}},{\"id\":\"/providers/Microsoft.Support/services/a95c4ceb-9637-4484-2205-d1162a7d2249\",\"name\":\"a95c4ceb-9637-4484-2205-d1162a7d2249\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Data - Lake Storage Gen2\",\"resourceTypes\":[\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"Wandisco.Fusion/fusionGroups\",\"Wandisco.Fusion/migrators\"]}},{\"id\":\"/providers/Microsoft.Support/services/0c1a625e-85d1-f83b-7248-2367293c9d85\",\"name\":\"0c1a625e-85d1-f83b-7248-2367293c9d85\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Data - Share\",\"resourceTypes\":[\"Microsoft.DataShare/accounts\"]}},{\"id\":\"/providers/Microsoft.Support/services/8c615be4-9081-f10c-5866-afa4fab9666d\",\"name\":\"8c615be4-9081-f10c-5866-afa4fab9666d\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Database - Migration Service\",\"resourceTypes\":[\"MICROSOFT.DATAMIGRATION/SERVICES\",\"Microsoft.DataMigration/SQLMigrationServices\"]}},{\"id\":\"/providers/Microsoft.Support/services/3461f86b-df79-07f2-aad9-34a81b2d9023\",\"name\":\"3461f86b-df79-07f2-aad9-34a81b2d9023\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Databricks\",\"resourceTypes\":[\"MICROSOFT.DATABRICKS/WORKSPACES\"]}},{\"id\":\"/providers/Microsoft.Support/services/251a4e5f-1aac-be01-3279-4249c348b4cb\",\"name\":\"251a4e5f-1aac-be01-3279-4249c348b4cb\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Datadog - on Azure\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/d22650a0-c129-647b-967c-fb18c83584c6\",\"name\":\"d22650a0-c129-647b-967c-fb18c83584c6\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"DDOS - Protection\",\"resourceTypes\":[\"MICROSOFT.NETWORK/DDOSPROTECTIONPLANS\"]}},{\"id\":\"/providers/Microsoft.Support/services/7d1ce754-b825-74b6-8022-87193cd96b6e\",\"name\":\"7d1ce754-b825-74b6-8022-87193cd96b6e\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Dedicated - HSM\",\"resourceTypes\":[\"Microsoft.HardwareSecurityModules/DedicatedHSM\"]}},{\"id\":\"/providers/Microsoft.Support/services/6859f4e8-4a1d-13e4-f276-6d055007e83d\",\"name\":\"6859f4e8-4a1d-13e4-f276-6d055007e83d\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Defender - for Endpoint\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/82c88f35-1b8e-f274-ec11-c6efdd6dd099\",\"name\":\"82c88f35-1b8e-f274-ec11-c6efdd6dd099\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Defender - for IoT\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/94332e54-73b0-b8e3-306e-db3ad13d950b\",\"name\":\"94332e54-73b0-b8e3-306e-db3ad13d950b\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Defender - for Office 365\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/1977ac05-0469-1162-4947-d733fb83040e\",\"name\":\"1977ac05-0469-1162-4947-d733fb83040e\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Deployment - Manager Service Topology - Preview\",\"resourceTypes\":[\"Microsoft.DeploymentManager\"]}},{\"id\":\"/providers/Microsoft.Support/services/546aaccb-cb73-2d7a-546f-e4001c2a0670\",\"name\":\"546aaccb-cb73-2d7a-546f-e4001c2a0670\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Device - Update for IoT Hub - Preview\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/5405fb26-173b-7571-9998-98e23cd8643d\",\"name\":\"5405fb26-173b-7571-9998-98e23cd8643d\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"DevTest - Labs\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/39dc26f0-c1b1-2323-c39f-3ae3860e0c37\",\"name\":\"39dc26f0-c1b1-2323-c39f-3ae3860e0c37\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Diagnostic - Logs and Diagnostic Settings\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/41331489-2fbf-a39d-d107-fefba43bc4af\",\"name\":\"41331489-2fbf-a39d-d107-fefba43bc4af\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Disk - Pools\",\"resourceTypes\":[\"MICROSOFT.STORAGEPOOL\",\"MICROSOFT.STORAGEPOOL/DISKPOOLS\",\"MICROSOFT.STORAGEPOOL/ISCITARGETS\"]}},{\"id\":\"/providers/Microsoft.Support/services/8b583bd0-6368-dc07-8719-f7d94a4ea536\",\"name\":\"8b583bd0-6368-dc07-8719-f7d94a4ea536\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Elastic - on Azure - Preview\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/a79c6645-e39b-3410-6e3c-24c6b96b616b\",\"name\":\"a79c6645-e39b-3410-6e3c-24c6b96b616b\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Enrollment - administration\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/bfe4c4f0-96eb-41a9-a9aa-23a3b5ed9974\",\"name\":\"bfe4c4f0-96eb-41a9-a9aa-23a3b5ed9974\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Event - Grid\",\"resourceTypes\":[\"MICROSOFT.EVENTGRID/TOPICS\"]}},{\"id\":\"/providers/Microsoft.Support/services/e8b3dd28-f3eb-c73f-e03a-20159685defa\",\"name\":\"e8b3dd28-f3eb-c73f-e03a-20159685defa\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Event - Grid on Kubernetes with Azure Arc - Preview\",\"resourceTypes\":[\"Microsoft.EventGrid\"]}},{\"id\":\"/providers/Microsoft.Support/services/4fa35c58-016c-a25b-4105-bd667c24ab1f\",\"name\":\"4fa35c58-016c-a25b-4105-bd667c24ab1f\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Event - Hubs\",\"resourceTypes\":[\"MICROSOFT.EVENTHUB/NAMESPACES\"]}},{\"id\":\"/providers/Microsoft.Support/services/48ffed53-baf4-c26a-c7a1-4bea807be2a0\",\"name\":\"48ffed53-baf4-c26a-c7a1-4bea807be2a0\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Event - Hubs on Azure Stack Hub\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/759b4975-eee7-178d-6996-31047d078bf2\",\"name\":\"759b4975-eee7-178d-6996-31047d078bf2\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"ExpressRoute\",\"resourceTypes\":[\"MICROSOFT.NETWORK/EXPRESSROUTECIRCUITS\"]}},{\"id\":\"/providers/Microsoft.Support/services/ce989245-7b7b-ab4f-ac5a-a4ca2ee9d2a2\",\"name\":\"ce989245-7b7b-ab4f-ac5a-a4ca2ee9d2a2\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"ExpressRoute - Service Provider\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/30dfd88b-b455-1748-a4a0-e4c5aa795663\",\"name\":\"30dfd88b-b455-1748-a4a0-e4c5aa795663\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Files - Storage\",\"resourceTypes\":[\"MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS\",\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"MICROSOFT.STORAGESYNC/STORAGESYNCSERVICES\"]}},{\"id\":\"/providers/Microsoft.Support/services/fafcf178-45ee-85df-ef14-982729bf2f82\",\"name\":\"fafcf178-45ee-85df-ef14-982729bf2f82\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Front - Door Service\",\"resourceTypes\":[\"MICROSOFT.NETWORK/FRONTDOORS\"]}},{\"id\":\"/providers/Microsoft.Support/services/2a1d6261-5ecd-a128-739f-9bd4f2154ba5\",\"name\":\"2a1d6261-5ecd-a128-739f-9bd4f2154ba5\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Front - Door Standard and Premium - Preview\",\"resourceTypes\":[\"microsoft.cdn/profiles\"]}},{\"id\":\"/providers/Microsoft.Support/services/5ce8de69-abba-65a0-e0e4-a684bcbc7931\",\"name\":\"5ce8de69-abba-65a0-e0e4-a684bcbc7931\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Function - App\",\"resourceTypes\":[\"MICROSOFT.WEB/SITES\"]}},{\"id\":\"/providers/Microsoft.Support/services/24629f4c-b450-03f7-aa4f-e2c48f422560\",\"name\":\"24629f4c-b450-03f7-aa4f-e2c48f422560\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Function - App on Azure Arc\",\"resourceTypes\":[\"Microsoft.Web/Sites\"]}},{\"id\":\"/providers/Microsoft.Support/services/427b19fb-0b81-d9e9-f443-83e78bb5d47f\",\"name\":\"427b19fb-0b81-d9e9-f443-83e78bb5d47f\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"GHAE\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/5ffad63a-3267-d6b7-2fa1-6d9134c1fa62\",\"name\":\"5ffad63a-3267-d6b7-2fa1-6d9134c1fa62\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"HDInsight - Service\",\"resourceTypes\":[\"MICROSOFT.HDINSIGHT/CLUSTERS\"]}},{\"id\":\"/providers/Microsoft.Support/services/e00b1ed8-fc24-fef4-6f4c-36d963708ae1\",\"name\":\"e00b1ed8-fc24-fef4-6f4c-36d963708ae1\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"High - Performance Computing (HPC)\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/6b415938-2927-0d9d-6c3c-fbacea64e42d\",\"name\":\"6b415938-2927-0d9d-6c3c-fbacea64e42d\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"HPC - Cache\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/ecba36d5-97f3-bc2f-33d0-f1bae2547fb8\",\"name\":\"ecba36d5-97f3-bc2f-33d0-f1bae2547fb8\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Insights - for Azure Cache for Redis\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/2f86862d-542a-a8a8-2b83-23f8eb578c23\",\"name\":\"2f86862d-542a-a8a8-2b83-23f8eb578c23\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Insights - for Azure Cosmos DB\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/a25f6c13-8267-c757-d267-94999f8b395b\",\"name\":\"a25f6c13-8267-c757-d267-94999f8b395b\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Insights - for Azure Data Explorer clusters - Preview\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/9f7ef27e-7bdb-0570-4e15-f50c870f03aa\",\"name\":\"9f7ef27e-7bdb-0570-4e15-f50c870f03aa\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Insights - for Azure Stack HCI - Preview\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/44557205-b0ce-df77-a5b5-5e145323f4a1\",\"name\":\"44557205-b0ce-df77-a5b5-5e145323f4a1\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Insights - for Containers\",\"resourceTypes\":[\"Microsoft.ContainerService/OpenshiftManagedclusters\"]}},{\"id\":\"/providers/Microsoft.Support/services/1a348719-34a3-be64-0c61-67030940048b\",\"name\":\"1a348719-34a3-be64-0c61-67030940048b\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Insights - for Key Vault\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/34efaf67-544f-5186-0680-6a67d789c694\",\"name\":\"34efaf67-544f-5186-0680-6a67d789c694\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Insights - for SQL - Preview\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/602a2167-4975-c8c4-6db6-5bf1081d80ec\",\"name\":\"602a2167-4975-c8c4-6db6-5bf1081d80ec\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Insights - for Storage accounts\",\"resourceTypes\":[\"MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS\",\"MICROSOFT.STORAGE/STORAGEACCOUNTS\"]}},{\"id\":\"/providers/Microsoft.Support/services/4268a408-46cf-347c-6806-09dc5967d2f6\",\"name\":\"4268a408-46cf-347c-6806-09dc5967d2f6\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Insights - for Virtual Machines\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/370cf612-d7bd-b9e5-5a3c-42532257212c\",\"name\":\"370cf612-d7bd-b9e5-5a3c-42532257212c\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Intelligent - Recommendations\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/fb35bf64-b744-16ba-68d1-e1853af0816e\",\"name\":\"fb35bf64-b744-16ba-68d1-e1853af0816e\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"IoT - Central\",\"resourceTypes\":[\"MICROSOFT.IOTCENTRAL/IOTAPPS\"]}},{\"id\":\"/providers/Microsoft.Support/services/ea37799f-166b-c702-e4d1-e17fa52b2984\",\"name\":\"ea37799f-166b-c702-e4d1-e17fa52b2984\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"IoT - Device Provisioning Service\",\"resourceTypes\":[\"MICROSOFT.DEVICES/PROVISIONINGSERVICES\"]}},{\"id\":\"/providers/Microsoft.Support/services/0ebfa061-1e74-5f8f-ed46-5a46e13e5d33\",\"name\":\"0ebfa061-1e74-5f8f-ed46-5a46e13e5d33\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"IoT - Edge\",\"resourceTypes\":[\"MICROSOFT.DEVICES/IOTHUBS\"]}},{\"id\":\"/providers/Microsoft.Support/services/b8b1c1dd-dfe1-63e8-cc06-e6a1a1c5a853\",\"name\":\"b8b1c1dd-dfe1-63e8-cc06-e6a1a1c5a853\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"IoT - Hub\",\"resourceTypes\":[\"MICROSOFT.DEVICES/IOTHUBS\"]}},{\"id\":\"/providers/Microsoft.Support/services/62381e65-b48a-0340-a46a-4f285da505db\",\"name\":\"62381e65-b48a-0340-a46a-4f285da505db\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"IoT - Hub on Azure Stack Hub - Preview\",\"resourceTypes\":[\"Microsoft.devices/iothubs\"]}},{\"id\":\"/providers/Microsoft.Support/services/4ba83714-c274-28d6-af7f-43c12863bf2f\",\"name\":\"4ba83714-c274-28d6-af7f-43c12863bf2f\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"IoT - SDKs\",\"resourceTypes\":[\"MICROSOFT.DEVICES/IOTHUBS\"]}},{\"id\":\"/providers/Microsoft.Support/services/00850ac8-e19a-8756-3969-3c1d5ef60c84\",\"name\":\"00850ac8-e19a-8756-3969-3c1d5ef60c84\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"IoT - Solution Accelerators\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/0283d26b-bad8-f0e2-37f4-86dc0328c710\",\"name\":\"0283d26b-bad8-f0e2-37f4-86dc0328c710\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Key - Vault\",\"resourceTypes\":[\"MICROSOFT.KEYVAULT/VAULTS\"]}},{\"id\":\"/providers/Microsoft.Support/services/8f1ddc5f-0c5e-50c7-9810-e01a8d1da925\",\"name\":\"8f1ddc5f-0c5e-50c7-9810-e01a8d1da925\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Kubernetes - (AKS Engine) on Azure Stack Hub\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/5a3a423f-8667-9095-1770-0a554a934512\",\"name\":\"5a3a423f-8667-9095-1770-0a554a934512\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Kubernetes - Service (AKS)\",\"resourceTypes\":[\"MICROSOFT.CONTAINERSERVICE/MANAGEDCLUSTERS\"]}},{\"id\":\"/providers/Microsoft.Support/services/b8925cb6-338d-9b0c-2655-1ef611982fc4\",\"name\":\"b8925cb6-338d-9b0c-2655-1ef611982fc4\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Lab - Services\",\"resourceTypes\":[\"MICROSOFT.DEVTESTLAB/LABS\",\"MICROSOFT.LABSERVICES/LABACCOUNTS\"]}},{\"id\":\"/providers/Microsoft.Support/services/b0882e3d-d09c-ca61-725b-b5d318365454\",\"name\":\"b0882e3d-d09c-ca61-725b-b5d318365454\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Lighthouse\",\"resourceTypes\":[\"Microsoft.ManagedServices\"]}},{\"id\":\"/providers/Microsoft.Support/services/6de8f1e5-4be2-7f60-1151-fd8c3fadbbc5\",\"name\":\"6de8f1e5-4be2-7f60-1151-fd8c3fadbbc5\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"LiveData - Platform for Azure - Preview\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/7b29574f-b855-9dec-9b08-fe4aeaa3bbc0\",\"name\":\"7b29574f-b855-9dec-9b08-fe4aeaa3bbc0\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Load - Balancer\",\"resourceTypes\":[\"MICROSOFT.NETWORK/LOADBALANCERS\"]}},{\"id\":\"/providers/Microsoft.Support/services/1bfb8072-ed96-9acc-b57c-34d716b5f674\",\"name\":\"1bfb8072-ed96-9acc-b57c-34d716b5f674\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Log - Analytics\",\"resourceTypes\":[\"MICROSOFT.OPERATIONALINSIGHTS/WORKSPACES\"]}},{\"id\":\"/providers/Microsoft.Support/services/9239daee-9951-e495-0aee-bf6b73708882\",\"name\":\"9239daee-9951-e495-0aee-bf6b73708882\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Logic - App\",\"resourceTypes\":[\"MICROSOFT.LOGIC/WORKFLOWS\",\"Microsoft.Logic/integrationServiceEnvironments\",\"Microsoft.Web/sites\"]}},{\"id\":\"/providers/Microsoft.Support/services/bd329b99-32f4-07bf-22e1-717f87d355b9\",\"name\":\"bd329b99-32f4-07bf-22e1-717f87d355b9\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Logic - App on Azure Arc\",\"resourceTypes\":[\"Microsoft.Logic/integrationServiceEnvironments\",\"Microsoft.Web/sites\",\"Microsoft.Logic/Workflows\"]}},{\"id\":\"/providers/Microsoft.Support/services/65e73690-23aa-be68-83be-a6b9bd188345\",\"name\":\"65e73690-23aa-be68-83be-a6b9bd188345\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Logic - App-Integration Service Environment (ISE)\",\"resourceTypes\":[\"Microsoft.Logic/integrationServiceEnvironments\"]}},{\"id\":\"/providers/Microsoft.Support/services/6a2a5a09-c969-3adc-bc12-bfd87296f968\",\"name\":\"6a2a5a09-c969-3adc-bc12-bfd87296f968\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Logic - App-Logic App V2\",\"resourceTypes\":[\"Microsoft.Web/sites\"]}},{\"id\":\"/providers/Microsoft.Support/services/a1799293-1194-133d-4407-156c57152643\",\"name\":\"a1799293-1194-133d-4407-156c57152643\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Machine - Learning\",\"resourceTypes\":[\"Microsoft.MachineLearningServices/workspaces\",\"Microsoft.MachineLearningServices\"]}},{\"id\":\"/providers/Microsoft.Support/services/afd16b5d-3a02-dd9d-8f7f-9768a7345f81\",\"name\":\"afd16b5d-3a02-dd9d-8f7f-9768a7345f81\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Machine - Learning Studio (Classic)\",\"resourceTypes\":[\"MICROSOFT.MACHINELEARNING/WORKSPACES\",\"MICROSOFT.MACHINELEARNING/COMMITMENTPLANS\",\"MICROSOFT.MACHINELEARNING/WEBSERVICES\",\"MICROSOFT.MACHINELEARNINGEXPERIMENTATION/ACCOUNTS\",\"MICROSOFT.MACHINELEARNINGMODELMANAGEMENT/ACCOUNTS\"]}},{\"id\":\"/providers/Microsoft.Support/services/7fa9504c-364e-66b7-830e-f1333a2e4fe4\",\"name\":\"7fa9504c-364e-66b7-830e-f1333a2e4fe4\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Managed - Apps Service Catalog\",\"resourceTypes\":[\"Microsoft.Solutions/applicationDefinitions\"]}},{\"id\":\"/providers/Microsoft.Support/services/c967e89c-dd01-34fa-231a-5645bdd79459\",\"name\":\"c967e89c-dd01-34fa-231a-5645bdd79459\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Managed - HSM\",\"resourceTypes\":[\"MICROSOFT.KEYVAULT/MANAGEDHSMS\"]}},{\"id\":\"/providers/Microsoft.Support/services/4600d245-9a8d-be9c-b0b7-945467c24186\",\"name\":\"4600d245-9a8d-be9c-b0b7-945467c24186\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Managed - Identities for Azure Resources\",\"resourceTypes\":[\"Microsoft.ManagedIdentity/userAssignedIdentities\"]}},{\"id\":\"/providers/Microsoft.Support/services/c6054aa4-96df-3b22-b4bf-1c5b16912def\",\"name\":\"c6054aa4-96df-3b22-b4bf-1c5b16912def\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Managed - Instance for Apache Cassandra - Preview\",\"resourceTypes\":[\"Microsoft.DocumentDB/cassandraClusters\"]}},{\"id\":\"/providers/Microsoft.Support/services/2c32f727-0b95-8324-22c8-b953c938833c\",\"name\":\"2c32f727-0b95-8324-22c8-b953c938833c\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Management - Groups\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/c52a04cc-be90-03ef-d76e-80cd1b338fb3\",\"name\":\"c52a04cc-be90-03ef-d76e-80cd1b338fb3\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Maps\",\"resourceTypes\":[\"MICROSOFT.MAPS/ACCOUNTS\"]}},{\"id\":\"/providers/Microsoft.Support/services/efa0fcb8-3325-6eb7-b451-8e3a853aaead\",\"name\":\"efa0fcb8-3325-6eb7-b451-8e3a853aaead\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Media - Service\",\"resourceTypes\":[\"MICROSOFT.MEDIA/MEDIASERVICES\"]}},{\"id\":\"/providers/Microsoft.Support/services/9636b9f4-3013-b4d0-1dbe-8b202575f592\",\"name\":\"9636b9f4-3013-b4d0-1dbe-8b202575f592\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Metrics\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/a96cb196-59fe-00a7-5ff7-889765d10494\",\"name\":\"a96cb196-59fe-00a7-5ff7-889765d10494\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Microsoft - Antimalware for Azure\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/a3247669-8dd8-ffa6-e0b2-c603cb95bf6c\",\"name\":\"a3247669-8dd8-ffa6-e0b2-c603cb95bf6c\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Microsoft - Azure Attestation\",\"resourceTypes\":[\"Microsoft.Attestation/attestationProviders\"]}},{\"id\":\"/providers/Microsoft.Support/services/fca74ae8-fb8b-53d4-39cb-105200f54379\",\"name\":\"fca74ae8-fb8b-53d4-39cb-105200f54379\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Microsoft - Bing Services\",\"resourceTypes\":[\"Microsoft.Bing\"]}},{\"id\":\"/providers/Microsoft.Support/services/49741e2b-0418-835b-8305-2e3992042a28\",\"name\":\"49741e2b-0418-835b-8305-2e3992042a28\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Microsoft - Connected Vehicle Platform\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/809e8afe-489e-08b0-95f2-08f835a383e8\",\"name\":\"809e8afe-489e-08b0-95f2-08f835a383e8\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Microsoft - Defender for Identity (formerly Azure Advanced Threat Protection)\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/3f816e19-cbf7-f192-a725-63c0ebe7d07d\",\"name\":\"3f816e19-cbf7-f192-a725-63c0ebe7d07d\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Microsoft - Genomics\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/e76cbe81-8c12-1f2f-85c7-6064644116a4\",\"name\":\"e76cbe81-8c12-1f2f-85c7-6064644116a4\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Microsoft - Graph Authentication and Authorization (Azure AD)\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/437e7d94-a4b3-68bd-a23a-087f528d47dd\",\"name\":\"437e7d94-a4b3-68bd-a23a-087f528d47dd\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Microsoft - Graph Files, Sites and Lists APIs\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/af52d398-4ddb-1e1d-2c6c-6767634b015e\",\"name\":\"af52d398-4ddb-1e1d-2c6c-6767634b015e\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Microsoft - Graph Messages, Calendar and Contacts APIs\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/c9a40005-5758-83c0-32b8-9e7910c21595\",\"name\":\"c9a40005-5758-83c0-32b8-9e7910c21595\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Microsoft - Graph Other Microsoft Graph APIs\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/46c9bb77-3f94-f481-375c-911d8f0f9a0e\",\"name\":\"46c9bb77-3f94-f481-375c-911d8f0f9a0e\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Microsoft - Graph Teamwork APIs (Teams)\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/53aa5987-de52-9110-f612-9fe34980e53a\",\"name\":\"53aa5987-de52-9110-f612-9fe34980e53a\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Microsoft - Graph Users, Groups, and Identity and Access APIs\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/389d15a1-c6fa-bbb6-f3fd-523a62a2b3c5\",\"name\":\"389d15a1-c6fa-bbb6-f3fd-523a62a2b3c5\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Microsoft - Intune\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/ec9779ed-b811-79e3-38ab-534ce832bfa5\",\"name\":\"ec9779ed-b811-79e3-38ab-534ce832bfa5\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Microsoft - Machine Learning Server (R Server)\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/ce08c87f-a4b1-24e7-5e27-dd7f8282da40\",\"name\":\"ce08c87f-a4b1-24e7-5e27-dd7f8282da40\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Microsoft - Security Code Analysis\",\"resourceTypes\":[\"Microsoft.Visualstudio\"]}},{\"id\":\"/providers/Microsoft.Support/services/4b38e388-9d77-9c61-da1e-4d92d751e51f\",\"name\":\"4b38e388-9d77-9c61-da1e-4d92d751e51f\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Modular - Datacenter (MDC)\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/b7743438-942e-ef29-9abc-589fd697fb9e\",\"name\":\"b7743438-942e-ef29-9abc-589fd697fb9e\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Network - Performance Monitor (NPM)\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/01c5defa-028b-c44f-cefa-e5d836887f2e\",\"name\":\"01c5defa-028b-c44f-cefa-e5d836887f2e\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Network - Virtual Appliance\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/29297681-a8c0-eaa9-341f-f72630a5b9c3\",\"name\":\"29297681-a8c0-eaa9-341f-f72630a5b9c3\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Network - Watcher\",\"resourceTypes\":[\"Microsoft.Network/networkWatchers\",\"Microsoft.Network/networkWatchers/connectionMonitors\",\"Microsoft.Network/networkWatchers/flowLogs\",\"Microsoft.Network/networkWatchers/lenses\",\"Microsoft.Network/networkWatchers/pingMeshes\"]}},{\"id\":\"/providers/Microsoft.Support/services/b9710604-e660-5d57-1b18-3aef73bd21d3\",\"name\":\"b9710604-e660-5d57-1b18-3aef73bd21d3\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Notification - Hub\",\"resourceTypes\":[\"MICROSOFT.NOTIFICATIONHUBS/NAMESPACES\"]}},{\"id\":\"/providers/Microsoft.Support/services/cac35d2a-0335-5628-57ff-db564fda4f3a\",\"name\":\"cac35d2a-0335-5628-57ff-db564fda4f3a\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Odyssey\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/176fac6b-1982-68b4-6f2e-3e5d3a0c99a4\",\"name\":\"176fac6b-1982-68b4-6f2e-3e5d3a0c99a4\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Open - Datasets\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/3e5e1bc3-2000-2473-a9cd-35edf7ae7f5f\",\"name\":\"3e5e1bc3-2000-2473-a9cd-35edf7ae7f5f\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Partner - Solutions\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/fae15df4-4549-8074-e6ab-11ca2b5a1645\",\"name\":\"fae15df4-4549-8074-e6ab-11ca2b5a1645\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Peering - Service\",\"resourceTypes\":[\"Microsoft.Peering/peerings\",\"Microsoft.Peering/peeringServices\"]}},{\"id\":\"/providers/Microsoft.Support/services/6d3f465f-843e-e142-40aa-fd1eda4c80c8\",\"name\":\"6d3f465f-843e-e142-40aa-fd1eda4c80c8\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Portal\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/3faebc17-db7f-212f-8536-9a5048474831\",\"name\":\"3faebc17-db7f-212f-8536-9a5048474831\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Power - BI Embedded\",\"resourceTypes\":[\"MICROSOFT.POWERBIDEDICATED/CAPACITIES\"]}},{\"id\":\"/providers/Microsoft.Support/services/86d840c0-45c7-7931-24bc-f976ddc54c1c\",\"name\":\"86d840c0-45c7-7931-24bc-f976ddc54c1c\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Power - BI Report Server in VM\",\"resourceTypes\":[\"Microsoft.Compute\\\\virtualMachine\"]}},{\"id\":\"/providers/Microsoft.Support/services/17cbfbe8-fbbe-a755-4cbc-14e025c370cd\",\"name\":\"17cbfbe8-fbbe-a755-4cbc-14e025c370cd\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"PyTorch - Enterprise\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/5d4f816f-f02c-f8f8-a8f4-423509f8b036\",\"name\":\"5d4f816f-f02c-f8f8-a8f4-423509f8b036\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Queue - Storage\",\"resourceTypes\":[\"MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS\",\"MICROSOFT.STORAGE/STORAGEACCOUNTS\"]}},{\"id\":\"/providers/Microsoft.Support/services/351dadd2-b167-7960-06bc-be843b705826\",\"name\":\"351dadd2-b167-7960-06bc-be843b705826\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Relay\",\"resourceTypes\":[\"MICROSOFT.RELAY/NAMESPACES\"]}},{\"id\":\"/providers/Microsoft.Support/services/4b218fe9-a91b-9143-05e3-da8c5a9bd5c7\",\"name\":\"4b218fe9-a91b-9143-05e3-da8c5a9bd5c7\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Remote - Rendering\",\"resourceTypes\":[\"Microsoft.MixedReality/RemoteRenderingAccounts\"]}},{\"id\":\"/providers/Microsoft.Support/services/c2804d27-8e0a-f2a3-8540-f4318f539ff6\",\"name\":\"c2804d27-8e0a-f2a3-8540-f4318f539ff6\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Role - Based Access Control (RBAC) for Azure Resources (IAM)\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/4b42e182-ce1c-ee75-e32b-e85fe73d6fbb\",\"name\":\"4b42e182-ce1c-ee75-e32b-e85fe73d6fbb\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"SAP - Cloud Platform\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/dd1ed832-cfdd-b06b-d11b-77b590a10d4c\",\"name\":\"dd1ed832-cfdd-b06b-d11b-77b590a10d4c\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"SAP - HANA Large Instance\",\"resourceTypes\":[\"Microsoft.HanaOnAzure/sapMonitors\",\"Microsoft.HanaOnAzure/hanaInstances\"]}},{\"id\":\"/providers/Microsoft.Support/services/1b9679f1-9cb9-a8db-549e-2fcdfbb89e7c\",\"name\":\"1b9679f1-9cb9-a8db-549e-2fcdfbb89e7c\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Search\",\"resourceTypes\":[\"MICROSOFT.SEARCH/SEARCHSERVICES\"]}},{\"id\":\"/providers/Microsoft.Support/services/fb1b37f8-2716-86c2-c2e1-684b5292d401\",\"name\":\"fb1b37f8-2716-86c2-c2e1-684b5292d401\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Security - Center\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/06bfd9d3-516b-d5c6-5802-169c800dec89\",\"name\":\"06bfd9d3-516b-d5c6-5802-169c800dec89\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Service - and subscription limits (quotas)\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/23e2c469-4b37-ebf5-0a3f-72e8b1407301\",\"name\":\"23e2c469-4b37-ebf5-0a3f-72e8b1407301\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Service - Bus\",\"resourceTypes\":[\"MICROSOFT.SERVICEBUS/NAMESPACES\"]}},{\"id\":\"/providers/Microsoft.Support/services/a730ab7a-33ae-c83a-bca5-4935433e38ff\",\"name\":\"a730ab7a-33ae-c83a-bca5-4935433e38ff\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Service - Fabric\",\"resourceTypes\":[\"MICROSOFT.SERVICEFABRIC/CLUSTERS\",\"Microsoft.ServiceFabric/managedclusters\"]}},{\"id\":\"/providers/Microsoft.Support/services/c9d3b345-6b9c-bc78-88f5-4867854e925a\",\"name\":\"c9d3b345-6b9c-bc78-88f5-4867854e925a\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Service - Fabric Managed Cluster\",\"resourceTypes\":[\"Microsoft.ServiceFabric/managedclusters\",\"MICROSOFT.SERVICEFABRIC/CLUSTERS\"]}},{\"id\":\"/providers/Microsoft.Support/services/a76b7230-2d2f-b294-8189-319db5e5d116\",\"name\":\"a76b7230-2d2f-b294-8189-319db5e5d116\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Service - Fabric on Linux\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/6d25bd66-1b18-21ea-1c39-50d27ccbc816\",\"name\":\"6d25bd66-1b18-21ea-1c39-50d27ccbc816\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Shared - Image Gallery\",\"resourceTypes\":[\"Microsoft.Compute/galleries\",\"Microsoft.Compute/galleries/images\",\"Microsoft.Compute/galleries/images/versions\"]}},{\"id\":\"/providers/Microsoft.Support/services/bfd77156-870d-17ee-c9d1-5450f390f63f\",\"name\":\"bfd77156-870d-17ee-c9d1-5450f390f63f\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"SignalR - Service\",\"resourceTypes\":[\"Microsoft.SignalRService/SignalR\"]}},{\"id\":\"/providers/Microsoft.Support/services/e4ddc3b0-1e6d-aaa2-4279-8e5027351d76\",\"name\":\"e4ddc3b0-1e6d-aaa2-4279-8e5027351d76\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Spatial - Anchors\",\"resourceTypes\":[\"Microsoft.MixedReality\"]}},{\"id\":\"/providers/Microsoft.Support/services/bbc183d4-df10-8580-d10b-4123c10ae34d\",\"name\":\"bbc183d4-df10-8580-d10b-4123c10ae34d\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Spring - Cloud\",\"resourceTypes\":[\"Microsoft.AppPlatform/Spring\"]}},{\"id\":\"/providers/Microsoft.Support/services/95412dd5-f222-a91f-98a6-144a84418c66\",\"name\":\"95412dd5-f222-a91f-98a6-144a84418c66\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"SQL - Database\",\"resourceTypes\":[\"MICROSOFT.SQL/SERVERS\",\"MICROSOFT.SQL/SERVERS/DATABASES\",\"MICROSOFT.SQL/SERVERS/ELASTICPOOLS\"]}},{\"id\":\"/providers/Microsoft.Support/services/9b629e89-4ea0-53ec-9409-1579b8c41453\",\"name\":\"9b629e89-4ea0-53ec-9409-1579b8c41453\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"SQL - Managed Instance\",\"resourceTypes\":[\"MICROSOFT.SQL/MANAGEDINSTANCES\"]}},{\"id\":\"/providers/Microsoft.Support/services/40ef020e-8ae7-8d57-b538-9153c47cee69\",\"name\":\"40ef020e-8ae7-8d57-b538-9153c47cee69\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"SQL - Server in VM - Linux\",\"resourceTypes\":[\"MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES\",\"MICROSOFT.COMPUTE/VIRTUALMACHINES\"]}},{\"id\":\"/providers/Microsoft.Support/services/53b14ef9-9b69-4d8c-a458-b8e4c132a815\",\"name\":\"53b14ef9-9b69-4d8c-a458-b8e4c132a815\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"SQL - Server in VM - Windows\",\"resourceTypes\":[\"MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES\",\"MICROSOFT.COMPUTE/VIRTUALMACHINES\",\"Microsoft.SqlVirtualMachine/sqlVirtualMachines\"]}},{\"id\":\"/providers/Microsoft.Support/services/4046cf79-84e4-c890-4fdb-73137d6506a5\",\"name\":\"4046cf79-84e4-c890-4fdb-73137d6506a5\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"SQL - Server Registry\",\"resourceTypes\":[\"Microsoft.AzureData/sqlServerRegistrations\"]}},{\"id\":\"/providers/Microsoft.Support/services/effcf656-f62f-92f2-8cef-2b28aea2da1f\",\"name\":\"effcf656-f62f-92f2-8cef-2b28aea2da1f\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"SQL - Server Stretch Database\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/94a7406a-b31a-86f8-49f9-377d30047b25\",\"name\":\"94a7406a-b31a-86f8-49f9-377d30047b25\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Static - Web Apps\",\"resourceTypes\":[\"Microsoft.Web\"]}},{\"id\":\"/providers/Microsoft.Support/services/6a9c20ed-85c7-c289-d5e2-560da8f2a7c8\",\"name\":\"6a9c20ed-85c7-c289-d5e2-560da8f2a7c8\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Storage - Account Management\",\"resourceTypes\":[\"MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS\",\"MICROSOFT.STORAGE/STORAGEACCOUNTS\"]}},{\"id\":\"/providers/Microsoft.Support/services/94c5f326-7ab1-6ef3-c3c0-8e0b5a584085\",\"name\":\"94c5f326-7ab1-6ef3-c3c0-8e0b5a584085\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Storage - Explorer\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/ffe1bb13-3bb2-e99d-35fa-d0c165557f88\",\"name\":\"ffe1bb13-3bb2-e99d-35fa-d0c165557f88\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"StorSimple - Data Manager\",\"resourceTypes\":[\"MICROSOFT.HYBRIDDATA/DATAMANAGERS\"]}},{\"id\":\"/providers/Microsoft.Support/services/30e73728-5d13-cbf4-5c57-3036ed1067fd\",\"name\":\"30e73728-5d13-cbf4-5c57-3036ed1067fd\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Stream - Analytics\",\"resourceTypes\":[\"MICROSOFT.STREAMANALYTICS/STREAMINGJOBS\",\"MICROSOFT.STREAMANALYTICS/CLUSTERS\"]}},{\"id\":\"/providers/Microsoft.Support/services/f3dc5421-79ef-1efa-41a5-42bf3cbb52c6\",\"name\":\"f3dc5421-79ef-1efa-41a5-42bf3cbb52c6\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Subscription - management\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/8418caaf-4634-b4c0-d9b6-27c266b6b67b\",\"name\":\"8418caaf-4634-b4c0-d9b6-27c266b6b67b\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Table - Storage\",\"resourceTypes\":[\"MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS\",\"MICROSOFT.STORAGE/STORAGEACCOUNTS\"]}},{\"id\":\"/providers/Microsoft.Support/services/5280bdc9-af4d-0716-24b9-4ec6b7523c01\",\"name\":\"5280bdc9-af4d-0716-24b9-4ec6b7523c01\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Test - Base for M365 - Preview\",\"resourceTypes\":[\"Microsoft.TestBase/testBaseAccounts/packages\",\"Microsoft.TestBase/testBaseAccounts\"]}},{\"id\":\"/providers/Microsoft.Support/services/e4d6b9b0-79d5-3133-c4db-460a39e8a622\",\"name\":\"e4d6b9b0-79d5-3133-c4db-460a39e8a622\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Time - Series Insights\",\"resourceTypes\":[\"MICROSOFT.TIMESERIESINSIGHTS/ENVIRONMENTS\"]}},{\"id\":\"/providers/Microsoft.Support/services/66fff2d6-c34e-ac9b-d1ba-6631ab20989e\",\"name\":\"66fff2d6-c34e-ac9b-d1ba-6631ab20989e\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Traffic - Manager \u2013 DNS based load balancing\",\"resourceTypes\":[\"MICROSOFT.NETWORK/TRAFFICMANAGERPROFILES\"]}},{\"id\":\"/providers/Microsoft.Support/services/99dd2657-2a74-8c5a-951f-23abdd7851c6\",\"name\":\"99dd2657-2a74-8c5a-951f-23abdd7851c6\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Universal - Print\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/393f9162-a29a-1e9f-1972-d524c7bc7026\",\"name\":\"393f9162-a29a-1e9f-1972-d524c7bc7026\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Video - Indexer\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/722ccc66-c988-d2ac-1ec6-b7aebc857f2d\",\"name\":\"722ccc66-c988-d2ac-1ec6-b7aebc857f2d\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Virtual - Machine running Citrix\",\"resourceTypes\":[\"MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES\",\"MICROSOFT.COMPUTE/VIRTUALMACHINES\"]}},{\"id\":\"/providers/Microsoft.Support/services/b6492139-637a-c445-ee02-5dc6749337c3\",\"name\":\"b6492139-637a-c445-ee02-5dc6749337c3\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Virtual - Machine running Cloud Foundry\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc\",\"name\":\"cddd3eb5-1830-b494-44fd-782f691479dc\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Virtual - Machine running Linux\",\"resourceTypes\":[\"MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES\",\"MICROSOFT.COMPUTE/VIRTUALMACHINES\"]}},{\"id\":\"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87\",\"name\":\"de8937fc-74cc-daa7-2639-e1fe433dcb87\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Virtual - Machine running RedHat\",\"resourceTypes\":[\"MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES\",\"MICROSOFT.COMPUTE/VIRTUALMACHINES\"]}},{\"id\":\"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0\",\"name\":\"98e5cec8-2650-28c1-92e8-0ecaa232eec0\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Virtual - Machine running SUSE\",\"resourceTypes\":[\"Microsoft.Compute/virtualmachines\"]}},{\"id\":\"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7\",\"name\":\"2340ae8b-c745-572f-6ea8-661d68c08bd7\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Virtual - Machine running Ubuntu\",\"resourceTypes\":[\"MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES\",\"MICROSOFT.COMPUTE/VIRTUALMACHINES\"]}},{\"id\":\"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396\",\"name\":\"6f16735c-b0ae-b275-ad3a-03479cfa1396\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Virtual - Machine running Windows\",\"resourceTypes\":[\"MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES\",\"MICROSOFT.COMPUTE/VIRTUALMACHINES\"]}},{\"id\":\"/providers/Microsoft.Support/services/e9e31931-21fa-d50a-e6e7-e37d5d784591\",\"name\":\"e9e31931-21fa-d50a-e6e7-e37d5d784591\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Virtual - Machine Scale Sets\",\"resourceTypes\":[\"MICROSOFT.COMPUTE/VIRTUALMACHINESCALESETS\",\"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\"]}},{\"id\":\"/providers/Microsoft.Support/services/b25271d3-6431-dfbc-5f12-5693326809b3\",\"name\":\"b25271d3-6431-dfbc-5f12-5693326809b3\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Virtual - Network\",\"resourceTypes\":[\"MICROSOFT.NETWORK/VIRTUALNETWORKS\",\"MICROSOFT.CLASSICNETWORK/VIRTUALNETWORKS\"]}},{\"id\":\"/providers/Microsoft.Support/services/e980d0ab-c6c3-894b-8a1d-74564e159e3b\",\"name\":\"e980d0ab-c6c3-894b-8a1d-74564e159e3b\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Virtual - Network NAT\",\"resourceTypes\":[\"Microsoft.Network/NATGateways\"]}},{\"id\":\"/providers/Microsoft.Support/services/d3b69052-33aa-55e7-6d30-ebb7040f9766\",\"name\":\"d3b69052-33aa-55e7-6d30-ebb7040f9766\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Virtual - WAN\",\"resourceTypes\":[\"MICROSOFT.NETWORK/VIRTUALWANS\",\"MICROSOFT.NETWORK/virtualHubs\"]}},{\"id\":\"/providers/Microsoft.Support/services/5a813df8-0060-7015-892d-9f17015a6706\",\"name\":\"5a813df8-0060-7015-892d-9f17015a6706\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"VPN - Gateway\",\"resourceTypes\":[\"MICROSOFT.NETWORK/VIRTUALNETWORKGATEWAYS\",\"MICROSOFT.NETWORK/CONNECTIONS\"]}},{\"id\":\"/providers/Microsoft.Support/services/b452a42b-3779-64de-532c-8a32738357a6\",\"name\":\"b452a42b-3779-64de-532c-8a32738357a6\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Web - App (Linux)\",\"resourceTypes\":[\"MICROSOFT.WEB/SITES\"]}},{\"id\":\"/providers/Microsoft.Support/services/1890289e-747c-7ef6-b4f5-b1dbb0bead28\",\"name\":\"1890289e-747c-7ef6-b4f5-b1dbb0bead28\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Web - App (Windows)\",\"resourceTypes\":[\"MICROSOFT.WEB/SITES\"]}},{\"id\":\"/providers/Microsoft.Support/services/d40f17bb-8b19-117c-f69a-d1be4187f657\",\"name\":\"d40f17bb-8b19-117c-f69a-d1be4187f657\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Web - App for Containers\",\"resourceTypes\":[\"MICROSOFT.WEB/SITES\"]}},{\"id\":\"/providers/Microsoft.Support/services/272fd66a-e8b1-260f-0066-01caae8895cf\",\"name\":\"272fd66a-e8b1-260f-0066-01caae8895cf\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Web - App on Azure Arc\",\"resourceTypes\":[\"Microsoft.Web/Sites\"]}},{\"id\":\"/providers/Microsoft.Support/services/f7eb21eb-eb80-8817-4bd8-c0d89e93833b\",\"name\":\"f7eb21eb-eb80-8817-4bd8-c0d89e93833b\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Windows - Admin Center in the Azure Portal - Preview\",\"resourceTypes\":[]}}]}" + string: '{"value":[{"id":"/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea","name":"484e2236-bc6d-b1bb-76d2-7d09278cf9ea","type":"Microsoft.Support/services","properties":{"displayName":"Activity + Logs","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/26d8424b-0a41-4443-cbc6-0309ea8708d0","name":"26d8424b-0a41-4443-cbc6-0309ea8708d0","type":"Microsoft.Support/services","properties":{"displayName":"Advisor","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/1232100c-42c0-f626-2b4f-8c8a4877acad","name":"1232100c-42c0-f626-2b4f-8c8a4877acad","type":"Microsoft.Support/services","properties":{"displayName":"AKS + Edge Essentials","resourceTypes":["Microsoft.Kubernetes/connectedClusters"]}},{"id":"/providers/Microsoft.Support/services/c1840ac9-309f-f235-c0ae-4782f283b698","name":"c1840ac9-309f-f235-c0ae-4782f283b698","type":"Microsoft.Support/services","properties":{"displayName":"Alerts + and Action Groups","resourceTypes":["MICROSOFT.INSIGHTS/ALERTRULES","MICROSOFT.INSIGHTS/ACTIVITYLOGALERTS","MICROSOFT.INSIGHTS/METRICALERTS","MICROSOFT.INSIGHTS/SCHEDULEDQUERYRULES","MICROSOFT.INSIGHTS/ACTIONGROUPS","MICROSOFT.ALERTSMANAGEMENT/ACTIONRULES","MICROSOFT.ALERTSMANAGEMENT/ALERTS"]}},{"id":"/providers/Microsoft.Support/services/e8fe7c6f-d883-c57f-6576-cf801ca30653","name":"e8fe7c6f-d883-c57f-6576-cf801ca30653","type":"Microsoft.Support/services","properties":{"displayName":"Analysis + Services","resourceTypes":["MICROSOFT.ANALYSISSERVICES/SERVERS"]}},{"id":"/providers/Microsoft.Support/services/4be91ca7-f109-c1f4-c7d0-d1377e8fb2dc","name":"4be91ca7-f109-c1f4-c7d0-d1377e8fb2dc","type":"Microsoft.Support/services","properties":{"displayName":"API + Center - Preview","resourceTypes":["Microsoft.ApiCenter"]}},{"id":"/providers/Microsoft.Support/services/07651e65-958a-0877-36f3-61bbba85d783","name":"07651e65-958a-0877-36f3-61bbba85d783","type":"Microsoft.Support/services","properties":{"displayName":"API + for FHIR","resourceTypes":["Microsoft.HealthcareApis/services"]}},{"id":"/providers/Microsoft.Support/services/b4d0e877-0166-0474-9a76-b5be30ba40e4","name":"b4d0e877-0166-0474-9a76-b5be30ba40e4","type":"Microsoft.Support/services","properties":{"displayName":"API + Management Service","resourceTypes":["MICROSOFT.APIMANAGEMENT/SERVICE"]}},{"id":"/providers/Microsoft.Support/services/862f5cc8-0f41-97a5-d2d8-940d7aba6de4","name":"862f5cc8-0f41-97a5-d2d8-940d7aba6de4","type":"Microsoft.Support/services","properties":{"displayName":"App + Compliance Automation Tool for Microsoft 365","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/e14f616b-42c5-4515-3d7c-67935eece51a","name":"e14f616b-42c5-4515-3d7c-67935eece51a","type":"Microsoft.Support/services","properties":{"displayName":"App + Configuration","resourceTypes":["Microsoft.AppConfiguration"]}},{"id":"/providers/Microsoft.Support/services/445c0905-55e2-4f42-d853-ec9e17a5180e","name":"445c0905-55e2-4f42-d853-ec9e17a5180e","type":"Microsoft.Support/services","properties":{"displayName":"App + Service Certificates","resourceTypes":["MICROSOFT.CERTIFICATEREGISTRATION/CERTIFICATEORDERS"]}},{"id":"/providers/Microsoft.Support/services/b7d2f8b7-7d20-cf2f-ddd5-5543ada54bd2","name":"b7d2f8b7-7d20-cf2f-ddd5-5543ada54bd2","type":"Microsoft.Support/services","properties":{"displayName":"App + Service Domains","resourceTypes":["MICROSOFT.DOMAINREGISTRATION/DOMAINS"]}},{"id":"/providers/Microsoft.Support/services/0420c0b3-5e23-1475-d8ad-c883ef940b46","name":"0420c0b3-5e23-1475-d8ad-c883ef940b46","type":"Microsoft.Support/services","properties":{"displayName":"App + Service on Azure Stack Hub","resourceTypes":["Microsoft.AzureStack/registrations"]}},{"id":"/providers/Microsoft.Support/services/101732bb-31af-ee61-7c16-d4ad77c86a50","name":"101732bb-31af-ee61-7c16-d4ad77c86a50","type":"Microsoft.Support/services","properties":{"displayName":"Application + Gateway","resourceTypes":["MICROSOFT.NETWORK/APPLICATIONGATEWAYS"]}},{"id":"/providers/Microsoft.Support/services/939c13c2-cd69-70fb-0851-c219bca05cb0","name":"939c13c2-cd69-70fb-0851-c219bca05cb0","type":"Microsoft.Support/services","properties":{"displayName":"Application + Gateway for Containers","resourceTypes":["microsoft.servicenetworking/trafficcontrollers","microsoft.servicenetworking/trafficcontrollers/frontends","microsoft.servicenetworking/trafficcontrollers/associations"]}},{"id":"/providers/Microsoft.Support/services/63df7848-ce1c-06d4-517f-2a62983372c6","name":"63df7848-ce1c-06d4-517f-2a62983372c6","type":"Microsoft.Support/services","properties":{"displayName":"Application + Insights","resourceTypes":["MICROSOFT.INSIGHTS/COMPONENTS","MICROSOFT.INSIGHTS/ACTIVITYLOGALERTS","MICROSOFT.INSIGHTS/METRICALERTS","MICROSOFT.INSIGHTS/SCHEDULEDQUERYRULES"]}},{"id":"/providers/Microsoft.Support/services/2fd37acf-7616-eae7-546b-1a78a16d11b5","name":"2fd37acf-7616-eae7-546b-1a78a16d11b5","type":"Microsoft.Support/services","properties":{"displayName":"ASE","resourceTypes":["MICROSOFT.WEB/HOSTINGENVIRONMENTS"]}},{"id":"/providers/Microsoft.Support/services/b661f9c2-28ee-800a-b621-118a6787a8e6","name":"b661f9c2-28ee-800a-b621-118a6787a8e6","type":"Microsoft.Support/services","properties":{"displayName":"Automanage + for Virtual Machines","resourceTypes":["microsoft.automanage"]}},{"id":"/providers/Microsoft.Support/services/82881226-e06c-2b57-3365-38437e84059e","name":"82881226-e06c-2b57-3365-38437e84059e","type":"Microsoft.Support/services","properties":{"displayName":"Autoscale","resourceTypes":["MICROSOFT.INSIGHTS/AUTOSCALESETTINGS"]}},{"id":"/providers/Microsoft.Support/services/500d88b2-c24c-0d5d-3b76-acfde7d6ee20","name":"500d88b2-c24c-0d5d-3b76-acfde7d6ee20","type":"Microsoft.Support/services","properties":{"displayName":"Avere + vFXT","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/1b9679f1-9cb9-a8db-549e-2fcdfbb89e7c","name":"1b9679f1-9cb9-a8db-549e-2fcdfbb89e7c","type":"Microsoft.Support/services","properties":{"displayName":"Azure + AI Search","resourceTypes":["MICROSOFT.SEARCH/SEARCHSERVICES"]}},{"id":"/providers/Microsoft.Support/services/31af6335-2e73-ce48-c02e-6b9473b59f7a","name":"31af6335-2e73-ce48-c02e-6b9473b59f7a","type":"Microsoft.Support/services","properties":{"displayName":"Azure + AI Studio","resourceTypes":["Microsoft.MachineLearningServices","Microsoft.MachineLearningServices/aistudio"]}},{"id":"/providers/Microsoft.Support/services/11689be9-43d7-ba72-5806-03ab87626a4a","name":"11689be9-43d7-ba72-5806-03ab87626a4a","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Arc enabled Kubernetes","resourceTypes":["Microsoft.Kubernetes/connectedClusters"]}},{"id":"/providers/Microsoft.Support/services/9ef6b6ba-0bb2-e927-2ea7-32f90a97414d","name":"9ef6b6ba-0bb2-e927-2ea7-32f90a97414d","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Arc enabled PostgreSQL - Preview","resourceTypes":["Microsoft.AzureArcData/postgresinstances"]}},{"id":"/providers/Microsoft.Support/services/bdb8e8ae-3bba-4c43-e8ad-36e132e481ef","name":"bdb8e8ae-3bba-4c43-e8ad-36e132e481ef","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Arc enabled SCVMM","resourceTypes":["Microsoft.ScVmm"]}},{"id":"/providers/Microsoft.Support/services/17318db1-cfda-52da-b65f-68e53ba89e64","name":"17318db1-cfda-52da-b65f-68e53ba89e64","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Arc enabled servers","resourceTypes":["Microsoft.hybridcompute/machines"]}},{"id":"/providers/Microsoft.Support/services/f6575f88-34bc-79d3-8693-05ee9b7ca72b","name":"f6575f88-34bc-79d3-8693-05ee9b7ca72b","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Arc enabled SQL Managed Instance","resourceTypes":["Microsoft.AzureArcData/sqlmanagedinstances"]}},{"id":"/providers/Microsoft.Support/services/2d45b14d-73cf-eb4b-0dc3-6ee86904c64b","name":"2d45b14d-73cf-eb4b-0dc3-6ee86904c64b","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Arc enabled VMware vSphere","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/216cb580-99ad-5c86-d60e-72aca32dc2a2","name":"216cb580-99ad-5c86-d60e-72aca32dc2a2","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Arc Resource Bridge","resourceTypes":["Microsoft.ResourceConnector/Appliances"]}},{"id":"/providers/Microsoft.Support/services/ab3e222e-3538-2b59-d3e8-963047a08f8b","name":"ab3e222e-3538-2b59-d3e8-963047a08f8b","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Arc-enabled Data Services","resourceTypes":["Microsoft.AzureArcData/datacontrollers"]}},{"id":"/providers/Microsoft.Support/services/90426252-f966-63ea-cbda-cab5ceaa865d","name":"90426252-f966-63ea-cbda-cab5ceaa865d","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Automation","resourceTypes":["MICROSOFT.AUTOMATION/AUTOMATIONACCOUNTS","MICROSOFT.AUTOMATION/AUTOMATIONACCOUNTS/RUNBOOKS","MICROSOFT.AUTOMATION/AUTOMATIONACCOUNTS/JOBS"]}},{"id":"/providers/Microsoft.Support/services/17d72dfc-8f48-94cb-05e6-5f88efdf72d7","name":"17d72dfc-8f48-94cb-05e6-5f88efdf72d7","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Backup","resourceTypes":["Microsoft.RecoveryServices/vaults","Microsoft.DataProtection/BackupVaults"]}},{"id":"/providers/Microsoft.Support/services/f26f06d5-c3b1-0372-8c5b-93a371ec434c","name":"f26f06d5-c3b1-0372-8c5b-93a371ec434c","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Blueprint - Preview","resourceTypes":["Microsoft.Blueprint/BLUEPRINTS"]}},{"id":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","name":"58cf91d7-3a04-37d3-9818-9bd5c979d9a9","type":"Microsoft.Support/services","properties":{"displayName":"Azure + CDN","resourceTypes":["Microsoft.Cdn/profiles","Microsoft.Cdn/profiles/endpoints","Microsoft.Cdn/CdnWebApplicationFirewallPolicies"]}},{"id":"/providers/Microsoft.Support/services/9db8a797-7fec-d348-fc3e-c24665973f2c","name":"9db8a797-7fec-d348-fc3e-c24665973f2c","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Center for SAP solutions","resourceTypes":["Microsoft.Workloads/sapvirtualinstances"]}},{"id":"/providers/Microsoft.Support/services/6d25bd66-1b18-21ea-1c39-50d27ccbc816","name":"6d25bd66-1b18-21ea-1c39-50d27ccbc816","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Compute Gallery","resourceTypes":["Microsoft.Compute/galleries","Microsoft.Compute/galleries/images","Microsoft.Compute/galleries/images/versions","Microsoft.Compute/galleries/gallery/applications"]}},{"id":"/providers/Microsoft.Support/services/332c304e-d81f-fb73-53fa-32e02c9929b8","name":"332c304e-d81f-fb73-53fa-32e02c9929b8","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Cosmos DB for MongoDB (vCore)","resourceTypes":["MICROSOFT.DOCUMENTDB/MONGOCLUSTERS"]}},{"id":"/providers/Microsoft.Support/services/aec6da31-9ef4-f890-e34c-ec1fbac8e6b1","name":"aec6da31-9ef4-f890-e34c-ec1fbac8e6b1","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Cosmos DB for PostgreSQL","resourceTypes":["MICROSOFT.DBFORPOSTGRESQL/SERVERSV2","Microsoft.DBforPostgreSQL/servergroupsv2","MICROSOFT.DBFORPOSTGRESQL/SERVERGROUPS"]}},{"id":"/providers/Microsoft.Support/services/3f14906b-a48e-b51a-d700-b3eb7784bce8","name":"3f14906b-a48e-b51a-d700-b3eb7784bce8","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Database for MariaDB","resourceTypes":["MICROSOFT.DBFORMARIADB/SERVERS"]}},{"id":"/providers/Microsoft.Support/services/7ef8ab5c-3c21-c342-8eed-2b5a8fc7fba3","name":"7ef8ab5c-3c21-c342-8eed-2b5a8fc7fba3","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Database for MySQL flexible server","resourceTypes":["MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS"]}},{"id":"/providers/Microsoft.Support/services/32b3cec2-0abd-1d18-68cc-9183b15b7da1","name":"32b3cec2-0abd-1d18-68cc-9183b15b7da1","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Database for MySQL single server","resourceTypes":["MICROSOFT.DBFORMYSQL/SERVERS"]}},{"id":"/providers/Microsoft.Support/services/191ddd48-d790-61f4-315b-f621cdd66a91","name":"191ddd48-d790-61f4-315b-f621cdd66a91","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Database for PostgreSQL flexible server","resourceTypes":["MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS"]}},{"id":"/providers/Microsoft.Support/services/12a55468-fa60-8943-45e2-338011722931","name":"12a55468-fa60-8943-45e2-338011722931","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Database for PostgreSQL single server","resourceTypes":["MICROSOFT.DBFORPOSTGRESQL/SERVERS"]}},{"id":"/providers/Microsoft.Support/services/b9c52334-7da1-7360-b396-0406b0c9d3b7","name":"b9c52334-7da1-7360-b396-0406b0c9d3b7","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Dedicated Host","resourceTypes":["Microsoft.Compute/hostGroups","Microsoft.Compute/hostGroups/hosts"]}},{"id":"/providers/Microsoft.Support/services/cd1e630f-be69-dde7-f0ee-899b33e765d6","name":"cd1e630f-be69-dde7-f0ee-899b33e765d6","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Deployment Environments","resourceTypes":["Microsoft.DevCenter","Microsoft.DevCenter/devCenters"]}},{"id":"/providers/Microsoft.Support/services/cd9d74ec-8333-b326-f42f-303e223e04eb","name":"cd9d74ec-8333-b326-f42f-303e223e04eb","type":"Microsoft.Support/services","properties":{"displayName":"Azure + DevOps Services","resourceTypes":["Microsoft.Visualstudio"]}},{"id":"/providers/Microsoft.Support/services/985987a3-2363-99eb-321b-c753677e0008","name":"985987a3-2363-99eb-321b-c753677e0008","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Digital Twins","resourceTypes":["Microsoft.DigitalTwins"]}},{"id":"/providers/Microsoft.Support/services/f0269138-eb6e-a81a-10e9-17965b5683d4","name":"f0269138-eb6e-a81a-10e9-17965b5683d4","type":"Microsoft.Support/services","properties":{"displayName":"Azure + DNS","resourceTypes":["MICROSOFT.NETWORK/DNSZONES"]}},{"id":"/providers/Microsoft.Support/services/5b807b4a-60ff-3256-faf1-5934bd59b4b9","name":"5b807b4a-60ff-3256-faf1-5934bd59b4b9","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Edge Hardware Center","resourceTypes":["Microsoft.EdgeOrder/OrderItems"]}},{"id":"/providers/Microsoft.Support/services/3b799b70-420a-6397-e69c-853341d0eab5","name":"3b799b70-420a-6397-e69c-853341d0eab5","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Firewall","resourceTypes":["Microsoft.Network/azureFirewalls","Microsoft.Network/firewallPolicies","Microsoft.Network/ipGroups"]}},{"id":"/providers/Microsoft.Support/services/f1e803c0-d4aa-156d-8507-3f9e5e4e1504","name":"f1e803c0-d4aa-156d-8507-3f9e5e4e1504","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Firewall Manager","resourceTypes":["Microsoft.Network/firewallPolicies","Microsoft.Network/firewallPolicies"]}},{"id":"/providers/Microsoft.Support/services/025f80a1-8242-b74c-6a4a-f01341b8669b","name":"025f80a1-8242-b74c-6a4a-f01341b8669b","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Fluid Relay","resourceTypes":["Microsoft.FluidRelay/fluidRelayServers"]}},{"id":"/providers/Microsoft.Support/services/3d598a6c-5432-adab-e87a-1dfdbb562302","name":"3d598a6c-5432-adab-e87a-1dfdbb562302","type":"Microsoft.Support/services","properties":{"displayName":"Azure + FXT Edge Filer","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/be63f24b-d7d7-fac8-d753-388658582f99","name":"be63f24b-d7d7-fac8-d753-388658582f99","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Health Data Services","resourceTypes":["Microsoft.HealthcareApis","Microsoft.HealthcareApis/workspaces"]}},{"id":"/providers/Microsoft.Support/services/8ab9233e-aa65-ab0a-cf6f-7e4ec528556a","name":"8ab9233e-aa65-ab0a-cf6f-7e4ec528556a","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Healthcare Bot","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/036bd7f8-ead3-3a43-e7f9-cda1e3ad0120","name":"036bd7f8-ead3-3a43-e7f9-cda1e3ad0120","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Import-Export Service","resourceTypes":["Microsoft.ImportExport","Microsoft.Databox/Jobs"]}},{"id":"/providers/Microsoft.Support/services/8168c456-2014-a581-dde8-d25e47d964c8","name":"8168c456-2014-a581-dde8-d25e47d964c8","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Information Protection","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/b9bf9f58-bbd4-16a0-a6cc-85b5ead295fe","name":"b9bf9f58-bbd4-16a0-a6cc-85b5ead295fe","type":"Microsoft.Support/services","properties":{"displayName":"Azure + IoT Operations - Preview","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/e29406fa-af70-5215-e29b-9c9b7f5204d3","name":"e29406fa-af70-5215-e29b-9c9b7f5204d3","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Kinect Dev Kit","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/70d82de6-3222-8f21-71f8-1912ba5ad0ae","name":"70d82de6-3222-8f21-71f8-1912ba5ad0ae","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Kubernetes Fleet Manager","resourceTypes":["Microsoft.ContainerService","Microsoft.ContainerService/fleets"]}},{"id":"/providers/Microsoft.Support/services/32545be3-202c-9cd6-2031-98e763d29b5e","name":"32545be3-202c-9cd6-2031-98e763d29b5e","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Kubernetes Service on Azure Stack HCI (AKS-HCI)","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/88a4d9f6-1d66-7b9a-32fe-e5a965e0c099","name":"88a4d9f6-1d66-7b9a-32fe-e5a965e0c099","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Load Testing","resourceTypes":["Microsoft.LoadTestService","Microsoft.LoadTestService/loadtests"]}},{"id":"/providers/Microsoft.Support/services/07112d69-b92c-27dd-4864-ff0d63e503fd","name":"07112d69-b92c-27dd-4864-ff0d63e503fd","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Managed Grafana","resourceTypes":["Microsoft.Dashboard","Microsoft.Dashboard/Grafana"]}},{"id":"/providers/Microsoft.Support/services/76cd10bf-6048-7e15-3e5a-bca3cfdd5959","name":"76cd10bf-6048-7e15-3e5a-bca3cfdd5959","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Managed Lustre","resourceTypes":["Microsoft.StorageCache"]}},{"id":"/providers/Microsoft.Support/services/ef44dd7b-4344-edcf-2eb1-f6f094fd46a3","name":"ef44dd7b-4344-edcf-2eb1-f6f094fd46a3","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Migrate","resourceTypes":["Microsoft.Migrate/migrateProjects"]}},{"id":"/providers/Microsoft.Support/services/06d6dec8-469a-b652-f8e8-61e47c34efef","name":"06d6dec8-469a-b652-f8e8-61e47c34efef","type":"Microsoft.Support/services","properties":{"displayName":"Azure + mobile app (for Android & iOS)","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/86490df1-3db5-08c6-1f6b-4138be52adb9","name":"86490df1-3db5-08c6-1f6b-4138be52adb9","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Monitor for SAP Solutions","resourceTypes":["Microsoft.HanaOnAzure/sapMonitors","Microsoft.Workloads/monitors"]}},{"id":"/providers/Microsoft.Support/services/3dd3fff2-078a-6981-82ed-1c74b363490a","name":"3dd3fff2-078a-6981-82ed-1c74b363490a","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Native Palo Alto Cloud Next-Generation Firewall","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/824615f0-1b01-931d-1e1c-36516330ec6d","name":"824615f0-1b01-931d-1e1c-36516330ec6d","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Native Qumulo Scalable File Service","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/00743e6b-ddfd-e1cb-b90e-2a9f8d1c2a52","name":"00743e6b-ddfd-e1cb-b90e-2a9f8d1c2a52","type":"Microsoft.Support/services","properties":{"displayName":"Azure + NetApp Files","resourceTypes":["Microsoft.NetApp/netAppAccounts","Microsoft.NetApp/netAppAccounts/capacityPools","Microsoft.NetApp/netAppAccounts/capacityPools/Volumes"]}},{"id":"/providers/Microsoft.Support/services/1d0798a7-8ca0-280e-66d6-bee58f544e67","name":"1d0798a7-8ca0-280e-66d6-bee58f544e67","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Network Function Manager","resourceTypes":["Microsoft.HybridNetwork","Microsoft.HybridNetwork/networkfunctions","Microsoft.HybridNetwork/devices"]}},{"id":"/providers/Microsoft.Support/services/25aa2af2-9b6e-96b5-ce85-d784a0fea138","name":"25aa2af2-9b6e-96b5-ce85-d784a0fea138","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Object Anchors - Preview","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/a59fab92-b420-a3a7-1370-5ca1d19c278a","name":"a59fab92-b420-a3a7-1370-5ca1d19c278a","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Operator 5G Core - Preview","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/0bd6e979-5014-1900-404c-bdae3fa548a5","name":"0bd6e979-5014-1900-404c-bdae3fa548a5","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Operator Call Protection","resourceTypes":["Microsoft.VoiceServices"]}},{"id":"/providers/Microsoft.Support/services/809bf9f9-cdc2-6547-cbd9-117248bbbe8c","name":"809bf9f9-cdc2-6547-cbd9-117248bbbe8c","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Operator Insights","resourceTypes":["Microsoft.NetworkAnalytics"]}},{"id":"/providers/Microsoft.Support/services/88f7fa12-ffd2-e080-ab1f-16aa954adbfb","name":"88f7fa12-ffd2-e080-ab1f-16aa954adbfb","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Operator Nexus","resourceTypes":["Microsoft.NetworkCloud","Microsoft.ManagedNetworkFabric"]}},{"id":"/providers/Microsoft.Support/services/376a9fef-266e-08ca-fdd8-e85b43d0b66e","name":"376a9fef-266e-08ca-fdd8-e85b43d0b66e","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Operator Service Manager","resourceTypes":["Microsoft.HybridNetwork/publishers","Microsoft.HybridNetwork/sites","Microsoft.HybridNetwork/configurationGroupValues","Microsoft.HybridNetwork/siteNetworkServices","Microsoft.HybridNetwork/networkFunctions"]}},{"id":"/providers/Microsoft.Support/services/c8be3b31-c407-ee77-e40d-ffa6a39201bd","name":"c8be3b31-c407-ee77-e40d-ffa6a39201bd","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Orbital","resourceTypes":["Microsoft.Orbital","Microsoft.Orbital/Spacecrafts","Microsoft.Orbital/Spacecrafts/Contacts"]}},{"id":"/providers/Microsoft.Support/services/ce34cf91-b52e-afe9-57d6-1baf3ff5a59b","name":"ce34cf91-b52e-afe9-57d6-1baf3ff5a59b","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Payment HSM Service","resourceTypes":["Microsoft.HardwareSecurityModules/dedicatedHSM"]}},{"id":"/providers/Microsoft.Support/services/03dc29df-b9ef-75cc-9bce-d87f55dd0f73","name":"03dc29df-b9ef-75cc-9bce-d87f55dd0f73","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Percept","resourceTypes":["Microsoft.AzurePercept/accounts"]}},{"id":"/providers/Microsoft.Support/services/10b4ca52-06e3-3064-3788-5b396ae8ff45","name":"10b4ca52-06e3-3064-3788-5b396ae8ff45","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Policy","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/2b3d28b4-4691-86b5-8a82-22f8e26b2e5e","name":"2b3d28b4-4691-86b5-8a82-22f8e26b2e5e","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Private 5G Core","resourceTypes":["Microsoft.MobileNetwork/mobilenetworks"]}},{"id":"/providers/Microsoft.Support/services/50cb0c81-4dee-0e4e-d7bd-caa5560e76af","name":"50cb0c81-4dee-0e4e-d7bd-caa5560e76af","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Private Link","resourceTypes":["Microsoft.Network/privateLinkServices","Microsoft.Network/privateEndpoints"]}},{"id":"/providers/Microsoft.Support/services/d18affb8-7ce3-f704-a082-5b0fe96068a4","name":"d18affb8-7ce3-f704-a082-5b0fe96068a4","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Programmable Connectivity","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/0dbbd8bb-01d0-3b18-97d8-091ab1b40558","name":"0dbbd8bb-01d0-3b18-97d8-091ab1b40558","type":"Microsoft.Support/services","properties":{"displayName":"Azure + public Multi-Access Edge Compute (MEC)","resourceTypes":["Microsoft.Networking","Microsoft.Compute","Microsoft.Storage"]}},{"id":"/providers/Microsoft.Support/services/c20fd445-607c-6af4-8dff-7e248c950344","name":"c20fd445-607c-6af4-8dff-7e248c950344","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Quantum - Preview","resourceTypes":["Microsoft.Quantum/Workspaces"]}},{"id":"/providers/Microsoft.Support/services/b701b8d6-fc99-aba8-bab9-bc2e171fa89c","name":"b701b8d6-fc99-aba8-bab9-bc2e171fa89c","type":"Microsoft.Support/services","properties":{"displayName":"Azure + RedHat OpenShift","resourceTypes":["Microsoft.RedHatOpenShift/OpenShiftClusters"]}},{"id":"/providers/Microsoft.Support/services/cb6b214b-fbeb-8fd1-a055-3d60bbe81c28","name":"cb6b214b-fbeb-8fd1-a055-3d60bbe81c28","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Resource Graph","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/3366336e-70d9-3450-f04d-5eecce9374fe","name":"3366336e-70d9-3450-f04d-5eecce9374fe","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Resource Mover","resourceTypes":["Microsoft.Migrate/MoveCollections"]}},{"id":"/providers/Microsoft.Support/services/c0ea59a0-318d-3a01-8b10-eeb155952e7c","name":"c0ea59a0-318d-3a01-8b10-eeb155952e7c","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Route Server","resourceTypes":["Microsoft.Network/virtualHubs"]}},{"id":"/providers/Microsoft.Support/services/7ab45c4c-7827-cedf-07bd-2b38f63540ae","name":"7ab45c4c-7827-cedf-07bd-2b38f63540ae","type":"Microsoft.Support/services","properties":{"displayName":"Azure + RTOS","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/b1d432df-e9cc-ff08-d261-32586b843bc1","name":"b1d432df-e9cc-ff08-d261-32586b843bc1","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Site Recovery","resourceTypes":["Microsoft.RecoveryServices/vaults"]}},{"id":"/providers/Microsoft.Support/services/a6475480-6048-1d77-76fc-3118551f24c1","name":"a6475480-6048-1d77-76fc-3118551f24c1","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Sphere","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/bbc183d4-df10-8580-d10b-4123c10ae34d","name":"bbc183d4-df10-8580-d10b-4123c10ae34d","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Spring Apps","resourceTypes":["Microsoft.AppPlatform/Spring"]}},{"id":"/providers/Microsoft.Support/services/2950380d-f11a-136b-1b95-017b71f25ef8","name":"2950380d-f11a-136b-1b95-017b71f25ef8","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Stack Edge","resourceTypes":["Microsoft.DataBoxEdge/DataBoxEdgeDevices"]}},{"id":"/providers/Microsoft.Support/services/297c5dfa-56dd-8040-1ae5-88f78d60e055","name":"297c5dfa-56dd-8040-1ae5-88f78d60e055","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Stack Edge Mini R","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/65f78722-e5a1-858a-6d66-0d5640d688a2","name":"65f78722-e5a1-858a-6d66-0d5640d688a2","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Stack Edge Pro R","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/5804950e-8756-4711-367a-57965175f0ad","name":"5804950e-8756-4711-367a-57965175f0ad","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Stack HCI","resourceTypes":["Microsoft.AzureStackHCI/clusters"]}},{"id":"/providers/Microsoft.Support/services/32d322a8-acae-202d-e9a9-7371dccf381b","name":"32d322a8-acae-202d-e9a9-7371dccf381b","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Stack Hub","resourceTypes":["Microsoft.AzureStack/registrations"]}},{"id":"/providers/Microsoft.Support/services/47e87a02-77c6-23d1-bdd3-858d9b64d4e0","name":"47e87a02-77c6-23d1-bdd3-858d9b64d4e0","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Stack Hub Ruggedized","resourceTypes":["Microsoft.AzureStack/registrations"]}},{"id":"/providers/Microsoft.Support/services/ba5ef5c8-031a-aa1e-76b6-bd58e6f5c452","name":"ba5ef5c8-031a-aa1e-76b6-bd58e6f5c452","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Storage Mover","resourceTypes":["Microsoft.StorageMover/StorageMovers"]}},{"id":"/providers/Microsoft.Support/services/9fccedfd-3d56-635e-e377-c72e2cdb402f","name":"9fccedfd-3d56-635e-e377-c72e2cdb402f","type":"Microsoft.Support/services","properties":{"displayName":"Azure + StorSimple 8000 Series","resourceTypes":["MICROSOFT.STORSIMPLE/MANAGERS","MICROSOFT.STORSIMPLEBVTD2/MANAGERS","MICROSOFT.HYBRIDDATA/DATAMANAGERS"]}},{"id":"/providers/Microsoft.Support/services/9f858284-99ed-c476-0dc6-75be58efedfb","name":"9f858284-99ed-c476-0dc6-75be58efedfb","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Synapse Analytics Apache Spark Pool","resourceTypes":["Microsoft.Synapse/Workspaces/BigDataPools"]}},{"id":"/providers/Microsoft.Support/services/5e76fec8-ad4b-4350-47e6-9b90efd844dc","name":"5e76fec8-ad4b-4350-47e6-9b90efd844dc","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Synapse Analytics Data Explorer Pool","resourceTypes":["Microsoft.Synapse/Workspaces/KustoPools"]}},{"id":"/providers/Microsoft.Support/services/6175465c-97bb-e2fe-3e94-a8ffccdb3dd1","name":"6175465c-97bb-e2fe-3e94-a8ffccdb3dd1","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Synapse Analytics Dedicated SQL Pool","resourceTypes":["Microsoft.Synapse/Workspaces/SqlPools","Microsoft.Sql/Servers/Databases"]}},{"id":"/providers/Microsoft.Support/services/b25ffe84-5478-16e3-3427-00fdf5a5cd91","name":"b25ffe84-5478-16e3-3427-00fdf5a5cd91","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Synapse Analytics Pipeline and Data Flow","resourceTypes":["Microsoft.Synapse/Workspaces"]}},{"id":"/providers/Microsoft.Support/services/19726725-bf71-155c-a930-1fca742d1b87","name":"19726725-bf71-155c-a930-1fca742d1b87","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Synapse Analytics Serverless SQL Pool","resourceTypes":["Microsoft.Synapse/Workspaces"]}},{"id":"/providers/Microsoft.Support/services/b5fc3c5d-ce14-ef83-5816-89984205d0e5","name":"b5fc3c5d-ce14-ef83-5816-89984205d0e5","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Synapse Analytics Synapse Link","resourceTypes":["Microsoft.Synapse/Workspaces"]}},{"id":"/providers/Microsoft.Support/services/8d8fb5f1-f55d-f3c6-8d4b-ab84f9084bca","name":"8d8fb5f1-f55d-f3c6-8d4b-ab84f9084bca","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Synapse Analytics Workspace","resourceTypes":["Microsoft.Synapse/Workspaces"]}},{"id":"/providers/Microsoft.Support/services/9112da51-73b5-92d8-3f2e-1fddb504f4b5","name":"9112da51-73b5-92d8-3f2e-1fddb504f4b5","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Synapse Pathway","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/5c41904f-1bcf-76e4-7a54-5fc07468f3cc","name":"5c41904f-1bcf-76e4-7a54-5fc07468f3cc","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Update Manager","resourceTypes":["Microsoft.HybridCompute/machines","Microsoft.Maintenance/maintenanceConfigurations","Microsoft.Maintenance/configurationAssignments","MICROSOFT.AUTOMATION/AUTOMATIONACCOUNTS","Microsoft.Compute/virtualMachines"]}},{"id":"/providers/Microsoft.Support/services/393f9162-a29a-1e9f-1972-d524c7bc7026","name":"393f9162-a29a-1e9f-1972-d524c7bc7026","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Video Indexer","resourceTypes":["Microsoft.VideoIndexer/accounts"]}},{"id":"/providers/Microsoft.Support/services/63cefc01-98f2-7ef4-2b5f-0c4b268a7dad","name":"63cefc01-98f2-7ef4-2b5f-0c4b268a7dad","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Virtual Desktop","resourceTypes":["Microsoft.DesktopVirtualization/workspace","Microsoft.Desktopvirtualization/hostpools","Microsoft.DesktopVirtualization/hostpools/hostpool/","Microsoft.DesktopVirtualization/appgroup","Microsoft.DesktopVirtualization/applicationgroups","Microsoft.DesktopVirtualization/workspaces","Microsoft.DesktopVirtualization/scalingplans"]}},{"id":"/providers/Microsoft.Support/services/0030df58-1e6e-8958-770e-1ba656360372","name":"0030df58-1e6e-8958-770e-1ba656360372","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Virtual Network Manager","resourceTypes":["Microsoft.Network/networkManagers"]}},{"id":"/providers/Microsoft.Support/services/8df50d5e-6cdd-3a3a-0cb5-95dbef9e09ab","name":"8df50d5e-6cdd-3a3a-0cb5-95dbef9e09ab","type":"Microsoft.Support/services","properties":{"displayName":"Azure + VM Image Builder","resourceTypes":["Microsoft.VirtualMachineImages"]}},{"id":"/providers/Microsoft.Support/services/e7b24d57-0431-7d60-a4bf-e28adc11d23e","name":"e7b24d57-0431-7d60-a4bf-e28adc11d23e","type":"Microsoft.Support/services","properties":{"displayName":"Azure + VMware Solution","resourceTypes":["Microsoft.AVS/privateClouds"]}},{"id":"/providers/Microsoft.Support/services/a4ecd5be-8461-dde6-6761-353dc7d7bf54","name":"a4ecd5be-8461-dde6-6761-353dc7d7bf54","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Web PubSub Service","resourceTypes":["Microsoft.SignalRService/WebPubSub"]}},{"id":"/providers/Microsoft.Support/services/ec9fcee4-7ede-9ba9-7edb-0e6b95428ea5","name":"ec9fcee4-7ede-9ba9-7edb-0e6b95428ea5","type":"Microsoft.Support/services","properties":{"displayName":"Azure + Workbooks","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/468c696a-3e6b-a470-a3c9-1b59cd4abae4","name":"468c696a-3e6b-a470-a3c9-1b59cd4abae4","type":"Microsoft.Support/services","properties":{"displayName":"BareMetal + Infrastructure","resourceTypes":["Microsoft.HanaOnAzure/sapMonitors","Microsoft.BareMetalInfrastructure/bareMetalInstances"]}},{"id":"/providers/Microsoft.Support/services/ffc9bb42-93e4-eb40-5421-ba3537f3a012","name":"ffc9bb42-93e4-eb40-5421-ba3537f3a012","type":"Microsoft.Support/services","properties":{"displayName":"Bastion","resourceTypes":["Microsoft.Network/bastionHosts"]}},{"id":"/providers/Microsoft.Support/services/3f33d852-e61f-d835-8217-a9a677d96914","name":"3f33d852-e61f-d835-8217-a9a677d96914","type":"Microsoft.Support/services","properties":{"displayName":"Batch + Service","resourceTypes":["MICROSOFT.BATCH/BATCHACCOUNTS"]}},{"id":"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc","name":"517f2da6-78fd-0498-4e22-ad26996b1dfc","type":"Microsoft.Support/services","properties":{"displayName":"Billing","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/a2c69e6c-34b6-fc5d-0f35-b496a071c28d","name":"a2c69e6c-34b6-fc5d-0f35-b496a071c28d","type":"Microsoft.Support/services","properties":{"displayName":"Blob + Storage","resourceTypes":["MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS","MICROSOFT.STORAGE/STORAGEACCOUNTS"]}},{"id":"/providers/Microsoft.Support/services/98134488-9bd9-db12-619c-06636d1ee55e","name":"98134488-9bd9-db12-619c-06636d1ee55e","type":"Microsoft.Support/services","properties":{"displayName":"Bot + Service","resourceTypes":["Microsoft.BotService/botServices"]}},{"id":"/providers/Microsoft.Support/services/b16f3aa1-e798-0090-9159-5dc3bae17c5b","name":"b16f3aa1-e798-0090-9159-5dc3bae17c5b","type":"Microsoft.Support/services","properties":{"displayName":"Business + To Consumer (B2C) Tenants","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/275635f1-6a9b-cca1-af9e-c379b30890ff","name":"275635f1-6a9b-cca1-af9e-c379b30890ff","type":"Microsoft.Support/services","properties":{"displayName":"Cache + for Redis","resourceTypes":["MICROSOFT.CACHE/REDIS"]}},{"id":"/providers/Microsoft.Support/services/18f0ceb2-fe97-722d-f789-0dfcde3ab2e4","name":"18f0ceb2-fe97-722d-f789-0dfcde3ab2e4","type":"Microsoft.Support/services","properties":{"displayName":"Cache + for Redis Enterprise","resourceTypes":["MICROSOFT.CACHE/REDISENTERPRISE"]}},{"id":"/providers/Microsoft.Support/services/d6c283ba-2f40-630b-de10-1c586c123501","name":"d6c283ba-2f40-630b-de10-1c586c123501","type":"Microsoft.Support/services","properties":{"displayName":"Carbon + optimization - Preview","resourceTypes":["Microsoft.carbon"]}},{"id":"/providers/Microsoft.Support/services/2b6e85ee-b01f-0479-f799-b37634d993e3","name":"2b6e85ee-b01f-0479-f799-b37634d993e3","type":"Microsoft.Support/services","properties":{"displayName":"Change + Analysis","resourceTypes":["Microsoft.ChangeAnalysis"]}},{"id":"/providers/Microsoft.Support/services/c508dfe2-0a4d-06b0-67a2-28cef284d243","name":"c508dfe2-0a4d-06b0-67a2-28cef284d243","type":"Microsoft.Support/services","properties":{"displayName":"Change + Tracking and Inventory","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/70e113c2-39fd-2640-f1f5-fd5a6beaefa7","name":"70e113c2-39fd-2640-f1f5-fd5a6beaefa7","type":"Microsoft.Support/services","properties":{"displayName":"Chaos + Studio","resourceTypes":["Microsoft.Chaos/experiments"]}},{"id":"/providers/Microsoft.Support/services/2f9ed23d-9575-75e3-cdfb-3e9a5ad5223c","name":"2f9ed23d-9575-75e3-cdfb-3e9a5ad5223c","type":"Microsoft.Support/services","properties":{"displayName":"Cloud + App Discovery","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/c4b5fb5c-e277-0fba-1a6e-967912edac0c","name":"c4b5fb5c-e277-0fba-1a6e-967912edac0c","type":"Microsoft.Support/services","properties":{"displayName":"Cloud + Service (Extended Support) (Web roles/Worker roles)","resourceTypes":["Microsoft.Compute/cloudServices","MICROSOFT.CLASSICCOMPUTE/DOMAINNAMES"]}},{"id":"/providers/Microsoft.Support/services/e79dcabe-5f77-3326-2112-74487e1e5f78","name":"e79dcabe-5f77-3326-2112-74487e1e5f78","type":"Microsoft.Support/services","properties":{"displayName":"Cloud + Services (Web roles/Worker roles)","resourceTypes":["MICROSOFT.CLASSICCOMPUTE/DOMAINNAMES","Microsoft.Compute/cloudServices"]}},{"id":"/providers/Microsoft.Support/services/70a6ce77-640d-fb3b-d2e2-942c479a929b","name":"70a6ce77-640d-fb3b-d2e2-942c479a929b","type":"Microsoft.Support/services","properties":{"displayName":"Cloud + Shell","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/87112f97-cf14-d714-03cb-28af2e422e31","name":"87112f97-cf14-d714-03cb-28af2e422e31","type":"Microsoft.Support/services","properties":{"displayName":"Cognitive + Services","resourceTypes":["MICROSOFT.COGNITIVESERVICES/ACCOUNTS"]}},{"id":"/providers/Microsoft.Support/services/c811355a-31ae-acc0-7364-60bc67ab4ca7","name":"c811355a-31ae-acc0-7364-60bc67ab4ca7","type":"Microsoft.Support/services","properties":{"displayName":"Cognitive + Services-All-in-One Key","resourceTypes":["MICROSOFT.COGNITIVESERVICES/ACCOUNTS"]}},{"id":"/providers/Microsoft.Support/services/3c9e9005-bd01-4331-8483-68c4c0a9c1b9","name":"3c9e9005-bd01-4331-8483-68c4c0a9c1b9","type":"Microsoft.Support/services","properties":{"displayName":"Cognitive + Services-Anomaly Detector","resourceTypes":["Microsoft.CognitiveServices/Accounts"]}},{"id":"/providers/Microsoft.Support/services/9e65c540-e7ae-b43c-1e0a-ba8dc860dbbd","name":"9e65c540-e7ae-b43c-1e0a-ba8dc860dbbd","type":"Microsoft.Support/services","properties":{"displayName":"Cognitive + Services-Bing Custom Search","resourceTypes":["Microsoft.CognitiveServices/Accounts"]}},{"id":"/providers/Microsoft.Support/services/355c72f1-6700-8523-f274-8b65d1f10c7b","name":"355c72f1-6700-8523-f274-8b65d1f10c7b","type":"Microsoft.Support/services","properties":{"displayName":"Cognitive + Services-Bing Search","resourceTypes":["MICROSOFT.COGNITIVESERVICES/ACCOUNTS"]}},{"id":"/providers/Microsoft.Support/services/71e0f29e-91d4-acb4-329e-fb16cd7c366e","name":"71e0f29e-91d4-acb4-329e-fb16cd7c366e","type":"Microsoft.Support/services","properties":{"displayName":"Cognitive + Services-Bing Spell Check","resourceTypes":["Microsoft.CognitiveServices/Accounts"]}},{"id":"/providers/Microsoft.Support/services/00677266-37a0-73ba-d7c4-ad3c814b2b11","name":"00677266-37a0-73ba-d7c4-ad3c814b2b11","type":"Microsoft.Support/services","properties":{"displayName":"Cognitive + Services-Computer Vision","resourceTypes":["MICROSOFT.COGNITIVESERVICES/ACCOUNTS"]}},{"id":"/providers/Microsoft.Support/services/7f35b180-0014-494f-df00-68fc50a92976","name":"7f35b180-0014-494f-df00-68fc50a92976","type":"Microsoft.Support/services","properties":{"displayName":"Cognitive + Services-Content Moderator","resourceTypes":["Microsoft.CognitiveServices/Accounts"]}},{"id":"/providers/Microsoft.Support/services/6dfefaed-7312-8350-bbe6-c452fe5749c7","name":"6dfefaed-7312-8350-bbe6-c452fe5749c7","type":"Microsoft.Support/services","properties":{"displayName":"Cognitive + Services-Custom Vision","resourceTypes":["MICROSOFT.COGNITIVESERVICES/ACCOUNTS"]}},{"id":"/providers/Microsoft.Support/services/01cde781-0618-be89-60ce-14ca8e939c7d","name":"01cde781-0618-be89-60ce-14ca8e939c7d","type":"Microsoft.Support/services","properties":{"displayName":"Cognitive + Services-Face API","resourceTypes":["MICROSOFT.COGNITIVESERVICES/ACCOUNTS"]}},{"id":"/providers/Microsoft.Support/services/1a8bf6aa-6385-da93-8884-b1de5934f242","name":"1a8bf6aa-6385-da93-8884-b1de5934f242","type":"Microsoft.Support/services","properties":{"displayName":"Cognitive + Services-Form Recognizer","resourceTypes":["Microsoft.CognitiveServices/Accounts"]}},{"id":"/providers/Microsoft.Support/services/e78c1fb0-1fd4-7ad6-df28-6b8d6f2c803f","name":"e78c1fb0-1fd4-7ad6-df28-6b8d6f2c803f","type":"Microsoft.Support/services","properties":{"displayName":"Cognitive + Services-Immersive Reader","resourceTypes":["Microsoft.CognitiveServices/Accounts"]}},{"id":"/providers/Microsoft.Support/services/7faf083e-7dd5-a35b-ba18-52eeac29d9a1","name":"7faf083e-7dd5-a35b-ba18-52eeac29d9a1","type":"Microsoft.Support/services","properties":{"displayName":"Cognitive + Services-LUIS","resourceTypes":["MICROSOFT.COGNITIVESERVICES/ACCOUNTS"]}},{"id":"/providers/Microsoft.Support/services/97c076d2-d123-a335-a64b-362198ae7004","name":"97c076d2-d123-a335-a64b-362198ae7004","type":"Microsoft.Support/services","properties":{"displayName":"Cognitive + Services-Metrics Advisor","resourceTypes":["Microsoft.CognitiveServices/Accounts"]}},{"id":"/providers/Microsoft.Support/services/13fc6b1d-b65d-0800-19e3-77521c7e4e09","name":"13fc6b1d-b65d-0800-19e3-77521c7e4e09","type":"Microsoft.Support/services","properties":{"displayName":"Cognitive + Services-Personalizer","resourceTypes":["Microsoft.CognitiveServices/Accounts"]}},{"id":"/providers/Microsoft.Support/services/9a2cd2eb-f793-9717-a145-3497086f40b4","name":"9a2cd2eb-f793-9717-a145-3497086f40b4","type":"Microsoft.Support/services","properties":{"displayName":"Cognitive + Services-QnA Maker","resourceTypes":["MICROSOFT.COGNITIVESERVICES/ACCOUNTS"]}},{"id":"/providers/Microsoft.Support/services/8d2d990b-173c-fbee-3913-05e3f338b67b","name":"8d2d990b-173c-fbee-3913-05e3f338b67b","type":"Microsoft.Support/services","properties":{"displayName":"Cognitive + Services-Speech Services","resourceTypes":["MICROSOFT.COGNITIVESERVICES/ACCOUNTS"]}},{"id":"/providers/Microsoft.Support/services/b1bfd43f-f4f6-7e3c-4a01-ed74b71b6dd7","name":"b1bfd43f-f4f6-7e3c-4a01-ed74b71b6dd7","type":"Microsoft.Support/services","properties":{"displayName":"Cognitive + Services-Text Analytics","resourceTypes":["MICROSOFT.COGNITIVESERVICES/ACCOUNTS"]}},{"id":"/providers/Microsoft.Support/services/4bc4301f-b40e-080d-9252-a523f88a16e7","name":"4bc4301f-b40e-080d-9252-a523f88a16e7","type":"Microsoft.Support/services","properties":{"displayName":"Cognitive + Services-Translator Text","resourceTypes":["MICROSOFT.COGNITIVESERVICES/ACCOUNTS"]}},{"id":"/providers/Microsoft.Support/services/2e9d497d-e486-8d76-3582-ad201c974730","name":"2e9d497d-e486-8d76-3582-ad201c974730","type":"Microsoft.Support/services","properties":{"displayName":"Communication + Services","resourceTypes":["Microsoft.Communication/CommunicationServices"]}},{"id":"/providers/Microsoft.Support/services/98594b2e-741c-7d1c-2eb5-b06e25670cc4","name":"98594b2e-741c-7d1c-2eb5-b06e25670cc4","type":"Microsoft.Support/services","properties":{"displayName":"Communications + Gateway","resourceTypes":["Microsoft.VoiceServices/CommunicationsGateways"]}},{"id":"/providers/Microsoft.Support/services/6db223ca-4ea9-41b9-af8a-61a0a5b6a150","name":"6db223ca-4ea9-41b9-af8a-61a0a5b6a150","type":"Microsoft.Support/services","properties":{"displayName":"Confidential + Ledger","resourceTypes":["Microsoft.ConfidentialLedger"]}},{"id":"/providers/Microsoft.Support/services/6f3d78e8-246d-880c-acec-31033f3a7a8f","name":"6f3d78e8-246d-880c-acec-31033f3a7a8f","type":"Microsoft.Support/services","properties":{"displayName":"Confluent + on Azure","resourceTypes":["microsoft.confluent/organizations"]}},{"id":"/providers/Microsoft.Support/services/5bc1fc7c-358f-3640-9d3f-f051a51c1e93","name":"5bc1fc7c-358f-3640-9d3f-f051a51c1e93","type":"Microsoft.Support/services","properties":{"displayName":"Container + Apps","resourceTypes":["Microsoft.App/containerapps","Microsoft.App/managedenvironments","Microsoft.App/jobs"]}},{"id":"/providers/Microsoft.Support/services/44557205-b0ce-df77-a5b5-5e145323f4a1","name":"44557205-b0ce-df77-a5b5-5e145323f4a1","type":"Microsoft.Support/services","properties":{"displayName":"Container + insights","resourceTypes":["Microsoft.ContainerService/OpenshiftManagedclusters"]}},{"id":"/providers/Microsoft.Support/services/fd718335-8143-4759-bb14-cf7cff4f585e","name":"fd718335-8143-4759-bb14-cf7cff4f585e","type":"Microsoft.Support/services","properties":{"displayName":"Container + Instances","resourceTypes":["MICROSOFT.CONTAINERINSTANCE/CONTAINERGROUPS"]}},{"id":"/providers/Microsoft.Support/services/f100a6d5-17df-c517-a2bc-ecc2a5bfb975","name":"f100a6d5-17df-c517-a2bc-ecc2a5bfb975","type":"Microsoft.Support/services","properties":{"displayName":"Container + Registry","resourceTypes":["MICROSOFT.CONTAINERREGISTRY/REGISTRIES"]}},{"id":"/providers/Microsoft.Support/services/201a3899-cb54-d8ec-d02f-7b0a4fd0d67f","name":"201a3899-cb54-d8ec-d02f-7b0a4fd0d67f","type":"Microsoft.Support/services","properties":{"displayName":"Container + Registry on Azure Stack Hub - Preview","resourceTypes":["Microsoft.AzureStack/registrations"]}},{"id":"/providers/Microsoft.Support/services/5a2a4812-d5f3-18a2-f6d6-5f847a5a96a1","name":"5a2a4812-d5f3-18a2-f6d6-5f847a5a96a1","type":"Microsoft.Support/services","properties":{"displayName":"Container + Storage","resourceTypes":["Microsoft.ContainerStorage"]}},{"id":"/providers/Microsoft.Support/services/6c9754aa-1828-2b91-0d32-31f7774af6a7","name":"6c9754aa-1828-2b91-0d32-31f7774af6a7","type":"Microsoft.Support/services","properties":{"displayName":"Content + Safety","resourceTypes":["Microsoft.Cognitive"]}},{"id":"/providers/Microsoft.Support/services/d9516a10-74b5-45f4-943d-a5281d7cf1bb","name":"d9516a10-74b5-45f4-943d-a5281d7cf1bb","type":"Microsoft.Support/services","properties":{"displayName":"Cosmos + DB","resourceTypes":["MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS"]}},{"id":"/providers/Microsoft.Support/services/33476b0f-7f52-9f63-56d0-5924636304ff","name":"33476b0f-7f52-9f63-56d0-5924636304ff","type":"Microsoft.Support/services","properties":{"displayName":"Customer + Lockbox for Microsoft Azure","resourceTypes":["Microsoft.CustomerLockbox"]}},{"id":"/providers/Microsoft.Support/services/53cdda84-33c0-81db-6a25-adaac64419d6","name":"53cdda84-33c0-81db-6a25-adaac64419d6","type":"Microsoft.Support/services","properties":{"displayName":"CycleCloud","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/a091fbc6-3624-42e8-4b3c-654a29d6958e","name":"a091fbc6-3624-42e8-4b3c-654a29d6958e","type":"Microsoft.Support/services","properties":{"displayName":"Data + Box","resourceTypes":["MICROSOFT.DATABOX/JOBS"]}},{"id":"/providers/Microsoft.Support/services/5d6f97e5-c9cf-e3c7-98e0-6011d194d84f","name":"5d6f97e5-c9cf-e3c7-98e0-6011d194d84f","type":"Microsoft.Support/services","properties":{"displayName":"Data + Box Gateway","resourceTypes":["Microsoft.DataBoxGateway","Microsoft.Storage","Microsoft.DataBoxEdge/DataBoxEdgeDevices"]}},{"id":"/providers/Microsoft.Support/services/9a7df480-f592-a980-906c-bd1fd3060aa8","name":"9a7df480-f592-a980-906c-bd1fd3060aa8","type":"Microsoft.Support/services","properties":{"displayName":"Data + Catalog","resourceTypes":["MICROSOFT.DATACATALOG/CATALOGS"]}},{"id":"/providers/Microsoft.Support/services/f0bd9b83-fcdc-15ec-a9db-47068d512d4f","name":"f0bd9b83-fcdc-15ec-a9db-47068d512d4f","type":"Microsoft.Support/services","properties":{"displayName":"Data + Collection Rules (DCR) and Agent (AMA)","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/0d06686e-fac3-fde3-a8c1-6dfbc8bd3865","name":"0d06686e-fac3-fde3-a8c1-6dfbc8bd3865","type":"Microsoft.Support/services","properties":{"displayName":"Data + Explorer","resourceTypes":["Microsoft.Kusto/Clusters","Microsoft.Kusto/Databases"]}},{"id":"/providers/Microsoft.Support/services/113715b9-70c6-3019-fa70-5d9f0c15c610","name":"113715b9-70c6-3019-fa70-5d9f0c15c610","type":"Microsoft.Support/services","properties":{"displayName":"Data + Factory","resourceTypes":["MICROSOFT.DATAFACTORY/DATAFACTORIES","MICROSOFT.DATAFACTORY/FACTORIES"]}},{"id":"/providers/Microsoft.Support/services/eea96939-cf20-792a-ed0a-f11eb11336df","name":"eea96939-cf20-792a-ed0a-f11eb11336df","type":"Microsoft.Support/services","properties":{"displayName":"Data + Lake Analytics","resourceTypes":["MICROSOFT.DATALAKEANALYTICS/ACCOUNTS","MICROSOFT.DATALAKEANALYTICS/ACCOUNTS/STORAGEACCOUNTS"]}},{"id":"/providers/Microsoft.Support/services/7ecbaeae-c1bc-285f-a3bd-b5a3ba00b294","name":"7ecbaeae-c1bc-285f-a3bd-b5a3ba00b294","type":"Microsoft.Support/services","properties":{"displayName":"Data + Lake Storage Gen1","resourceTypes":["MICROSOFT.DATALAKESTORE/ACCOUNTS"]}},{"id":"/providers/Microsoft.Support/services/a95c4ceb-9637-4484-2205-d1162a7d2249","name":"a95c4ceb-9637-4484-2205-d1162a7d2249","type":"Microsoft.Support/services","properties":{"displayName":"Data + Lake Storage Gen2","resourceTypes":["MICROSOFT.STORAGE/STORAGEACCOUNTS","Wandisco.Fusion/fusionGroups","Wandisco.Fusion/migrators"]}},{"id":"/providers/Microsoft.Support/services/0c1a625e-85d1-f83b-7248-2367293c9d85","name":"0c1a625e-85d1-f83b-7248-2367293c9d85","type":"Microsoft.Support/services","properties":{"displayName":"Data + Share","resourceTypes":["Microsoft.DataShare/accounts"]}},{"id":"/providers/Microsoft.Support/services/8c615be4-9081-f10c-5866-afa4fab9666d","name":"8c615be4-9081-f10c-5866-afa4fab9666d","type":"Microsoft.Support/services","properties":{"displayName":"Database + Migration Service","resourceTypes":["MICROSOFT.DATAMIGRATION/SERVICES","Microsoft.DataMigration/SQLMigrationServices"]}},{"id":"/providers/Microsoft.Support/services/3461f86b-df79-07f2-aad9-34a81b2d9023","name":"3461f86b-df79-07f2-aad9-34a81b2d9023","type":"Microsoft.Support/services","properties":{"displayName":"Databricks","resourceTypes":["MICROSOFT.DATABRICKS/WORKSPACES"]}},{"id":"/providers/Microsoft.Support/services/251a4e5f-1aac-be01-3279-4249c348b4cb","name":"251a4e5f-1aac-be01-3279-4249c348b4cb","type":"Microsoft.Support/services","properties":{"displayName":"Datadog + on Azure","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/d22650a0-c129-647b-967c-fb18c83584c6","name":"d22650a0-c129-647b-967c-fb18c83584c6","type":"Microsoft.Support/services","properties":{"displayName":"DDOS + Protection","resourceTypes":["MICROSOFT.NETWORK/DDOSPROTECTIONPLANS"]}},{"id":"/providers/Microsoft.Support/services/7d1ce754-b825-74b6-8022-87193cd96b6e","name":"7d1ce754-b825-74b6-8022-87193cd96b6e","type":"Microsoft.Support/services","properties":{"displayName":"Dedicated + HSM","resourceTypes":["Microsoft.HardwareSecurityModules/DedicatedHSM"]}},{"id":"/providers/Microsoft.Support/services/546aaccb-cb73-2d7a-546f-e4001c2a0670","name":"546aaccb-cb73-2d7a-546f-e4001c2a0670","type":"Microsoft.Support/services","properties":{"displayName":"Device + Update for IoT Hub","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/5405fb26-173b-7571-9998-98e23cd8643d","name":"5405fb26-173b-7571-9998-98e23cd8643d","type":"Microsoft.Support/services","properties":{"displayName":"DevTest + Labs","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/39dc26f0-c1b1-2323-c39f-3ae3860e0c37","name":"39dc26f0-c1b1-2323-c39f-3ae3860e0c37","type":"Microsoft.Support/services","properties":{"displayName":"Diagnostic + Logs and Diagnostic Settings","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/1d311e9b-0852-2f19-07bf-22f48e57d71a","name":"1d311e9b-0852-2f19-07bf-22f48e57d71a","type":"Microsoft.Support/services","properties":{"displayName":"Disk + Storage","resourceTypes":["MICROSOFT.COMPUTE/Disks","MICROSOFT.COMPUTE/diskEncryptionSets"]}},{"id":"/providers/Microsoft.Support/services/633d88dc-7cf1-cc96-7053-3552fcc9235a","name":"633d88dc-7cf1-cc96-7053-3552fcc9235a","type":"Microsoft.Support/services","properties":{"displayName":"Dynatrace + on Azure","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/8b583bd0-6368-dc07-8719-f7d94a4ea536","name":"8b583bd0-6368-dc07-8719-f7d94a4ea536","type":"Microsoft.Support/services","properties":{"displayName":"Elastic + on Azure","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/ed4dbd49-ba0e-777b-b059-0450428f2879","name":"ed4dbd49-ba0e-777b-b059-0450428f2879","type":"Microsoft.Support/services","properties":{"displayName":"Elastic + San","resourceTypes":["Microsoft.ElasticSan"]}},{"id":"/providers/Microsoft.Support/services/a79c6645-e39b-3410-6e3c-24c6b96b616b","name":"a79c6645-e39b-3410-6e3c-24c6b96b616b","type":"Microsoft.Support/services","properties":{"displayName":"Enrollment + administration","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/569cea1e-00ed-f1fa-d1ad-39b3fbec6475","name":"569cea1e-00ed-f1fa-d1ad-39b3fbec6475","type":"Microsoft.Support/services","properties":{"displayName":"Epic + on Azure","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/bfe4c4f0-96eb-41a9-a9aa-23a3b5ed9974","name":"bfe4c4f0-96eb-41a9-a9aa-23a3b5ed9974","type":"Microsoft.Support/services","properties":{"displayName":"Event + Grid","resourceTypes":["MICROSOFT.EVENTGRID/TOPICS","Microsoft.EventGrid/domains","Microsoft.EventGrid/systemTopics","Microsoft.EventGrid/partnerTopics","Microsoft.EventGrid/namespaces"]}},{"id":"/providers/Microsoft.Support/services/e8b3dd28-f3eb-c73f-e03a-20159685defa","name":"e8b3dd28-f3eb-c73f-e03a-20159685defa","type":"Microsoft.Support/services","properties":{"displayName":"Event + Grid on Kubernetes with Azure Arc - Preview","resourceTypes":["Microsoft.EventGrid"]}},{"id":"/providers/Microsoft.Support/services/4fa35c58-016c-a25b-4105-bd667c24ab1f","name":"4fa35c58-016c-a25b-4105-bd667c24ab1f","type":"Microsoft.Support/services","properties":{"displayName":"Event + Hubs","resourceTypes":["MICROSOFT.EVENTHUB/NAMESPACES"]}},{"id":"/providers/Microsoft.Support/services/48ffed53-baf4-c26a-c7a1-4bea807be2a0","name":"48ffed53-baf4-c26a-c7a1-4bea807be2a0","type":"Microsoft.Support/services","properties":{"displayName":"Event + Hubs on Azure Stack Hub","resourceTypes":["Microsoft.AzureStack/registrations"]}},{"id":"/providers/Microsoft.Support/services/759b4975-eee7-178d-6996-31047d078bf2","name":"759b4975-eee7-178d-6996-31047d078bf2","type":"Microsoft.Support/services","properties":{"displayName":"ExpressRoute","resourceTypes":["MICROSOFT.NETWORK/EXPRESSROUTECIRCUITS"]}},{"id":"/providers/Microsoft.Support/services/74e3c1c3-412f-e934-70c5-24629ea33cf7","name":"74e3c1c3-412f-e934-70c5-24629ea33cf7","type":"Microsoft.Support/services","properties":{"displayName":"ExpressRoute + Direct","resourceTypes":["Microsoft.Network/expressRoutePorts","MICROSOFT.NETWORKFUNCTION/AZURETRAFFICCOLLECTORS"]}},{"id":"/providers/Microsoft.Support/services/ce989245-7b7b-ab4f-ac5a-a4ca2ee9d2a2","name":"ce989245-7b7b-ab4f-ac5a-a4ca2ee9d2a2","type":"Microsoft.Support/services","properties":{"displayName":"ExpressRoute + Service Provider","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/14ec3ea7-c6ee-6f43-0480-1994e19e2b71","name":"14ec3ea7-c6ee-6f43-0480-1994e19e2b71","type":"Microsoft.Support/services","properties":{"displayName":"Fabric + Admin & Management","resourceTypes":["Microsoft.Fabric"]}},{"id":"/providers/Microsoft.Support/services/ce616a11-6c3c-3787-e5af-87bd93f057ac","name":"ce616a11-6c3c-3787-e5af-87bd93f057ac","type":"Microsoft.Support/services","properties":{"displayName":"Fabric + Data Activator (Preview)","resourceTypes":["Microsoft.Fabric"]}},{"id":"/providers/Microsoft.Support/services/abe09b55-980d-8005-43d1-3dc68d4e7da2","name":"abe09b55-980d-8005-43d1-3dc68d4e7da2","type":"Microsoft.Support/services","properties":{"displayName":"Fabric + Data Factory","resourceTypes":["Microsoft.Fabric"]}},{"id":"/providers/Microsoft.Support/services/0d20107a-6793-f1c3-409b-d697e64b6ebb","name":"0d20107a-6793-f1c3-409b-d697e64b6ebb","type":"Microsoft.Support/services","properties":{"displayName":"Fabric + Healthcare Data Solutions (Preview)","resourceTypes":["Microsoft.Fabric"]}},{"id":"/providers/Microsoft.Support/services/790e4cf1-2147-6bb2-0f93-b8455e189f22","name":"790e4cf1-2147-6bb2-0f93-b8455e189f22","type":"Microsoft.Support/services","properties":{"displayName":"Fabric + Retail Data Solutions (Preview)","resourceTypes":["Microsoft.Fabric"]}},{"id":"/providers/Microsoft.Support/services/d1b45bee-a445-760e-e81e-5c0851cf9fe4","name":"d1b45bee-a445-760e-e81e-5c0851cf9fe4","type":"Microsoft.Support/services","properties":{"displayName":"Fabric + Sustainability Data Solutions (Preview)","resourceTypes":["Microsoft.Fabric"]}},{"id":"/providers/Microsoft.Support/services/84c5d9a0-a381-cbe3-68c4-92d6d031e1d2","name":"84c5d9a0-a381-cbe3-68c4-92d6d031e1d2","type":"Microsoft.Support/services","properties":{"displayName":"Fabric + Synapse Data Engineering","resourceTypes":["Microsoft.Fabric"]}},{"id":"/providers/Microsoft.Support/services/5f7c1f86-6c27-9a46-c580-677513de3d8c","name":"5f7c1f86-6c27-9a46-c580-677513de3d8c","type":"Microsoft.Support/services","properties":{"displayName":"Fabric + Synapse Data Science","resourceTypes":["Microsoft.Fabric"]}},{"id":"/providers/Microsoft.Support/services/97d4fe08-885c-2713-8a1c-517a8b2874ac","name":"97d4fe08-885c-2713-8a1c-517a8b2874ac","type":"Microsoft.Support/services","properties":{"displayName":"Fabric + Synapse Data Warehouse","resourceTypes":["Microsoft.Fabric"]}},{"id":"/providers/Microsoft.Support/services/fac12c7e-6522-1af5-3898-a45a905495d5","name":"fac12c7e-6522-1af5-3898-a45a905495d5","type":"Microsoft.Support/services","properties":{"displayName":"Fabric + Synapse Real-Time Analytics","resourceTypes":["Microsoft.Fabric"]}},{"id":"/providers/Microsoft.Support/services/30dfd88b-b455-1748-a4a0-e4c5aa795663","name":"30dfd88b-b455-1748-a4a0-e4c5aa795663","type":"Microsoft.Support/services","properties":{"displayName":"Files + Storage","resourceTypes":["MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS","MICROSOFT.STORAGE/STORAGEACCOUNTS","MICROSOFT.STORAGESYNC/STORAGESYNCSERVICES"]}},{"id":"/providers/Microsoft.Support/services/fafcf178-45ee-85df-ef14-982729bf2f82","name":"fafcf178-45ee-85df-ef14-982729bf2f82","type":"Microsoft.Support/services","properties":{"displayName":"Front + Door Service","resourceTypes":["MICROSOFT.NETWORK/FRONTDOORS"]}},{"id":"/providers/Microsoft.Support/services/2a1d6261-5ecd-a128-739f-9bd4f2154ba5","name":"2a1d6261-5ecd-a128-739f-9bd4f2154ba5","type":"Microsoft.Support/services","properties":{"displayName":"Front + Door Standard and Premium","resourceTypes":["microsoft.cdn/profiles"]}},{"id":"/providers/Microsoft.Support/services/5ce8de69-abba-65a0-e0e4-a684bcbc7931","name":"5ce8de69-abba-65a0-e0e4-a684bcbc7931","type":"Microsoft.Support/services","properties":{"displayName":"Function + App","resourceTypes":["MICROSOFT.WEB/SITES"]}},{"id":"/providers/Microsoft.Support/services/24629f4c-b450-03f7-aa4f-e2c48f422560","name":"24629f4c-b450-03f7-aa4f-e2c48f422560","type":"Microsoft.Support/services","properties":{"displayName":"Function + App on Azure Arc","resourceTypes":["Microsoft.Web/Sites"]}},{"id":"/providers/Microsoft.Support/services/93c1bf6f-2816-3f1f-269d-9ee459d000a6","name":"93c1bf6f-2816-3f1f-269d-9ee459d000a6","type":"Microsoft.Support/services","properties":{"displayName":"GitHub + Advanced Security for Azure DevOps","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/354c8172-2cc3-fef7-ed37-81214a6298a5","name":"354c8172-2cc3-fef7-ed37-81214a6298a5","type":"Microsoft.Support/services","properties":{"displayName":"Global + Secure Access","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/e053e63d-7425-0499-485c-4f5ba4b78244","name":"e053e63d-7425-0499-485c-4f5ba4b78244","type":"Microsoft.Support/services","properties":{"displayName":"HDInsight + on AKS - Preview","resourceTypes":["MICROSOFT.HDINSIGHT/CLUSTERPOOLS","MICROSOFT.HDINSIGHT/CLUSTERPOOLS/CLUSTERS"]}},{"id":"/providers/Microsoft.Support/services/5ffad63a-3267-d6b7-2fa1-6d9134c1fa62","name":"5ffad63a-3267-d6b7-2fa1-6d9134c1fa62","type":"Microsoft.Support/services","properties":{"displayName":"HDInsight + Service","resourceTypes":["MICROSOFT.HDINSIGHT/CLUSTERS"]}},{"id":"/providers/Microsoft.Support/services/e00b1ed8-fc24-fef4-6f4c-36d963708ae1","name":"e00b1ed8-fc24-fef4-6f4c-36d963708ae1","type":"Microsoft.Support/services","properties":{"displayName":"High + Performance Computing (HPC)","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/6b415938-2927-0d9d-6c3c-fbacea64e42d","name":"6b415938-2927-0d9d-6c3c-fbacea64e42d","type":"Microsoft.Support/services","properties":{"displayName":"HPC + Cache","resourceTypes":["Microsoft.StorageCache/caches"]}},{"id":"/providers/Microsoft.Support/services/9f7ef27e-7bdb-0570-4e15-f50c870f03aa","name":"9f7ef27e-7bdb-0570-4e15-f50c870f03aa","type":"Microsoft.Support/services","properties":{"displayName":"Insights + for Azure Stack HCI","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/370cf612-d7bd-b9e5-5a3c-42532257212c","name":"370cf612-d7bd-b9e5-5a3c-42532257212c","type":"Microsoft.Support/services","properties":{"displayName":"Intelligent + Recommendations","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/fb35bf64-b744-16ba-68d1-e1853af0816e","name":"fb35bf64-b744-16ba-68d1-e1853af0816e","type":"Microsoft.Support/services","properties":{"displayName":"IoT + Central","resourceTypes":["MICROSOFT.IOTCENTRAL/IOTAPPS"]}},{"id":"/providers/Microsoft.Support/services/ea37799f-166b-c702-e4d1-e17fa52b2984","name":"ea37799f-166b-c702-e4d1-e17fa52b2984","type":"Microsoft.Support/services","properties":{"displayName":"IoT + Device Provisioning Service","resourceTypes":["MICROSOFT.DEVICES/PROVISIONINGSERVICES"]}},{"id":"/providers/Microsoft.Support/services/0ebfa061-1e74-5f8f-ed46-5a46e13e5d33","name":"0ebfa061-1e74-5f8f-ed46-5a46e13e5d33","type":"Microsoft.Support/services","properties":{"displayName":"IoT + Edge","resourceTypes":["MICROSOFT.DEVICES/IOTHUBS"]}},{"id":"/providers/Microsoft.Support/services/b8b1c1dd-dfe1-63e8-cc06-e6a1a1c5a853","name":"b8b1c1dd-dfe1-63e8-cc06-e6a1a1c5a853","type":"Microsoft.Support/services","properties":{"displayName":"IoT + Hub","resourceTypes":["MICROSOFT.DEVICES/IOTHUBS"]}},{"id":"/providers/Microsoft.Support/services/4ba83714-c274-28d6-af7f-43c12863bf2f","name":"4ba83714-c274-28d6-af7f-43c12863bf2f","type":"Microsoft.Support/services","properties":{"displayName":"IoT + SDKs","resourceTypes":["MICROSOFT.DEVICES/IOTHUBS"]}},{"id":"/providers/Microsoft.Support/services/e7c01763-5374-faf0-d1ac-1719f8da4612","name":"e7c01763-5374-faf0-d1ac-1719f8da4612","type":"Microsoft.Support/services","properties":{"displayName":"IP + Services","resourceTypes":["Microsoft.Network/customipprefixes","Microsoft.Network/PublicIPAddresses","Microsoft.Network/PublicIPPrefixes"]}},{"id":"/providers/Microsoft.Support/services/0283d26b-bad8-f0e2-37f4-86dc0328c710","name":"0283d26b-bad8-f0e2-37f4-86dc0328c710","type":"Microsoft.Support/services","properties":{"displayName":"Key + Vault","resourceTypes":["MICROSOFT.KEYVAULT/VAULTS"]}},{"id":"/providers/Microsoft.Support/services/8f1ddc5f-0c5e-50c7-9810-e01a8d1da925","name":"8f1ddc5f-0c5e-50c7-9810-e01a8d1da925","type":"Microsoft.Support/services","properties":{"displayName":"Kubernetes + (AKS Engine) on Azure Stack Hub","resourceTypes":["Microsoft.AzureStack/registrations"]}},{"id":"/providers/Microsoft.Support/services/5a3a423f-8667-9095-1770-0a554a934512","name":"5a3a423f-8667-9095-1770-0a554a934512","type":"Microsoft.Support/services","properties":{"displayName":"Kubernetes + Service (AKS)","resourceTypes":["MICROSOFT.CONTAINERSERVICE/MANAGEDCLUSTERS"]}},{"id":"/providers/Microsoft.Support/services/7f2f38ed-ca01-fd3a-b7d4-d029e970f574","name":"7f2f38ed-ca01-fd3a-b7d4-d029e970f574","type":"Microsoft.Support/services","properties":{"displayName":"Kubernetes + Service (AKS) on Azure Stack Hub - Preview","resourceTypes":["Microsoft.AzureStack/registrations"]}},{"id":"/providers/Microsoft.Support/services/b8925cb6-338d-9b0c-2655-1ef611982fc4","name":"b8925cb6-338d-9b0c-2655-1ef611982fc4","type":"Microsoft.Support/services","properties":{"displayName":"Lab + Services with lab account","resourceTypes":["MICROSOFT.DEVTESTLAB/LABS","MICROSOFT.LABSERVICES/LABACCOUNTS"]}},{"id":"/providers/Microsoft.Support/services/9c87a292-835f-d089-8368-9a6daaad2f24","name":"9c87a292-835f-d089-8368-9a6daaad2f24","type":"Microsoft.Support/services","properties":{"displayName":"Lab + Services with lab plan","resourceTypes":["MICROSOFT.LABSERVICES/LABS","MICROSOFT.LABSERVICES/LABPLANS"]}},{"id":"/providers/Microsoft.Support/services/b0882e3d-d09c-ca61-725b-b5d318365454","name":"b0882e3d-d09c-ca61-725b-b5d318365454","type":"Microsoft.Support/services","properties":{"displayName":"Lighthouse","resourceTypes":["Microsoft.ManagedServices"]}},{"id":"/providers/Microsoft.Support/services/7b29574f-b855-9dec-9b08-fe4aeaa3bbc0","name":"7b29574f-b855-9dec-9b08-fe4aeaa3bbc0","type":"Microsoft.Support/services","properties":{"displayName":"Load + Balancer","resourceTypes":["MICROSOFT.NETWORK/LOADBALANCERS"]}},{"id":"/providers/Microsoft.Support/services/1bfb8072-ed96-9acc-b57c-34d716b5f674","name":"1bfb8072-ed96-9acc-b57c-34d716b5f674","type":"Microsoft.Support/services","properties":{"displayName":"Log + Analytics","resourceTypes":["MICROSOFT.OPERATIONALINSIGHTS/WORKSPACES"]}},{"id":"/providers/Microsoft.Support/services/908d4c6f-e217-fecc-1fd8-284779c5aaf5","name":"908d4c6f-e217-fecc-1fd8-284779c5aaf5","type":"Microsoft.Support/services","properties":{"displayName":"Log + Analytics agent (MMA and OMS)","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/9239daee-9951-e495-0aee-bf6b73708882","name":"9239daee-9951-e495-0aee-bf6b73708882","type":"Microsoft.Support/services","properties":{"displayName":"Logic + App","resourceTypes":["MICROSOFT.LOGIC/WORKFLOWS","Microsoft.Logic/integrationServiceEnvironments","Microsoft.Web/sites"]}},{"id":"/providers/Microsoft.Support/services/bd329b99-32f4-07bf-22e1-717f87d355b9","name":"bd329b99-32f4-07bf-22e1-717f87d355b9","type":"Microsoft.Support/services","properties":{"displayName":"Logic + App on Azure Arc","resourceTypes":["Microsoft.Logic/integrationServiceEnvironments","Microsoft.Logic/Workflows","MICROSOFT.WEB/SITES"]}},{"id":"/providers/Microsoft.Support/services/65e73690-23aa-be68-83be-a6b9bd188345","name":"65e73690-23aa-be68-83be-a6b9bd188345","type":"Microsoft.Support/services","properties":{"displayName":"Logic + App-Integration Service Environment (ISE)","resourceTypes":["Microsoft.Logic/integrationServiceEnvironments"]}},{"id":"/providers/Microsoft.Support/services/6a2a5a09-c969-3adc-bc12-bfd87296f968","name":"6a2a5a09-c969-3adc-bc12-bfd87296f968","type":"Microsoft.Support/services","properties":{"displayName":"Logic + App-Logic App (Standard)","resourceTypes":["Microsoft.Web/sites"]}},{"id":"/providers/Microsoft.Support/services/68ad5d5e-ba0d-c8d9-7642-1278dfc99ad3","name":"68ad5d5e-ba0d-c8d9-7642-1278dfc99ad3","type":"Microsoft.Support/services","properties":{"displayName":"Logz.io + on Azure","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/81437870-7683-745e-1c1f-7d9e7e2401ef","name":"81437870-7683-745e-1c1f-7d9e7e2401ef","type":"Microsoft.Support/services","properties":{"displayName":"Machine + Configuration","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/a1799293-1194-133d-4407-156c57152643","name":"a1799293-1194-133d-4407-156c57152643","type":"Microsoft.Support/services","properties":{"displayName":"Machine + Learning","resourceTypes":["Microsoft.MachineLearningServices/workspaces","Microsoft.MachineLearningServices"]}},{"id":"/providers/Microsoft.Support/services/afd16b5d-3a02-dd9d-8f7f-9768a7345f81","name":"afd16b5d-3a02-dd9d-8f7f-9768a7345f81","type":"Microsoft.Support/services","properties":{"displayName":"Machine + Learning Studio (Classic)","resourceTypes":["MICROSOFT.MACHINELEARNING/WORKSPACES","MICROSOFT.MACHINELEARNING/COMMITMENTPLANS","MICROSOFT.MACHINELEARNING/WEBSERVICES","MICROSOFT.MACHINELEARNINGEXPERIMENTATION/ACCOUNTS","MICROSOFT.MACHINELEARNINGMODELMANAGEMENT/ACCOUNTS"]}},{"id":"/providers/Microsoft.Support/services/7fa9504c-364e-66b7-830e-f1333a2e4fe4","name":"7fa9504c-364e-66b7-830e-f1333a2e4fe4","type":"Microsoft.Support/services","properties":{"displayName":"Managed + Apps Service Catalog","resourceTypes":["Microsoft.Solutions/applicationDefinitions"]}},{"id":"/providers/Microsoft.Support/services/c967e89c-dd01-34fa-231a-5645bdd79459","name":"c967e89c-dd01-34fa-231a-5645bdd79459","type":"Microsoft.Support/services","properties":{"displayName":"Managed + HSM","resourceTypes":["MICROSOFT.KEYVAULT/MANAGEDHSMS"]}},{"id":"/providers/Microsoft.Support/services/4600d245-9a8d-be9c-b0b7-945467c24186","name":"4600d245-9a8d-be9c-b0b7-945467c24186","type":"Microsoft.Support/services","properties":{"displayName":"Managed + Identities for Azure Resources","resourceTypes":["Microsoft.ManagedIdentity/userAssignedIdentities"]}},{"id":"/providers/Microsoft.Support/services/c6054aa4-96df-3b22-b4bf-1c5b16912def","name":"c6054aa4-96df-3b22-b4bf-1c5b16912def","type":"Microsoft.Support/services","properties":{"displayName":"Managed + Instance for Apache Cassandra","resourceTypes":["Microsoft.DocumentDB/cassandraClusters"]}},{"id":"/providers/Microsoft.Support/services/1b982b2f-8561-caed-b2b3-aed8c249bb07","name":"1b982b2f-8561-caed-b2b3-aed8c249bb07","type":"Microsoft.Support/services","properties":{"displayName":"Managed + Prometheus","resourceTypes":["Microsoft.Monitor/Accounts"]}},{"id":"/providers/Microsoft.Support/services/2c32f727-0b95-8324-22c8-b953c938833c","name":"2c32f727-0b95-8324-22c8-b953c938833c","type":"Microsoft.Support/services","properties":{"displayName":"Management + Groups","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/c52a04cc-be90-03ef-d76e-80cd1b338fb3","name":"c52a04cc-be90-03ef-d76e-80cd1b338fb3","type":"Microsoft.Support/services","properties":{"displayName":"Maps","resourceTypes":["MICROSOFT.MAPS/ACCOUNTS"]}},{"id":"/providers/Microsoft.Support/services/efa0fcb8-3325-6eb7-b451-8e3a853aaead","name":"efa0fcb8-3325-6eb7-b451-8e3a853aaead","type":"Microsoft.Support/services","properties":{"displayName":"Media + Service","resourceTypes":["MICROSOFT.MEDIA/MEDIASERVICES"]}},{"id":"/providers/Microsoft.Support/services/9636b9f4-3013-b4d0-1dbe-8b202575f592","name":"9636b9f4-3013-b4d0-1dbe-8b202575f592","type":"Microsoft.Support/services","properties":{"displayName":"Metrics","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/a96cb196-59fe-00a7-5ff7-889765d10494","name":"a96cb196-59fe-00a7-5ff7-889765d10494","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Antimalware for Azure","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/a3247669-8dd8-ffa6-e0b2-c603cb95bf6c","name":"a3247669-8dd8-ffa6-e0b2-c603cb95bf6c","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Azure Attestation","resourceTypes":["Microsoft.Attestation/attestationProviders"]}},{"id":"/providers/Microsoft.Support/services/72c84cfd-1758-f3e1-7c0a-24fd7c10df03","name":"72c84cfd-1758-f3e1-7c0a-24fd7c10df03","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Azure Data Manager for Agriculture","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/6d7a548d-93fe-2d06-23d6-8a7f7c9981d1","name":"6d7a548d-93fe-2d06-23d6-8a7f7c9981d1","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Azure Data Manager for Energy","resourceTypes":["Microsoft.OpenEnergyPlatform/energyServices"]}},{"id":"/providers/Microsoft.Support/services/fca74ae8-fb8b-53d4-39cb-105200f54379","name":"fca74ae8-fb8b-53d4-39cb-105200f54379","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Bing Services","resourceTypes":["Microsoft.Bing"]}},{"id":"/providers/Microsoft.Support/services/2dd10780-72c7-5527-32c3-2cd565a9857b","name":"2dd10780-72c7-5527-32c3-2cd565a9857b","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + build of OpenJDK","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/d5bf131f-93ff-a263-91f9-64be70b48a56","name":"d5bf131f-93ff-a263-91f9-64be70b48a56","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Cloud for Sovereignty","resourceTypes":["Microsoft.Sovereign"]}},{"id":"/providers/Microsoft.Support/services/01576e56-6662-d99f-3032-384fd97e95bc","name":"01576e56-6662-d99f-3032-384fd97e95bc","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Connected Cache for ISPs - Preview","resourceTypes":["Microsoft.ConnectedCache/cacheNodes","Microsoft.ConnectedCache/ispCustomers"]}},{"id":"/providers/Microsoft.Support/services/49741e2b-0418-835b-8305-2e3992042a28","name":"49741e2b-0418-835b-8305-2e3992042a28","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Connected Vehicle Platform","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/89077980-9234-5466-6e41-2b284c668f8f","name":"89077980-9234-5466-6e41-2b284c668f8f","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Copilot for Azure - Preview","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/d3f5a8bd-677e-f210-8c9a-9b0bd8a2ee8c","name":"d3f5a8bd-677e-f210-8c9a-9b0bd8a2ee8c","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Defender External Attack Surface Management (EASM)","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/fb1b37f8-2716-86c2-c2e1-684b5292d401","name":"fb1b37f8-2716-86c2-c2e1-684b5292d401","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Defender for Cloud","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/7dc03991-4dcf-cf5a-904f-35a243ca5551","name":"7dc03991-4dcf-cf5a-904f-35a243ca5551","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Defender for Cloud Apps","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/809e8afe-489e-08b0-95f2-08f835a383e8","name":"809e8afe-489e-08b0-95f2-08f835a383e8","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Defender for Identity","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/82c88f35-1b8e-f274-ec11-c6efdd6dd099","name":"82c88f35-1b8e-f274-ec11-c6efdd6dd099","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Defender for IoT","resourceTypes":["MICROSOFT.IOTSECURITY/DEFENDERSETTINGS"]}},{"id":"/providers/Microsoft.Support/services/8b8d5b15-1c6d-7fa4-3884-e134fa0adaa7","name":"8b8d5b15-1c6d-7fa4-3884-e134fa0adaa7","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Dev Box","resourceTypes":["Microsoft.DevCenter","Microsoft.DevCenter/devCenters"]}},{"id":"/providers/Microsoft.Support/services/d3830e0b-a1b1-923f-d2bb-7ebc41dcbc39","name":"d3830e0b-a1b1-923f-d2bb-7ebc41dcbc39","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Entra Admin Center","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/7505036e-a364-8354-e894-56d394dd4a61","name":"7505036e-a364-8354-e894-56d394dd4a61","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Entra App Integration and Development","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/3a36c1ba-f910-91c3-9f17-075d63c9488a","name":"3a36c1ba-f910-91c3-9f17-075d63c9488a","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Entra Directories, Domains, and Objects","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/a69d6bc1-d1db-61e6-2668-451ae3784f86","name":"a69d6bc1-d1db-61e6-2668-451ae3784f86","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Entra Domain Services (Microsoft Managed - DCaaS)","resourceTypes":["Microsoft.AAD/DomainServices"]}},{"id":"/providers/Microsoft.Support/services/2f0b4593-ca4c-370c-e36c-b90be88a1597","name":"2f0b4593-ca4c-370c-e36c-b90be88a1597","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Entra External ID - Preview","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/b98631b1-d53a-3ac4-3181-aef136ec703d","name":"b98631b1-d53a-3ac4-3181-aef136ec703d","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Entra Governance, Compliance and Reporting","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/0d9aae13-ff27-8f75-6e18-304247937071","name":"0d9aae13-ff27-8f75-6e18-304247937071","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Entra Permissions Management","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/516fe906-3a1a-2878-02fd-8dd37ea207de","name":"516fe906-3a1a-2878-02fd-8dd37ea207de","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Entra Sign-in and Multifactor Authentication","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/38a234dd-6baf-d93b-2c48-5a735a3550ed","name":"38a234dd-6baf-d93b-2c48-5a735a3550ed","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Entra User Provisioning and Synchronization","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/a39b9b14-4aaa-dfe8-6f47-b9c80f5a4784","name":"a39b9b14-4aaa-dfe8-6f47-b9c80f5a4784","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Entra Verified ID","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/de523f2e-d57a-43fc-a83e-753029ef5cf8","name":"de523f2e-d57a-43fc-a83e-753029ef5cf8","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Entra Workload ID","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/3f816e19-cbf7-f192-a725-63c0ebe7d07d","name":"3f816e19-cbf7-f192-a725-63c0ebe7d07d","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Genomics","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/7a37b2ec-b31a-5ca4-944c-84c916847ba1","name":"7a37b2ec-b31a-5ca4-944c-84c916847ba1","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Graph Advanced APIs","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/e76cbe81-8c12-1f2f-85c7-6064644116a4","name":"e76cbe81-8c12-1f2f-85c7-6064644116a4","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Graph Authentication and Authorization (Entra ID)","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/437e7d94-a4b3-68bd-a23a-087f528d47dd","name":"437e7d94-a4b3-68bd-a23a-087f528d47dd","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Graph Files, Sites and Lists APIs","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/50a1a89e-a735-61ed-fcf6-770df069182a","name":"50a1a89e-a735-61ed-fcf6-770df069182a","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Graph High-Capacity APIs","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/af52d398-4ddb-1e1d-2c6c-6767634b015e","name":"af52d398-4ddb-1e1d-2c6c-6767634b015e","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Graph Messages, Calendar and Contacts APIs","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/c9a40005-5758-83c0-32b8-9e7910c21595","name":"c9a40005-5758-83c0-32b8-9e7910c21595","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Graph Other Microsoft Graph APIs","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/46c9bb77-3f94-f481-375c-911d8f0f9a0e","name":"46c9bb77-3f94-f481-375c-911d8f0f9a0e","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Graph Teamwork APIs (Teams)","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/53aa5987-de52-9110-f612-9fe34980e53a","name":"53aa5987-de52-9110-f612-9fe34980e53a","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Graph Users, Groups, and Identity and Access APIs","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/389d15a1-c6fa-bbb6-f3fd-523a62a2b3c5","name":"389d15a1-c6fa-bbb6-f3fd-523a62a2b3c5","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Intune","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/f2aa2432-80da-d759-72e7-9aec7cc0c2ed","name":"f2aa2432-80da-d759-72e7-9aec7cc0c2ed","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Playwright Testing - Preview","resourceTypes":["Microsoft.AzurePlaywrightService/accounts"]}},{"id":"/providers/Microsoft.Support/services/a674bd96-b6a2-0636-3fb9-c665e6497b88","name":"a674bd96-b6a2-0636-3fb9-c665e6497b88","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Purview","resourceTypes":["Microsoft.Purview/Accounts"]}},{"id":"/providers/Microsoft.Support/services/9cd60433-a646-8748-7e7f-fd0781fea78e","name":"9cd60433-a646-8748-7e7f-fd0781fea78e","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Sentinel","resourceTypes":["Microsoft.SecurityInsightsArg/Sentinel"]}},{"id":"/providers/Microsoft.Support/services/5280bdc9-af4d-0716-24b9-4ec6b7523c01","name":"5280bdc9-af4d-0716-24b9-4ec6b7523c01","type":"Microsoft.Support/services","properties":{"displayName":"Microsoft + Test Base","resourceTypes":["Microsoft.TestBase/testBaseAccounts/packages","Microsoft.TestBase/testBaseAccounts"]}},{"id":"/providers/Microsoft.Support/services/4b38e388-9d77-9c61-da1e-4d92d751e51f","name":"4b38e388-9d77-9c61-da1e-4d92d751e51f","type":"Microsoft.Support/services","properties":{"displayName":"Modular + Datacenter (MDC)","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/862cfc3c-3296-e210-caa9-716705ec3d34","name":"862cfc3c-3296-e210-caa9-716705ec3d34","type":"Microsoft.Support/services","properties":{"displayName":"Native + New Relic Service","resourceTypes":["NewRelic.Observability"]}},{"id":"/providers/Microsoft.Support/services/b7743438-942e-ef29-9abc-589fd697fb9e","name":"b7743438-942e-ef29-9abc-589fd697fb9e","type":"Microsoft.Support/services","properties":{"displayName":"Network + Performance Monitor (NPM)","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/01c5defa-028b-c44f-cefa-e5d836887f2e","name":"01c5defa-028b-c44f-cefa-e5d836887f2e","type":"Microsoft.Support/services","properties":{"displayName":"Network + Virtual Appliance","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/29297681-a8c0-eaa9-341f-f72630a5b9c3","name":"29297681-a8c0-eaa9-341f-f72630a5b9c3","type":"Microsoft.Support/services","properties":{"displayName":"Network + Watcher","resourceTypes":["Microsoft.Network/networkWatchers","Microsoft.Network/networkWatchers/connectionMonitors","Microsoft.Network/networkWatchers/flowLogs","Microsoft.Network/networkWatchers/lenses","Microsoft.Network/networkWatchers/pingMeshes"]}},{"id":"/providers/Microsoft.Support/services/b773917a-ba16-d351-b92e-3f0a6a2e65ac","name":"b773917a-ba16-d351-b92e-3f0a6a2e65ac","type":"Microsoft.Support/services","properties":{"displayName":"NGINX + on Azure","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/b9710604-e660-5d57-1b18-3aef73bd21d3","name":"b9710604-e660-5d57-1b18-3aef73bd21d3","type":"Microsoft.Support/services","properties":{"displayName":"Notification + Hub","resourceTypes":["MICROSOFT.NOTIFICATIONHUBS/NAMESPACES"]}},{"id":"/providers/Microsoft.Support/services/e7735f37-971a-bdb3-8222-3628413e826a","name":"e7735f37-971a-bdb3-8222-3628413e826a","type":"Microsoft.Support/services","properties":{"displayName":"Nutanix + Cluster on Azure","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/cac35d2a-0335-5628-57ff-db564fda4f3a","name":"cac35d2a-0335-5628-57ff-db564fda4f3a","type":"Microsoft.Support/services","properties":{"displayName":"Odyssey","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/176fac6b-1982-68b4-6f2e-3e5d3a0c99a4","name":"176fac6b-1982-68b4-6f2e-3e5d3a0c99a4","type":"Microsoft.Support/services","properties":{"displayName":"Open + Datasets","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/7d7bdc73-e381-941a-28e6-b60656de5df0","name":"7d7bdc73-e381-941a-28e6-b60656de5df0","type":"Microsoft.Support/services","properties":{"displayName":"OpenAI","resourceTypes":["Microsoft.CognitiveServices","MICROSOFT.COGNITIVESERVICES/ACCOUNTS"]}},{"id":"/providers/Microsoft.Support/services/9b3c3bfb-dd53-97dc-1879-90567cfe2a7c","name":"9b3c3bfb-dd53-97dc-1879-90567cfe2a7c","type":"Microsoft.Support/services","properties":{"displayName":"Oracle + Database@Azure","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/3e5e1bc3-2000-2473-a9cd-35edf7ae7f5f","name":"3e5e1bc3-2000-2473-a9cd-35edf7ae7f5f","type":"Microsoft.Support/services","properties":{"displayName":"Partner + Solutions","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/fae15df4-4549-8074-e6ab-11ca2b5a1645","name":"fae15df4-4549-8074-e6ab-11ca2b5a1645","type":"Microsoft.Support/services","properties":{"displayName":"Peering + Service","resourceTypes":["Microsoft.Peering/peerings","Microsoft.Peering/peeringServices"]}},{"id":"/providers/Microsoft.Support/services/6d3f465f-843e-e142-40aa-fd1eda4c80c8","name":"6d3f465f-843e-e142-40aa-fd1eda4c80c8","type":"Microsoft.Support/services","properties":{"displayName":"Portal","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/8c9051b3-9579-a47e-8506-dd80435c8c6f","name":"8c9051b3-9579-a47e-8506-dd80435c8c6f","type":"Microsoft.Support/services","properties":{"displayName":"Power + BI","resourceTypes":["Microsoft.PowerBIDedicated/Capacities","Microsoft.Fabric"]}},{"id":"/providers/Microsoft.Support/services/86d840c0-45c7-7931-24bc-f976ddc54c1c","name":"86d840c0-45c7-7931-24bc-f976ddc54c1c","type":"Microsoft.Support/services","properties":{"displayName":"Power + BI Report Server in VM","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/17cbfbe8-fbbe-a755-4cbc-14e025c370cd","name":"17cbfbe8-fbbe-a755-4cbc-14e025c370cd","type":"Microsoft.Support/services","properties":{"displayName":"PyTorch + Enterprise","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/5d4f816f-f02c-f8f8-a8f4-423509f8b036","name":"5d4f816f-f02c-f8f8-a8f4-423509f8b036","type":"Microsoft.Support/services","properties":{"displayName":"Queue + Storage","resourceTypes":["MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS","MICROSOFT.STORAGE/STORAGEACCOUNTS"]}},{"id":"/providers/Microsoft.Support/services/351dadd2-b167-7960-06bc-be843b705826","name":"351dadd2-b167-7960-06bc-be843b705826","type":"Microsoft.Support/services","properties":{"displayName":"Relay","resourceTypes":["MICROSOFT.RELAY/NAMESPACES"]}},{"id":"/providers/Microsoft.Support/services/4b218fe9-a91b-9143-05e3-da8c5a9bd5c7","name":"4b218fe9-a91b-9143-05e3-da8c5a9bd5c7","type":"Microsoft.Support/services","properties":{"displayName":"Remote + Rendering","resourceTypes":["Microsoft.MixedReality/RemoteRenderingAccounts"]}},{"id":"/providers/Microsoft.Support/services/c2804d27-8e0a-f2a3-8540-f4318f539ff6","name":"c2804d27-8e0a-f2a3-8540-f4318f539ff6","type":"Microsoft.Support/services","properties":{"displayName":"Role + Based Access Control (RBAC) for Azure Resources (IAM)","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/dd1ed832-cfdd-b06b-d11b-77b590a10d4c","name":"dd1ed832-cfdd-b06b-d11b-77b590a10d4c","type":"Microsoft.Support/services","properties":{"displayName":"SAP + HANA Large Instance","resourceTypes":["Microsoft.HanaOnAzure/sapMonitors","Microsoft.HanaOnAzure/hanaInstances"]}},{"id":"/providers/Microsoft.Support/services/f90fce27-e23e-9db8-cbf3-0f9a879b3a62","name":"f90fce27-e23e-9db8-cbf3-0f9a879b3a62","type":"Microsoft.Support/services","properties":{"displayName":"SCOM + Managed Instance","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/0abb876a-a5f2-b881-f49e-dc6157fd07bd","name":"0abb876a-a5f2-b881-f49e-dc6157fd07bd","type":"Microsoft.Support/services","properties":{"displayName":"Security + Incident Response","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/06bfd9d3-516b-d5c6-5802-169c800dec89","name":"06bfd9d3-516b-d5c6-5802-169c800dec89","type":"Microsoft.Support/services","properties":{"displayName":"Service + and subscription limits (quotas)","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/23e2c469-4b37-ebf5-0a3f-72e8b1407301","name":"23e2c469-4b37-ebf5-0a3f-72e8b1407301","type":"Microsoft.Support/services","properties":{"displayName":"Service + Bus","resourceTypes":["MICROSOFT.SERVICEBUS/NAMESPACES"]}},{"id":"/providers/Microsoft.Support/services/a730ab7a-33ae-c83a-bca5-4935433e38ff","name":"a730ab7a-33ae-c83a-bca5-4935433e38ff","type":"Microsoft.Support/services","properties":{"displayName":"Service + Fabric","resourceTypes":["MICROSOFT.SERVICEFABRIC/CLUSTERS","Microsoft.ServiceFabric/managedclusters"]}},{"id":"/providers/Microsoft.Support/services/c9d3b345-6b9c-bc78-88f5-4867854e925a","name":"c9d3b345-6b9c-bc78-88f5-4867854e925a","type":"Microsoft.Support/services","properties":{"displayName":"Service + Fabric Managed Cluster","resourceTypes":["Microsoft.ServiceFabric/managedclusters","MICROSOFT.SERVICEFABRIC/CLUSTERS"]}},{"id":"/providers/Microsoft.Support/services/a76b7230-2d2f-b294-8189-319db5e5d116","name":"a76b7230-2d2f-b294-8189-319db5e5d116","type":"Microsoft.Support/services","properties":{"displayName":"Service + Fabric on Linux","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/bfd77156-870d-17ee-c9d1-5450f390f63f","name":"bfd77156-870d-17ee-c9d1-5450f390f63f","type":"Microsoft.Support/services","properties":{"displayName":"SignalR + Service","resourceTypes":["Microsoft.SignalRService/SignalR"]}},{"id":"/providers/Microsoft.Support/services/e4ddc3b0-1e6d-aaa2-4279-8e5027351d76","name":"e4ddc3b0-1e6d-aaa2-4279-8e5027351d76","type":"Microsoft.Support/services","properties":{"displayName":"Spatial + Anchors","resourceTypes":["Microsoft.MixedReality"]}},{"id":"/providers/Microsoft.Support/services/95412dd5-f222-a91f-98a6-144a84418c66","name":"95412dd5-f222-a91f-98a6-144a84418c66","type":"Microsoft.Support/services","properties":{"displayName":"SQL + Database","resourceTypes":["MICROSOFT.SQL/SERVERS","MICROSOFT.SQL/SERVERS/DATABASES","MICROSOFT.SQL/SERVERS/ELASTICPOOLS"]}},{"id":"/providers/Microsoft.Support/services/9b629e89-4ea0-53ec-9409-1579b8c41453","name":"9b629e89-4ea0-53ec-9409-1579b8c41453","type":"Microsoft.Support/services","properties":{"displayName":"SQL + Managed Instance","resourceTypes":["MICROSOFT.SQL/MANAGEDINSTANCES"]}},{"id":"/providers/Microsoft.Support/services/8dfc5d56-9245-222f-19fc-dfafc3fba973","name":"8dfc5d56-9245-222f-19fc-dfafc3fba973","type":"Microsoft.Support/services","properties":{"displayName":"SQL + Server enabled by Azure Arc","resourceTypes":["Microsoft.AzureArcData/sqlServerInstances"]}},{"id":"/providers/Microsoft.Support/services/40ef020e-8ae7-8d57-b538-9153c47cee69","name":"40ef020e-8ae7-8d57-b538-9153c47cee69","type":"Microsoft.Support/services","properties":{"displayName":"SQL + Server in VM - Linux","resourceTypes":["MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES","MICROSOFT.COMPUTE/VIRTUALMACHINES"]}},{"id":"/providers/Microsoft.Support/services/53b14ef9-9b69-4d8c-a458-b8e4c132a815","name":"53b14ef9-9b69-4d8c-a458-b8e4c132a815","type":"Microsoft.Support/services","properties":{"displayName":"SQL + Server in VM - Windows","resourceTypes":["MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES","MICROSOFT.COMPUTE/VIRTUALMACHINES","Microsoft.SqlVirtualMachine/sqlVirtualMachines"]}},{"id":"/providers/Microsoft.Support/services/0ef96678-fa9b-9ea2-2cdc-39ee36e1f4db","name":"0ef96678-fa9b-9ea2-2cdc-39ee36e1f4db","type":"Microsoft.Support/services","properties":{"displayName":"Start-Stop + V2","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/94a7406a-b31a-86f8-49f9-377d30047b25","name":"94a7406a-b31a-86f8-49f9-377d30047b25","type":"Microsoft.Support/services","properties":{"displayName":"Static + Web Apps","resourceTypes":["Microsoft.Web/staticSites"]}},{"id":"/providers/Microsoft.Support/services/6a9c20ed-85c7-c289-d5e2-560da8f2a7c8","name":"6a9c20ed-85c7-c289-d5e2-560da8f2a7c8","type":"Microsoft.Support/services","properties":{"displayName":"Storage + Account Management","resourceTypes":["MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS","MICROSOFT.STORAGE/STORAGEACCOUNTS"]}},{"id":"/providers/Microsoft.Support/services/94c5f326-7ab1-6ef3-c3c0-8e0b5a584085","name":"94c5f326-7ab1-6ef3-c3c0-8e0b5a584085","type":"Microsoft.Support/services","properties":{"displayName":"Storage + Explorer","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/30e73728-5d13-cbf4-5c57-3036ed1067fd","name":"30e73728-5d13-cbf4-5c57-3036ed1067fd","type":"Microsoft.Support/services","properties":{"displayName":"Stream + Analytics","resourceTypes":["MICROSOFT.STREAMANALYTICS/STREAMINGJOBS","MICROSOFT.STREAMANALYTICS/CLUSTERS"]}},{"id":"/providers/Microsoft.Support/services/f3dc5421-79ef-1efa-41a5-42bf3cbb52c6","name":"f3dc5421-79ef-1efa-41a5-42bf3cbb52c6","type":"Microsoft.Support/services","properties":{"displayName":"Subscription + management","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/8418caaf-4634-b4c0-d9b6-27c266b6b67b","name":"8418caaf-4634-b4c0-d9b6-27c266b6b67b","type":"Microsoft.Support/services","properties":{"displayName":"Table + Storage","resourceTypes":["MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS","MICROSOFT.STORAGE/STORAGEACCOUNTS"]}},{"id":"/providers/Microsoft.Support/services/e4d6b9b0-79d5-3133-c4db-460a39e8a622","name":"e4d6b9b0-79d5-3133-c4db-460a39e8a622","type":"Microsoft.Support/services","properties":{"displayName":"Time + Series Insights","resourceTypes":["MICROSOFT.TIMESERIESINSIGHTS/ENVIRONMENTS"]}},{"id":"/providers/Microsoft.Support/services/66fff2d6-c34e-ac9b-d1ba-6631ab20989e","name":"66fff2d6-c34e-ac9b-d1ba-6631ab20989e","type":"Microsoft.Support/services","properties":{"displayName":"Traffic + Manager - DNS based load balancing","resourceTypes":["MICROSOFT.NETWORK/TRAFFICMANAGERPROFILES"]}},{"id":"/providers/Microsoft.Support/services/99dd2657-2a74-8c5a-951f-23abdd7851c6","name":"99dd2657-2a74-8c5a-951f-23abdd7851c6","type":"Microsoft.Support/services","properties":{"displayName":"Universal + Print","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/722ccc66-c988-d2ac-1ec6-b7aebc857f2d","name":"722ccc66-c988-d2ac-1ec6-b7aebc857f2d","type":"Microsoft.Support/services","properties":{"displayName":"Virtual + Machine running Citrix","resourceTypes":["MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES","MICROSOFT.COMPUTE/VIRTUALMACHINES"]}},{"id":"/providers/Microsoft.Support/services/b6492139-637a-c445-ee02-5dc6749337c3","name":"b6492139-637a-c445-ee02-5dc6749337c3","type":"Microsoft.Support/services","properties":{"displayName":"Virtual + Machine running Cloud Foundry","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc","name":"cddd3eb5-1830-b494-44fd-782f691479dc","type":"Microsoft.Support/services","properties":{"displayName":"Virtual + Machine running Linux","resourceTypes":["MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES","MICROSOFT.COMPUTE/VIRTUALMACHINES"]}},{"id":"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87","name":"de8937fc-74cc-daa7-2639-e1fe433dcb87","type":"Microsoft.Support/services","properties":{"displayName":"Virtual + Machine running RedHat","resourceTypes":["MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES","MICROSOFT.COMPUTE/VIRTUALMACHINES"]}},{"id":"/providers/Microsoft.Support/services/f66fac5c-01e5-e8db-2ef8-e1a98a88e214","name":"f66fac5c-01e5-e8db-2ef8-e1a98a88e214","type":"Microsoft.Support/services","properties":{"displayName":"Virtual + Machine running SAP","resourceTypes":["MICROSOFT.COMPUTE/VIRTUALMACHINES"]}},{"id":"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0","name":"98e5cec8-2650-28c1-92e8-0ecaa232eec0","type":"Microsoft.Support/services","properties":{"displayName":"Virtual + Machine running SUSE","resourceTypes":["Microsoft.Compute/virtualmachines"]}},{"id":"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7","name":"2340ae8b-c745-572f-6ea8-661d68c08bd7","type":"Microsoft.Support/services","properties":{"displayName":"Virtual + Machine running Ubuntu","resourceTypes":["MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES","MICROSOFT.COMPUTE/VIRTUALMACHINES"]}},{"id":"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396","name":"6f16735c-b0ae-b275-ad3a-03479cfa1396","type":"Microsoft.Support/services","properties":{"displayName":"Virtual + Machine running Windows","resourceTypes":["MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES","MICROSOFT.COMPUTE/VIRTUALMACHINES"]}},{"id":"/providers/Microsoft.Support/services/e9e31931-21fa-d50a-e6e7-e37d5d784591","name":"e9e31931-21fa-d50a-e6e7-e37d5d784591","type":"Microsoft.Support/services","properties":{"displayName":"Virtual + Machine Scale Sets","resourceTypes":["MICROSOFT.COMPUTE/VIRTUALMACHINESCALESETS","Microsoft.Compute/virtualMachineScaleSets/virtualMachines"]}},{"id":"/providers/Microsoft.Support/services/b25271d3-6431-dfbc-5f12-5693326809b3","name":"b25271d3-6431-dfbc-5f12-5693326809b3","type":"Microsoft.Support/services","properties":{"displayName":"Virtual + Network","resourceTypes":["MICROSOFT.NETWORK/VIRTUALNETWORKS","MICROSOFT.CLASSICNETWORK/VIRTUALNETWORKS"]}},{"id":"/providers/Microsoft.Support/services/e980d0ab-c6c3-894b-8a1d-74564e159e3b","name":"e980d0ab-c6c3-894b-8a1d-74564e159e3b","type":"Microsoft.Support/services","properties":{"displayName":"Virtual + Network NAT","resourceTypes":["Microsoft.Network/NATGateways"]}},{"id":"/providers/Microsoft.Support/services/d3b69052-33aa-55e7-6d30-ebb7040f9766","name":"d3b69052-33aa-55e7-6d30-ebb7040f9766","type":"Microsoft.Support/services","properties":{"displayName":"Virtual + WAN","resourceTypes":["MICROSOFT.NETWORK/VIRTUALWANS","MICROSOFT.NETWORK/virtualHubs"]}},{"id":"/providers/Microsoft.Support/services/4268a408-46cf-347c-6806-09dc5967d2f6","name":"4268a408-46cf-347c-6806-09dc5967d2f6","type":"Microsoft.Support/services","properties":{"displayName":"VM + insights","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/5a813df8-0060-7015-892d-9f17015a6706","name":"5a813df8-0060-7015-892d-9f17015a6706","type":"Microsoft.Support/services","properties":{"displayName":"VPN + Gateway","resourceTypes":["MICROSOFT.NETWORK/VIRTUALNETWORKGATEWAYS","MICROSOFT.NETWORK/CONNECTIONS"]}},{"id":"/providers/Microsoft.Support/services/b452a42b-3779-64de-532c-8a32738357a6","name":"b452a42b-3779-64de-532c-8a32738357a6","type":"Microsoft.Support/services","properties":{"displayName":"Web + App (Linux)","resourceTypes":["MICROSOFT.WEB/SITES"]}},{"id":"/providers/Microsoft.Support/services/1890289e-747c-7ef6-b4f5-b1dbb0bead28","name":"1890289e-747c-7ef6-b4f5-b1dbb0bead28","type":"Microsoft.Support/services","properties":{"displayName":"Web + App (Windows)","resourceTypes":["MICROSOFT.WEB/SITES"]}},{"id":"/providers/Microsoft.Support/services/d40f17bb-8b19-117c-f69a-d1be4187f657","name":"d40f17bb-8b19-117c-f69a-d1be4187f657","type":"Microsoft.Support/services","properties":{"displayName":"Web + App for Containers","resourceTypes":["MICROSOFT.WEB/SITES"]}},{"id":"/providers/Microsoft.Support/services/272fd66a-e8b1-260f-0066-01caae8895cf","name":"272fd66a-e8b1-260f-0066-01caae8895cf","type":"Microsoft.Support/services","properties":{"displayName":"Web + App on Azure Arc","resourceTypes":["Microsoft.Web/Sites"]}},{"id":"/providers/Microsoft.Support/services/6ad1058f-d6a2-bfcb-9aad-1ab895e39c02","name":"6ad1058f-d6a2-bfcb-9aad-1ab895e39c02","type":"Microsoft.Support/services","properties":{"displayName":"Web + Application Firewall (WAF)","resourceTypes":["Microsoft.Network/FrontDoorWebApplicationFirewallPolicies","Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies"]}},{"id":"/providers/Microsoft.Support/services/f7eb21eb-eb80-8817-4bd8-c0d89e93833b","name":"f7eb21eb-eb80-8817-4bd8-c0d89e93833b","type":"Microsoft.Support/services","properties":{"displayName":"Windows + Admin Center in the Azure Portal","resourceTypes":[]}},{"id":"/providers/Microsoft.Support/services/66ea76c9-5d31-568e-cf01-919415d2756c","name":"66ea76c9-5d31-568e-cf01-919415d2756c","type":"Microsoft.Support/services","properties":{"displayName":"Windows + Update for Business Reports","resourceTypes":[]}}]}' headers: cache-control: - no-cache content-length: - - '80969' + - '101690' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:18:12 GMT + - Mon, 25 Mar 2024 06:30:54 GMT expires: - '-1' pragma: - no-cache - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 0957A70CEEC948F688168EADC8C83636 Ref B: CO6AA3150220031 Ref C: 2024-03-25T06:30:54Z' status: code: 200 message: OK @@ -333,7 +404,7 @@ interactions: ParameterSetName: - --service-name User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-support/6.0.0 Python/3.11.8 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea?api-version=2020-04-01 response: @@ -348,21 +419,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:18:14 GMT + - Mon, 25 Mar 2024 06:30:56 GMT expires: - '-1' pragma: - no-cache - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 3BFA35AD31CE4CDDABFDAF0BE664D4BA Ref B: CO6AA3150217051 Ref C: 2024-03-25T06:30:57Z' status: code: 200 message: OK @@ -380,53 +449,72 @@ interactions: ParameterSetName: - --service-name User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-support/6.0.0 Python/3.11.8 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea/problemClassifications?api-version=2020-04-01 response: body: - string: "{\"value\":[{\"id\":\"/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea/problemClassifications/c9805a0b-9410-1708-2989-0befc008e963\",\"name\":\"c9805a0b-9410-1708-2989-0befc008e963\",\"type\":\"Microsoft.Support/problemClassifications\",\"properties\":{\"displayName\":\"Issues - with Activity Log Alerts\"}},{\"id\":\"/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea/problemClassifications/9dfa5fc1-4b66-106b-d3f3-453568873162\",\"name\":\"9dfa5fc1-4b66-106b-d3f3-453568873162\",\"type\":\"Microsoft.Support/problemClassifications\",\"properties\":{\"displayName\":\"I - can't configure Export of Activity Log / Configuring export in Azure Portal\"}},{\"id\":\"/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea/problemClassifications/dedd4374-f696-d2a7-5e94-e97af375eb22\",\"name\":\"dedd4374-f696-d2a7-5e94-e97af375eb22\",\"type\":\"Microsoft.Support/problemClassifications\",\"properties\":{\"displayName\":\"I - can't configure Export of Activity Log / Configuring export using REST API\"}},{\"id\":\"/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea/problemClassifications/feb105d8-f457-4af4-c887-ad87f35bd81f\",\"name\":\"feb105d8-f457-4af4-c887-ad87f35bd81f\",\"type\":\"Microsoft.Support/problemClassifications\",\"properties\":{\"displayName\":\"I - can't configure Export of Activity Log / Configuring export using PowerShell - or CLI\"}},{\"id\":\"/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea/problemClassifications/a1025835-1fbf-b1f2-f87a-e9d530e2a38d\",\"name\":\"a1025835-1fbf-b1f2-f87a-e9d530e2a38d\",\"type\":\"Microsoft.Support/problemClassifications\",\"properties\":{\"displayName\":\"Issues - with Viewing or Querying Activity Log / My logs are not showing up when expected\"}},{\"id\":\"/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea/problemClassifications/48b8f1d3-a8bc-bdc8-e27f-0196741a0d0a\",\"name\":\"48b8f1d3-a8bc-bdc8-e27f-0196741a0d0a\",\"type\":\"Microsoft.Support/problemClassifications\",\"properties\":{\"displayName\":\"Issues - with Viewing or Querying Activity Log / I cannot find the logs for expected - event\"}},{\"id\":\"/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea/problemClassifications/c98da85c-d35d-a0de-66a5-adec086b6b04\",\"name\":\"c98da85c-d35d-a0de-66a5-adec086b6b04\",\"type\":\"Microsoft.Support/problemClassifications\",\"properties\":{\"displayName\":\"Issues - with Viewing or Querying Activity Log / Expected information is missing in - the log\"}},{\"id\":\"/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea/problemClassifications/a4816543-0185-1eec-7a4c-cdb1bb8f89a6\",\"name\":\"a4816543-0185-1eec-7a4c-cdb1bb8f89a6\",\"type\":\"Microsoft.Support/problemClassifications\",\"properties\":{\"displayName\":\"Issues - with Viewing or Querying Activity Log / I can\u2019t query Activity Log using - REST API\"}},{\"id\":\"/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea/problemClassifications/4ed4f45e-35df-d0b9-721c-87421d9f10c5\",\"name\":\"4ed4f45e-35df-d0b9-721c-87421d9f10c5\",\"type\":\"Microsoft.Support/problemClassifications\",\"properties\":{\"displayName\":\"Issues - with Viewing or Querying Activity Log / I can\u2019t query Activity Log using - PowerShell\"}},{\"id\":\"/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea/problemClassifications/2e5a91a4-146b-5521-250b-feb114bb8564\",\"name\":\"2e5a91a4-146b-5521-250b-feb114bb8564\",\"type\":\"Microsoft.Support/problemClassifications\",\"properties\":{\"displayName\":\"Issues - with Viewing or Querying Activity Log / I can\u2019t query Activity Log using - CLI\"}},{\"id\":\"/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea/problemClassifications/68a53b41-9db6-818d-868c-819510efe106\",\"name\":\"68a53b41-9db6-818d-868c-819510efe106\",\"type\":\"Microsoft.Support/problemClassifications\",\"properties\":{\"displayName\":\"I - can't view Activity Log in Log Analytics\"}},{\"id\":\"/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea/problemClassifications/682cdc67-9e71-35b1-2931-d6e691f4eb91\",\"name\":\"682cdc67-9e71-35b1-2931-d6e691f4eb91\",\"type\":\"Microsoft.Support/problemClassifications\",\"properties\":{\"displayName\":\"Integration - with 3rd party SIEM tools\"}}]}" + string: "{\"value\":[{\"id\":\"/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea/problemClassifications/c9805a0b-9410-1708-2989-0befc008e963\"\ + ,\"name\":\"c9805a0b-9410-1708-2989-0befc008e963\",\"type\":\"Microsoft.Support/problemClassifications\"\ + ,\"properties\":{\"displayName\":\"Issues with Activity Log Alerts\"}},{\"\ + id\":\"/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea/problemClassifications/9dfa5fc1-4b66-106b-d3f3-453568873162\"\ + ,\"name\":\"9dfa5fc1-4b66-106b-d3f3-453568873162\",\"type\":\"Microsoft.Support/problemClassifications\"\ + ,\"properties\":{\"displayName\":\"I can't configure Export of Activity Log\ + \ / Configuring export in Azure Portal\"}},{\"id\":\"/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea/problemClassifications/dedd4374-f696-d2a7-5e94-e97af375eb22\"\ + ,\"name\":\"dedd4374-f696-d2a7-5e94-e97af375eb22\",\"type\":\"Microsoft.Support/problemClassifications\"\ + ,\"properties\":{\"displayName\":\"I can't configure Export of Activity Log\ + \ / Configuring export using REST API\"}},{\"id\":\"/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea/problemClassifications/feb105d8-f457-4af4-c887-ad87f35bd81f\"\ + ,\"name\":\"feb105d8-f457-4af4-c887-ad87f35bd81f\",\"type\":\"Microsoft.Support/problemClassifications\"\ + ,\"properties\":{\"displayName\":\"I can't configure Export of Activity Log\ + \ / Configuring export using PowerShell or CLI\"}},{\"id\":\"/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea/problemClassifications/a1025835-1fbf-b1f2-f87a-e9d530e2a38d\"\ + ,\"name\":\"a1025835-1fbf-b1f2-f87a-e9d530e2a38d\",\"type\":\"Microsoft.Support/problemClassifications\"\ + ,\"properties\":{\"displayName\":\"Issues with Viewing or Querying Activity\ + \ Log / My logs are not showing up when expected\"}},{\"id\":\"/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea/problemClassifications/48b8f1d3-a8bc-bdc8-e27f-0196741a0d0a\"\ + ,\"name\":\"48b8f1d3-a8bc-bdc8-e27f-0196741a0d0a\",\"type\":\"Microsoft.Support/problemClassifications\"\ + ,\"properties\":{\"displayName\":\"Issues with Viewing or Querying Activity\ + \ Log / I cannot find the logs for expected event\"}},{\"id\":\"/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea/problemClassifications/c98da85c-d35d-a0de-66a5-adec086b6b04\"\ + ,\"name\":\"c98da85c-d35d-a0de-66a5-adec086b6b04\",\"type\":\"Microsoft.Support/problemClassifications\"\ + ,\"properties\":{\"displayName\":\"Issues with Viewing or Querying Activity\ + \ Log / Expected information is missing in the log\"}},{\"id\":\"/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea/problemClassifications/a4816543-0185-1eec-7a4c-cdb1bb8f89a6\"\ + ,\"name\":\"a4816543-0185-1eec-7a4c-cdb1bb8f89a6\",\"type\":\"Microsoft.Support/problemClassifications\"\ + ,\"properties\":{\"displayName\":\"Issues with Viewing or Querying Activity\ + \ Log / I can\u2019t query Activity Log using REST API\"}},{\"id\":\"/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea/problemClassifications/4ed4f45e-35df-d0b9-721c-87421d9f10c5\"\ + ,\"name\":\"4ed4f45e-35df-d0b9-721c-87421d9f10c5\",\"type\":\"Microsoft.Support/problemClassifications\"\ + ,\"properties\":{\"displayName\":\"Issues with Viewing or Querying Activity\ + \ Log / I can\u2019t query Activity Log using PowerShell\"}},{\"id\":\"/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea/problemClassifications/2e5a91a4-146b-5521-250b-feb114bb8564\"\ + ,\"name\":\"2e5a91a4-146b-5521-250b-feb114bb8564\",\"type\":\"Microsoft.Support/problemClassifications\"\ + ,\"properties\":{\"displayName\":\"Issues with Viewing or Querying Activity\ + \ Log / I can\u2019t query Activity Log using CLI\"}},{\"id\":\"/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea/problemClassifications/68a53b41-9db6-818d-868c-819510efe106\"\ + ,\"name\":\"68a53b41-9db6-818d-868c-819510efe106\",\"type\":\"Microsoft.Support/problemClassifications\"\ + ,\"properties\":{\"displayName\":\"I can't view Activity Log in Log Analytics\"\ + }},{\"id\":\"/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea/problemClassifications/682cdc67-9e71-35b1-2931-d6e691f4eb91\"\ + ,\"name\":\"682cdc67-9e71-35b1-2931-d6e691f4eb91\",\"type\":\"Microsoft.Support/problemClassifications\"\ + ,\"properties\":{\"displayName\":\"Integration with 3rd party SIEM tools\"\ + }},{\"id\":\"/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea/problemClassifications/bc7be708-930c-b253-7dca-b650006978ea\"\ + ,\"name\":\"bc7be708-930c-b253-7dca-b650006978ea\",\"type\":\"Microsoft.Support/problemClassifications\"\ + ,\"properties\":{\"displayName\":\"I need to increase retention of Activity\ + \ Log\"}}]}" headers: cache-control: - no-cache content-length: - - '4154' + - '4464' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:18:14 GMT + - Mon, 25 Mar 2024 06:30:59 GMT expires: - '-1' pragma: - no-cache - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: BD6356E9A8584881BFCBFA3E406E1525 Ref B: CO6AA3150218053 Ref C: 2024-03-25T06:30:59Z' status: code: 200 message: OK @@ -444,7 +532,7 @@ interactions: ParameterSetName: - --service-name --problem-classification-name User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-support/6.0.0 Python/3.11.8 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea/problemClassifications/c9805a0b-9410-1708-2989-0befc008e963?api-version=2020-04-01 response: @@ -459,21 +547,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:18:14 GMT + - Mon, 25 Mar 2024 06:31:00 GMT expires: - '-1' pragma: - no-cache - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: CFD95056E6C54CE182AD661CD531E9FD Ref B: CO6AA3150219047 Ref C: 2024-03-25T06:31:01Z' status: code: 200 message: OK diff --git a/src/support/azext_support/tests/latest/recordings/test_support_tickets.yaml b/src/support/azext_support/tests/latest/recordings/test_support_tickets.yaml index cabe1202f5f..a2a30afbd6d 100644 --- a/src/support/azext_support/tests/latest/recordings/test_support_tickets.yaml +++ b/src/support/azext_support/tests/latest/recordings/test_support_tickets.yaml @@ -11,7 +11,7 @@ interactions: Connection: - keep-alive Content-Length: - - '86' + - '83' Content-Type: - application/json ParameterSetName: @@ -19,7 +19,7 @@ interactions: --contact-email --contact-first-name --contact-language --contact-last-name --contact-method --contact-timezone --problem-classification User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-support/6.0.0 Python/3.11.8 (Windows-10-10.0.22631-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/checkNameAvailability?api-version=2020-04-01 response: @@ -33,23 +33,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:18:13 GMT + - Mon, 25 Mar 2024 06:30:55 GMT expires: - '-1' pragma: - no-cache - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: E303D31A67BE4C6C99F8DC864F82860D Ref B: CO6AA3150220053 Ref C: 2024-03-25T06:30:54Z' status: code: 200 message: OK @@ -60,7 +58,7 @@ interactions: "Foo", "lastName": "Bar", "preferredContactMethod": "email", "primaryEmailAddress": "azengcase@microsoft.com", "preferredTimeZone": "Pacific Standard Time", "country": "USA", "preferredSupportLanguage": "en-US"}, "title": "test ticket from python - cli test. Do not assign and close after a day.", "problemStartTime": "2021-08-03T15:18:13.000Z", + cli test. Do not assign and close after a day.", "problemStartTime": "2024-03-24T23:30:55.000Z", "serviceId": "/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc"}}' headers: Accept: @@ -80,7 +78,7 @@ interactions: --contact-email --contact-first-name --contact-language --contact-last-name --contact-method --contact-timezone --problem-classification User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-support/6.0.0 Python/3.11.8 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001?api-version=2020-04-01 response: @@ -88,27 +86,29 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/3a65fef3-9316-4c36-a5ca-fc38e1dbd4ad?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/1cad1ac5-2c5f-4a7c-8bc0-e289f76f63f5?api-version=2020-04-01&t=638469450573117516&c=MIIHADCCBeigAwIBAgITfARmPsJdo2ShuN-ImAAABGY-wjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMxMjIwNzA5WhcNMjUwMTI1MjIwNzA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVFiSMi9Sg6cKnrBuPHbDk_Zwa1ZNYHwLVPJArEI9N2bLrgd1mU0ZdNVcdf6rtZCkUUuCe3vxnVTGwufpwH9GPWDgJOpJoL9wgKOzUDiHLUeiWPjrK1AoaQVprZgjnzXBIWiZC2tZjbUT9pOI_ixYJJPrsCfLt7HEccnhObROE1mo_hpiPDrtOQDaX-BboNceB8vI1wmSPApGpPRM9hBRQbXgqKFC8094UNsMVkWPCrsPvP5YlMBLARlGf2WTevGKRREjstkApf1Swi7uKnpyhhsidD1yREMU0mWY9wnZfAX0jpEp3p9jKVMPQ3L-m-nSZI4zrtbW0AnI0O3pAEwe0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT2vcy9ccvhGewsiHI1BQHsz3Wn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBADNBZjhX44bpBtC8kogZJGe4lYeHX95whfZ7X_CMSUuZRbQQ_b6raUpp8V8eF0YUa9b3Oa-DGrs5WfzogCuGcJPeoEVnDYzc1jlKubSIpGw73aGZzhbTjJeNf-Qe-5vTG-GcNzVtIcrwi93YSiK2LSbgrLpTL7T7znjePcGRRkCBjAslrV5SqufcsrpGmqvPAVKXRV-OIOzvXy6qmn9CHmdo0RGBXGIakbLMec_1SIS8NdPsB6i6XPjL2SDjqKTa5car7bVYlXEVsgL-000VF1t6x1II3VBNfsEJ81CdJyxaCJnwvWI6kHtCtJX9QYK3qZab9PfZRBvcetJoPdMFvBU&s=OWM8Q1bkfSfXySLBFjgktNTQvZoJpKhpLbLrX9Fhhvb9lJENC8e_Hynk7FbKwgrDzekOxNnz1bQRMCyckmd00Z4Ytg_M0ckmYRWRo-jr9UwT93AyIj3Bv1eosYh3u8HczcP3Eg_rwQDU-hAL8Hh0zAVIi9KfpVxNApUyG_z12q8M2yCtkAXHzjIift7Y4RxbgTSpi2d1ShHUwOUQi6UNnr343wRXrQhwrH1RejWMW08fm3IUv0kVmjRHp8wTS4OJT6q4SJnjqzo9jbb1MPbIPq1uBgDYtgNey39IjamRw_drKqgwILk3Yz9s4lhvw6Xf2UohJlm2stmB9N6Kqyrkdw&h=mq8uQgdwVkt552klj30WXoWZ0G__XJ7CyvHqwJaucyA cache-control: - no-cache content-length: - '0' date: - - Tue, 03 Aug 2021 22:18:14 GMT + - Mon, 25 Mar 2024 06:30:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationResults/3a65fef3-9316-4c36-a5ca-fc38e1dbd4ad?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationResults/1cad1ac5-2c5f-4a7c-8bc0-e289f76f63f5?api-version=2020-04-01&t=638469450573273759&c=MIIHADCCBeigAwIBAgITfARmPsJdo2ShuN-ImAAABGY-wjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMxMjIwNzA5WhcNMjUwMTI1MjIwNzA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVFiSMi9Sg6cKnrBuPHbDk_Zwa1ZNYHwLVPJArEI9N2bLrgd1mU0ZdNVcdf6rtZCkUUuCe3vxnVTGwufpwH9GPWDgJOpJoL9wgKOzUDiHLUeiWPjrK1AoaQVprZgjnzXBIWiZC2tZjbUT9pOI_ixYJJPrsCfLt7HEccnhObROE1mo_hpiPDrtOQDaX-BboNceB8vI1wmSPApGpPRM9hBRQbXgqKFC8094UNsMVkWPCrsPvP5YlMBLARlGf2WTevGKRREjstkApf1Swi7uKnpyhhsidD1yREMU0mWY9wnZfAX0jpEp3p9jKVMPQ3L-m-nSZI4zrtbW0AnI0O3pAEwe0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT2vcy9ccvhGewsiHI1BQHsz3Wn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBADNBZjhX44bpBtC8kogZJGe4lYeHX95whfZ7X_CMSUuZRbQQ_b6raUpp8V8eF0YUa9b3Oa-DGrs5WfzogCuGcJPeoEVnDYzc1jlKubSIpGw73aGZzhbTjJeNf-Qe-5vTG-GcNzVtIcrwi93YSiK2LSbgrLpTL7T7znjePcGRRkCBjAslrV5SqufcsrpGmqvPAVKXRV-OIOzvXy6qmn9CHmdo0RGBXGIakbLMec_1SIS8NdPsB6i6XPjL2SDjqKTa5car7bVYlXEVsgL-000VF1t6x1II3VBNfsEJ81CdJyxaCJnwvWI6kHtCtJX9QYK3qZab9PfZRBvcetJoPdMFvBU&s=ZIPLEhtQ2oQyTLOe1acorDkQpusZ7q7TXW7X5z-NCuIF5B7IBF9j4EyGfVmLRuWqgh-B35xt4efpyt0wIBNmeedOuHhd2dcqNmh-Yj-7IIuSZaRjgHj1tXlpwu7AaZenWiL4AkXxRdZRPrsdNomoUaMcRbCGFWuEtGKmJ1Q27cIdOAxpGgfDUa6a5BIGHQtUw9XTilrdkMl_pAWKVCbvTjA7_D2QBsf3yHXEvVZRy_iTpHYhJvXOHIh98bseDqFJtStcxA8pmyLtzrNwFXTwLH8JrQThUFF3tZfm3hU0_fc2IoANwhlBZLcy1PBX8JFEdOULEf7l0t9OTENrQlKfeg&h=fncmawrBrckDySKO0Nl92WTVN63fwDQTJBezMitO7_Y pragma: - no-cache - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 80DCDE350EC44E079D7704244651F27E Ref B: CO6AA3150217023 Ref C: 2024-03-25T06:30:56Z' status: code: 202 message: Accepted @@ -128,8093 +128,33 @@ interactions: --contact-email --contact-first-name --contact-language --contact-last-name --contact-method --contact-timezone --problem-classification User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-support/6.0.0 Python/3.11.8 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/3a65fef3-9316-4c36-a5ca-fc38e1dbd4ad?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/1cad1ac5-2c5f-4a7c-8bc0-e289f76f63f5?api-version=2020-04-01&t=638469450573117516&c=MIIHADCCBeigAwIBAgITfARmPsJdo2ShuN-ImAAABGY-wjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMxMjIwNzA5WhcNMjUwMTI1MjIwNzA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVFiSMi9Sg6cKnrBuPHbDk_Zwa1ZNYHwLVPJArEI9N2bLrgd1mU0ZdNVcdf6rtZCkUUuCe3vxnVTGwufpwH9GPWDgJOpJoL9wgKOzUDiHLUeiWPjrK1AoaQVprZgjnzXBIWiZC2tZjbUT9pOI_ixYJJPrsCfLt7HEccnhObROE1mo_hpiPDrtOQDaX-BboNceB8vI1wmSPApGpPRM9hBRQbXgqKFC8094UNsMVkWPCrsPvP5YlMBLARlGf2WTevGKRREjstkApf1Swi7uKnpyhhsidD1yREMU0mWY9wnZfAX0jpEp3p9jKVMPQ3L-m-nSZI4zrtbW0AnI0O3pAEwe0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT2vcy9ccvhGewsiHI1BQHsz3Wn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBADNBZjhX44bpBtC8kogZJGe4lYeHX95whfZ7X_CMSUuZRbQQ_b6raUpp8V8eF0YUa9b3Oa-DGrs5WfzogCuGcJPeoEVnDYzc1jlKubSIpGw73aGZzhbTjJeNf-Qe-5vTG-GcNzVtIcrwi93YSiK2LSbgrLpTL7T7znjePcGRRkCBjAslrV5SqufcsrpGmqvPAVKXRV-OIOzvXy6qmn9CHmdo0RGBXGIakbLMec_1SIS8NdPsB6i6XPjL2SDjqKTa5car7bVYlXEVsgL-000VF1t6x1II3VBNfsEJ81CdJyxaCJnwvWI6kHtCtJX9QYK3qZab9PfZRBvcetJoPdMFvBU&s=OWM8Q1bkfSfXySLBFjgktNTQvZoJpKhpLbLrX9Fhhvb9lJENC8e_Hynk7FbKwgrDzekOxNnz1bQRMCyckmd00Z4Ytg_M0ckmYRWRo-jr9UwT93AyIj3Bv1eosYh3u8HczcP3Eg_rwQDU-hAL8Hh0zAVIi9KfpVxNApUyG_z12q8M2yCtkAXHzjIift7Y4RxbgTSpi2d1ShHUwOUQi6UNnr343wRXrQhwrH1RejWMW08fm3IUv0kVmjRHp8wTS4OJT6q4SJnjqzo9jbb1MPbIPq1uBgDYtgNey39IjamRw_drKqgwILk3Yz9s4lhvw6Xf2UohJlm2stmB9N6Kqyrkdw&h=mq8uQgdwVkt552klj30WXoWZ0G__XJ7CyvHqwJaucyA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/3a65fef3-9316-4c36-a5ca-fc38e1dbd4ad","status":"Succeeded","properties":{"supportTicketCreationWarning":""}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/1cad1ac5-2c5f-4a7c-8bc0-e289f76f63f5","status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '212' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:18:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - 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: - - support tickets create - Connection: - - keep-alive - ParameterSetName: - - --debug --description --severity --ticket-name --severity --title --contact-country - --contact-email --contact-first-name --contact-language --contact-last-name - --contact-method --contact-timezone --problem-classification - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001?api-version=2020-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001","name":"test_ticket_from_cli_000001","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from python cli test. Do not assign and close after a day.","problemClassificationId":"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc/problemClassifications/44114011-6a66-e902-c00f-e419b6b4509f","problemClassificationDisplayName":"Cost - Management / I have access but cost is not loading for me","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Foo","lastName":"Bar","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-08-03T22:18:28Z","expirationTime":"2021-08-04T14:19:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108030010002669","title":"test - ticket from python cli test. Do not assign and close after a day.","serviceId":"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc","serviceDisplayName":"Billing","status":"Open","problemStartTime":"2021-08-03T15:18:13Z","createdDate":"2021-08-03T22:18:28Z","modifiedDate":"2021-08-03T22:18:39Z"}}' - headers: - cache-control: - - no-cache - content-length: - - '1416' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:18:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - 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": {"sender": "nichheda@microsoft.com", "subject": "test subject - for communication posted from azure python cli", "body": "test body for communication - posted from azure python cli"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets communications create - Connection: - - keep-alive - Content-Length: - - '194' - Content-Type: - - application/json - ParameterSetName: - - --debug --ticket-name --communication-name --communication-sender --communication-subject - --communication-body - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001/communications/12345678-1234-1234-1234-123412341234?api-version=2020-04-01 - response: - body: - string: '{"error":{"code":"ResourceNameInvalid","message":"Resource name is - invalid. Please provide a valid name","details":[]}}' - headers: - cache-control: - - no-cache - content-length: - - '119' - content-type: - - application/json - date: - - Tue, 03 Aug 2021 22:18:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 400 - message: Bad Request -- request: - body: '{"properties": {"sender": "nichheda@microsoft.com", "subject": "test subject - for communication posted from azure python cli", "body": "test body for communication - posted from azure python cli"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets communications create - Connection: - - keep-alive - Content-Length: - - '194' - Content-Type: - - application/json - ParameterSetName: - - --debug --ticket-name --communication-name --communication-sender --communication-subject - --communication-body - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001/communications/test_communication_from_cli_000002?api-version=2020-04-01 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/0e73194e-2e63-4149-a88c-c10fdf9c3230?api-version=2020-04-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 03 Aug 2021 22:18:50 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationResults/0e73194e-2e63-4149-a88c-c10fdf9c3230?api-version=2020-04-01 - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets communications create - Connection: - - keep-alive - ParameterSetName: - - --debug --ticket-name --communication-name --communication-sender --communication-subject - --communication-body - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/0e73194e-2e63-4149-a88c-c10fdf9c3230?api-version=2020-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/0e73194e-2e63-4149-a88c-c10fdf9c3230","status":"Succeeded","properties":{"supportTicketCreationWarning":""}}' - headers: - cache-control: - - no-cache - content-length: - - '212' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - 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: - - support tickets communications create - Connection: - - keep-alive - ParameterSetName: - - --debug --ticket-name --communication-name --communication-sender --communication-subject - --communication-body - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001/communications/test_communication_from_cli_000002?api-version=2020-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001/communications/test_communication_from_cli_000002","name":"test_communication_from_cli_000002","type":"Microsoft.Support/communications","properties":{"communicationType":"Web","communicationDirection":"Inbound","sender":"nichheda@microsoft.com","subject":"test - subject for communication posted from azur... - TrackingID#2108030010002669","body":"
test
-        body for communication posted from azure python cli
","createdDate":"2021-08-03T22:18:53Z"}}' - headers: - cache-control: - - no-cache - content-length: - - '599' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets communications list - Connection: - - keep-alive - ParameterSetName: - - --ticket-name - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001/communications?api-version=2020-04-01 - response: - body: - string: "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001/communications/test_communication_from_cli_000002\",\"name\":\"test_communication_from_cli_000002\",\"type\":\"Microsoft.Support/communications\",\"properties\":{\"communicationType\":\"Web\",\"communicationDirection\":\"Inbound\",\"sender\":\"nichheda@microsoft.com\",\"subject\":\"test - subject for communication posted from azur... - TrackingID#2108030010002669\",\"body\":\"
test
-        body for communication posted from azure python cli
\",\"createdDate\":\"2021-08-03T22:18:53Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001/communications/322411be-a8f4-eb11-94ee-0022482310d1\",\"name\":\"322411be-a8f4-eb11-94ee-0022482310d1\",\"type\":\"Microsoft.Support/communications\",\"properties\":{\"communicationType\":\"Web\",\"communicationDirection\":\"Outbound\",\"sender\":\"support@microsoftsupport.com\",\"subject\":\"\\nCase - 2108030010002669\u2009 Your question was succe... - TrackingID#2108030010002669\",\"body\":\"\\n\\n\\n\\n\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n\\n\\n\\n\\n\\n\\n
\\n\\n\\n\\n\\n\\n\\n
\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n
\\n
\\n
Having trouble viewing this - email? View\\n - your request online
\\n
\\n
\\n
\\n\\\"Microsoft\\\"
\\n 
\\n
\\n
Support
\\n
\\n
\\n
 
\\n
Your question was successfully - submitted to Microsoft Support\\n using your Premier plan. A Microsoft support - professional will contact you.
\\n 
\\nPlease - note: First time is based on Severity and if the case is classified as \u201C24x7\u201D - (\u201CSeverity\\n A\u201D response cases are always 24x7, \u201CSeverity - B\u201D are optionally 24x7, and \u201CSeverity C\u201D cases are business - hours only). Learn more about support\\n response times.
\\n
 
\\n
Please keep in mind: microsoftsupport.com - and microsoft.com are both valid email domains used for communications related\\n - to your support request.
\\n
 
\\n
\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n
\\nIncident title:\\ntest - ticket from python cli test. Do not assign and close after a day.
\\nSupport request number:\\n2108030010002669
\\nSeverity rating:\\nC
\\nContact preference:\\n
\\n
Email
\\n
\\n
\\nName:\\nFoo - Bar
\\nEmail - address:\\n
\\n
azengcase@microsoft.com
\\n
\\n
\\nContact - numbers:\\n
\\n
\\n
\\n
\\n
\\n
 
\\n
You can contact us again - about this incident at any time on\\n the Microsoft Azure portal.\\n - See the Azure Support FAQ for\\n - additional information about Azure Support, including terms and conditions.
\\n 
\\nThis - email is generated from an unmonitored account. Please do not reply.
\\n
\\nThank - you,
\\nMicrosoft Azure Support
\\n
 
\\n
\\n
 
\\n
Additional - Information
\\n
\\nProduct: Azure/Billing/Cost\\n - Management/I have access but cost is not loading for me
\\nAzure - Subscription: 

\\nAzure Subscription ID: 1c4eecc5-46a8-4b7f-9a0a-fa0ba47240cd
\\n
 
\\n
\\n
\\nThis message from Microsoft is an important part\\n - of a program, service, or product that you or your company purchased or participates - in. Microsoft respects your privacy. Please read our Privacy\\n Statement.
\\n 
\\n
\\nOne - Microsoft Way, Redmond, WA 98052 USA
\\n 
\\n
\\n
 
\\n
\\n
\\n
\\\"Microsoft\\\"
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n\\n\\n\",\"createdDate\":\"2021-08-03T22:18:35Z\"}}]}" - headers: - cache-control: - - no-cache - content-length: - - '25548' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets communications show - Connection: - - keep-alive - ParameterSetName: - - --ticket-name --communication-name - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001/communications/test_communication_from_cli_000002?api-version=2020-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001/communications/test_communication_from_cli_000002","name":"test_communication_from_cli_000002","type":"Microsoft.Support/communications","properties":{"communicationType":"Web","communicationDirection":"Inbound","sender":"nichheda@microsoft.com","subject":"test - subject for communication posted from azur... - TrackingID#2108030010002669","body":"
test
-        body for communication posted from azure python cli
","createdDate":"2021-08-03T22:18:53Z"}}' - headers: - cache-control: - - no-cache - content-length: - - '599' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status%20eq%20%27Open%27&api-version=2020-04-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001","name":"test_ticket_from_cli_000001","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from python cli test. Do not assign and close after a day.","problemClassificationId":"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc/problemClassifications/44114011-6a66-e902-c00f-e419b6b4509f","problemClassificationDisplayName":"Cost - Management / I have access but cost is not loading for me","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Foo","lastName":"Bar","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-08-03T22:18:28Z","expirationTime":"2021-08-04T14:19:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108030010002669","title":"test - ticket from python cli test. Do not assign and close after a day.","serviceId":"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc","serviceDisplayName":"Billing","status":"Open","problemStartTime":"2021-08-03T15:18:13Z","createdDate":"2021-08-03T22:18:28Z","modifiedDate":"2021-08-03T22:18:55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/BillingTestTicket","name":"BillingTestTicket","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from python cli test. Do not assign and close after a day.","problemClassificationId":"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc/problemClassifications/44114011-6a66-e902-c00f-e419b6b4509f","problemClassificationDisplayName":"Cost - Management / I have access but cost is not loading for me","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Foo","lastName":"Bar","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-08-03T20:31:55Z","expirationTime":"2021-08-04T00:31:55Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108030010002475","title":"BillingTicketTitle - test. Do not assign and close after a day.","serviceId":"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc","serviceDisplayName":"Billing","status":"Open","problemStartTime":"2021-08-03T13:31:36Z","createdDate":"2021-08-03T20:31:55Z","modifiedDate":"2021-08-03T20:36:24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001","name":"test_ticket_from_cli_000001","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from python cli test. Do not assign and close after a day.","problemClassificationId":"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc/problemClassifications/44114011-6a66-e902-c00f-e419b6b4509f","problemClassificationDisplayName":"Cost - Management / I have access but cost is not loading for me","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Foo","lastName":"Bar","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-08-03T19:32:55Z","expirationTime":"2021-08-03T23:32:55Z","slaMinutes":240},"supportEngineer":{"emailAddress":"v-rvenu@microsoftsupport.com"},"supportPlanType":"Premier","supportTicketId":"2108030010002325","title":"test - ticket from python cli test. Do not assign and close after a day.","serviceId":"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc","serviceDisplayName":"Billing","status":"Open","problemStartTime":"2021-08-03T12:32:29Z","createdDate":"2021-08-03T19:32:55Z","modifiedDate":"2021-08-03T19:49:08Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107280010003559","name":"2107280010003559","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-28T22:52:40Z","expirationTime":"2021-07-29T14:53:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"2107280010003559","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-28T22:52:40Z","modifiedDate":"2021-07-29T22:52:40Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107280010003529","name":"2107280010003529","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu","lastName":"litware","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-28T22:35:35Z","expirationTime":"2021-07-29T14:36:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107280010003529","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-28T22:35:35Z","modifiedDate":"2021-07-29T22:35:36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637630953582735224","name":"E2ETest637630953582735224","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - name 6572","lastName":"last name 6632","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"202310","preferredTimeZone":"Pacific - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-07-28T18:56:10Z","expirationTime":"2021-07-28T20:56:54Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107280010003046","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-28T18:56:10Z","modifiedDate":"2021-07-29T18:56:11Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637630953607375937","name":"E2ETest637630953607375937","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 68","lastName":"last 561","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"528867","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-07-28T18:56:09Z","expirationTime":"2021-07-28T20:56:58Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107280010003045","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-28T18:56:09Z","modifiedDate":"2021-07-29T18:56:10Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121072821002194","name":"121072821002194","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","lastName":"test","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-28T15:08:38Z","expirationTime":"2021-07-28T19:08:38Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121072821002194","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-28T15:08:38Z","modifiedDate":"2021-07-29T15:08:38Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107280010002110","name":"2107280010002110","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu","lastName":"litware","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-28T14:51:41Z","expirationTime":"2021-07-28T18:51:41Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107280010002110","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-28T14:51:41Z","modifiedDate":"2021-07-29T14:51:42Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637630320153386704","name":"E2ETest637630320153386704","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - name 2953","lastName":"last name 2309","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"035203","preferredTimeZone":"Pacific - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-07-28T01:20:24Z","expirationTime":"2021-07-28T18:56:26Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107280010000130","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-28T01:20:24Z","modifiedDate":"2021-07-29T13:00:02Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EB99CD6732%2522%252C%2522max%2522%253A%252205C1EBFFFFFFFE%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-07-28T01%253A20%253A24Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8-80AAAABACw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522true%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '15027' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EB99CD6732%2522%252C%2522max%2522%253A%252205C1EBFFFFFFFE%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-07-28T01%253A20%253A24Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8-80AAAABACw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522true%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637630284091278402","name":"E2ETest637630284091278402","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 825","lastName":"last 806","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"450668","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-07-28T00:20:30Z","expirationTime":"2021-07-28T14:22:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107280010000028","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-28T00:20:30Z","modifiedDate":"2021-07-29T00:20:31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121072821000006","name":"121072821000006","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","lastName":"test","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-28T00:02:13Z","expirationTime":"2021-07-28T16:02:13Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121072821000006","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-28T00:02:13Z","modifiedDate":"2021-07-29T00:02:14Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107270010003125","name":"2107270010003125","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu","lastName":"litware","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-27T23:45:29Z","expirationTime":"2021-07-28T15:46:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107270010003125","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-27T23:45:29Z","modifiedDate":"2021-07-28T23:45:30Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121072721002489","name":"121072721002489","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","lastName":"test","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-27T18:53:55Z","expirationTime":"2021-07-27T23:54:15Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121072721002489","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-27T18:53:55Z","modifiedDate":"2021-08-03T18:53:58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107270010002434","name":"2107270010002434","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu","lastName":"litware","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-27T18:36:58Z","expirationTime":"2021-07-27T22:36:58Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107270010002434","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-27T18:36:58Z","modifiedDate":"2021-08-03T18:36:59Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107270010002433","name":"2107270010002433","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu","lastName":"litware","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-27T18:36:54Z","expirationTime":"2021-07-27T22:36:54Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107270010002433","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-27T18:36:54Z","modifiedDate":"2021-08-03T18:36:54Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121072721000697","name":"121072721000697","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","lastName":"test","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-27T06:19:40Z","expirationTime":"2021-07-27T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121072721000697","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-27T06:19:40Z","modifiedDate":"2021-08-03T06:19:41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107270010000657","name":"2107270010000657","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu","lastName":"litware","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-27T06:02:24Z","expirationTime":"2021-07-27T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107270010000657","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-27T06:02:24Z","modifiedDate":"2021-08-03T13:00:06Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107260010002833","name":"2107260010002833","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-26T23:30:44Z","expirationTime":"2021-07-27T15:31:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107260010002833","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-26T23:30:44Z","modifiedDate":"2021-08-02T23:30:45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107260010002832","name":"2107260010002832","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-26T23:30:19Z","expirationTime":"2021-07-27T15:31:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107260010002832","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-26T23:30:19Z","modifiedDate":"2021-08-02T23:30:20Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1D7FFFFFFFC%2522%252C%2522max%2522%253A%252205C1D9CD673398%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-07-26T23%253A30%253A19Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252Ba60AAAAAgBA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-07-28T01%253A20%253A24Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '14310' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1D7FFFFFFFC%2522%252C%2522max%2522%253A%252205C1D9CD673398%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-07-26T23%253A30%253A19Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252Ba60AAAAAgBA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-07-28T01%253A20%253A24Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121072621002620","name":"121072621002620","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-26T21:21:50Z","expirationTime":"2021-07-27T13:21:50Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121072621002620","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-26T21:21:50Z","modifiedDate":"2021-08-02T21:21:51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107260010002590","name":"2107260010002590","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu","lastName":"litware","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-26T21:04:36Z","expirationTime":"2021-07-27T13:05:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107260010002590","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-26T21:04:36Z","modifiedDate":"2021-08-02T21:04:37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121072321001707","name":"121072321001707","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-23T19:28:48Z","expirationTime":"2021-07-23T23:28:48Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121072321001707","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-23T19:28:48Z","modifiedDate":"2021-07-30T19:28:49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107230010001669","name":"2107230010001669","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu","lastName":"litware","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-23T19:11:45Z","expirationTime":"2021-07-23T23:11:45Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107230010001669","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-23T19:11:45Z","modifiedDate":"2021-07-30T19:11:45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121072321001421","name":"121072321001421","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-23T17:29:09Z","expirationTime":"2021-07-23T21:29:09Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121072321001421","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-23T17:29:09Z","modifiedDate":"2021-07-30T17:29:10Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107230010001383","name":"2107230010001383","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu","lastName":"litware","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-23T17:12:23Z","expirationTime":"2021-07-23T21:12:23Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107230010001383","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-23T17:12:23Z","modifiedDate":"2021-07-30T17:12:24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121072321000323","name":"121072321000323","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-23T04:59:27Z","expirationTime":"2021-07-23T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121072321000323","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-23T04:59:27Z","modifiedDate":"2021-07-30T04:59:28Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107230010000304","name":"2107230010000304","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu","lastName":"litware","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-23T04:42:35Z","expirationTime":"2021-07-23T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107230010000304","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-23T04:42:35Z","modifiedDate":"2021-07-30T13:00:02Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121072321000012","name":"121072321000012","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-23T00:07:29Z","expirationTime":"2021-07-23T16:07:29Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121072321000012","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-23T00:07:29Z","modifiedDate":"2021-07-30T00:07:30Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637625952189923215","name":"E2ETest637625952189923215","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - name 2222","lastName":"last name 5299","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"341683","preferredTimeZone":"Pacific - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-07-23T00:00:27Z","expirationTime":"2021-07-23T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107230010000002","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-23T00:00:27Z","modifiedDate":"2021-07-30T00:00:28Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E13399CD64%2522%252C%2522max%2522%253A%252205C1E1673399CA%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-07-23T00%253A00%253A27Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9S%252BD4AAACgBA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-07-26T23%253A30%253A19Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '14398' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E13399CD64%2522%252C%2522max%2522%253A%252205C1E1673399CA%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-07-23T00%253A00%253A27Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9S%252BD4AAACgBA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-07-26T23%253A30%253A19Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637625950945438095","name":"E2ETest637625950945438095","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 813","lastName":"last 25","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"701348","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-07-22T23:58:24Z","expirationTime":"2021-07-23T14:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107220010002712","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-22T23:58:24Z","modifiedDate":"2021-07-29T23:58:26Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107220010002706","name":"2107220010002706","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu","lastName":"litware","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-22T23:50:47Z","expirationTime":"2021-07-23T15:51:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107220010002706","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-22T23:50:47Z","modifiedDate":"2021-07-29T23:50:49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637625900425420984","name":"E2ETest637625900425420984","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - name 1728","lastName":"last name 2639","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"253234","preferredTimeZone":"Pacific - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-07-22T22:34:13Z","expirationTime":"2021-07-23T15:56:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107220010002595","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-22T22:34:13Z","modifiedDate":"2021-07-29T22:34:14Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121072221002336","name":"121072221002336","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-22T20:30:12Z","expirationTime":"2021-07-23T00:30:12Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121072221002336","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-22T20:30:12Z","modifiedDate":"2021-07-29T20:30:13Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107220010002295","name":"2107220010002295","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu","lastName":"litware","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-22T20:15:00Z","expirationTime":"2021-07-23T00:15:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107220010002295","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-22T20:15:00Z","modifiedDate":"2021-07-29T20:15:01Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121072221000105","name":"121072221000105","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-22T01:13:02Z","expirationTime":"2021-07-22T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121072221000105","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-22T01:13:02Z","modifiedDate":"2021-07-29T13:00:02Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107220010000075","name":"2107220010000075","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu","lastName":"litware","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-22T00:57:19Z","expirationTime":"2021-07-22T16:58:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107220010000075","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-22T00:57:19Z","modifiedDate":"2021-07-29T00:57:20Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121072121002605","name":"121072121002605","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-21T19:50:51Z","expirationTime":"2021-07-21T23:50:51Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121072121002605","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-21T19:50:51Z","modifiedDate":"2021-07-28T19:50:52Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107210010002551","name":"2107210010002551","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu","lastName":"litware","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-21T19:34:19Z","expirationTime":"2021-07-21T23:34:19Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107210010002551","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-21T19:34:19Z","modifiedDate":"2021-07-28T19:34:19Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121072121002496","name":"121072121002496","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-21T19:13:46Z","expirationTime":"2021-07-21T23:13:46Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121072121002496","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-21T19:13:46Z","modifiedDate":"2021-07-28T19:13:47Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EBFFFFFFFE%2522%252C%2522max%2522%253A%252205C1ED673399CC%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-07-21T19%253A13%253A46Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-X6kAAAABABw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-07-23T00%253A00%253A27Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '14680' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EBFFFFFFFE%2522%252C%2522max%2522%253A%252205C1ED673399CC%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-07-21T19%253A13%253A46Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-X6kAAAABABw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-07-23T00%253A00%253A27Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107210010002458","name":"2107210010002458","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu","lastName":"litware","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-21T18:58:37Z","expirationTime":"2021-07-21T22:58:37Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107210010002458","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-21T18:58:37Z","modifiedDate":"2021-07-28T18:58:38Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107200010000464","name":"2107200010000464","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-20T05:50:21Z","expirationTime":"2021-07-20T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107200010000464","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-20T05:50:21Z","modifiedDate":"2021-07-27T13:00:10Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107200010000461","name":"2107200010000461","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-20T05:49:50Z","expirationTime":"2021-07-20T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107200010000461","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-20T05:49:50Z","modifiedDate":"2021-07-27T13:00:03Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107200010000347","name":"2107200010000347","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-20T04:23:48Z","expirationTime":"2021-07-20T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107200010000347","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-20T04:23:48Z","modifiedDate":"2021-07-27T13:00:05Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107200010000346","name":"2107200010000346","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-20T04:23:16Z","expirationTime":"2021-07-20T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107200010000346","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-20T04:23:16Z","modifiedDate":"2021-07-27T13:00:09Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121071921002482","name":"121071921002482","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-19T23:06:51Z","expirationTime":"2021-07-20T15:06:51Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121071921002482","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-19T23:06:51Z","modifiedDate":"2021-07-26T23:06:52Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107190010002453","name":"2107190010002453","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu","lastName":"litware","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-19T22:51:02Z","expirationTime":"2021-07-20T14:52:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107190010002453","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-19T22:51:02Z","modifiedDate":"2021-07-26T22:51:02Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121071921002152","name":"121071921002152","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-19T19:59:31Z","expirationTime":"2021-07-19T23:59:31Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121071921002152","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-19T19:59:31Z","modifiedDate":"2021-07-26T19:59:31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107190010002127","name":"2107190010002127","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu","lastName":"litware","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-19T19:44:38Z","expirationTime":"2021-07-19T23:44:38Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107190010002127","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-19T19:44:38Z","modifiedDate":"2021-07-26T19:44:38Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107160010001945","name":"2107160010001945","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-16T18:08:55Z","expirationTime":"2021-07-16T22:08:55Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107160010001945","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-16T18:08:55Z","modifiedDate":"2021-07-23T18:08:55Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1C399CD6730%2522%252C%2522max%2522%253A%252205C1C73399CD60%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-07-16T18%253A08%253A55Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-d5EAAAADADw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-07-21T19%253A13%253A46Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '13779' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1C399CD6730%2522%252C%2522max%2522%253A%252205C1C73399CD60%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-07-16T18%253A08%253A55Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-d5EAAAADADw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-07-21T19%253A13%253A46Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107160010001943","name":"2107160010001943","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-16T18:08:38Z","expirationTime":"2021-07-16T22:08:38Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107160010001943","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-16T18:08:38Z","modifiedDate":"2021-07-23T18:08:39Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121071621001580","name":"121071621001580","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-16T15:40:37Z","expirationTime":"2021-07-16T19:40:37Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121071621001580","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-16T15:40:37Z","modifiedDate":"2021-07-23T15:40:38Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107160010001537","name":"2107160010001537","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu","lastName":"litware","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-16T15:25:54Z","expirationTime":"2021-07-16T19:25:54Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107160010001537","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-16T15:25:54Z","modifiedDate":"2021-07-23T15:25:54Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107160010001457","name":"2107160010001457","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-16T14:56:45Z","expirationTime":"2021-07-16T18:56:45Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107160010001457","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-16T14:56:45Z","modifiedDate":"2021-07-23T14:56:46Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107160010001454","name":"2107160010001454","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-16T14:56:18Z","expirationTime":"2021-07-16T18:56:18Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107160010001454","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-16T14:56:18Z","modifiedDate":"2021-07-23T14:56:19Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121071621000044","name":"121071621000044","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-16T00:32:17Z","expirationTime":"2021-07-16T16:32:17Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121071621000044","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-16T00:32:17Z","modifiedDate":"2021-07-23T00:32:18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107160010000026","name":"2107160010000026","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu","lastName":"litware","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-16T00:16:38Z","expirationTime":"2021-07-16T16:17:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107160010000026","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-16T00:16:38Z","modifiedDate":"2021-07-23T00:16:38Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121071521001742","name":"121071521001742","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-15T16:56:39Z","expirationTime":"2021-07-15T20:56:39Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121071521001742","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-15T16:56:39Z","modifiedDate":"2021-07-22T16:56:40Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107150010001710","name":"2107150010001710","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu","lastName":"litware","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-15T16:41:10Z","expirationTime":"2021-07-15T20:41:10Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107150010001710","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-15T16:41:10Z","modifiedDate":"2021-07-22T16:41:11Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121071521000018","name":"121071521000018","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-15T00:09:28Z","expirationTime":"2021-07-15T16:09:28Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121071521000018","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-15T00:09:28Z","modifiedDate":"2021-07-22T00:09:28Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1C399CD6730%2522%252C%2522max%2522%253A%252205C1C73399CD60%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-07-15T00%253A09%253A28Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-P4UAAAADADw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522true%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '13639' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:31 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1C399CD6730%2522%252C%2522max%2522%253A%252205C1C73399CD60%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-07-15T00%253A09%253A28Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-P4UAAAADADw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522true%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107140010003109","name":"2107140010003109","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu","lastName":"litware","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-14T23:53:40Z","expirationTime":"2021-07-15T15:54:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107140010003109","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-14T23:53:40Z","modifiedDate":"2021-07-21T23:53:41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121071421002931","name":"121071421002931","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-14T22:00:20Z","expirationTime":"2021-07-15T14:00:20Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121071421002931","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-14T22:00:20Z","modifiedDate":"2021-07-21T22:00:21Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107140010002876","name":"2107140010002876","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu","lastName":"litware","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-14T21:39:56Z","expirationTime":"2021-07-15T13:40:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107140010002876","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-14T21:39:56Z","modifiedDate":"2021-07-21T21:39:56Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121071421002585","name":"121071421002585","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-14T19:34:55Z","expirationTime":"2021-07-14T23:34:55Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121071421002585","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-14T19:34:55Z","modifiedDate":"2021-07-21T19:34:55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107140010002544","name":"2107140010002544","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu","lastName":"litware","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-14T19:19:32Z","expirationTime":"2021-07-14T23:19:32Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107140010002544","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-14T19:19:32Z","modifiedDate":"2021-07-21T19:19:32Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121071421000250","name":"121071421000250","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-14T02:05:50Z","expirationTime":"2021-07-14T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121071421000250","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-14T02:05:50Z","modifiedDate":"2021-07-21T02:05:50Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107140010000214","name":"2107140010000214","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu","lastName":"litware","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-14T01:50:29Z","expirationTime":"2021-07-14T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107140010000214","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-14T01:50:29Z","modifiedDate":"2021-07-21T13:00:04Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107130010002163","name":"2107130010002163","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-13T16:55:33Z","expirationTime":"2021-07-13T20:55:33Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107130010002163","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-13T16:55:33Z","modifiedDate":"2021-07-20T16:55:34Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107130010002108","name":"2107130010002108","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-13T16:38:05Z","expirationTime":"2021-07-13T20:38:05Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107130010002108","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-13T16:38:05Z","modifiedDate":"2021-07-20T16:38:06Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107130010002106","name":"2107130010002106","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-13T16:37:42Z","expirationTime":"2021-07-13T20:37:42Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107130010002106","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-13T16:37:42Z","modifiedDate":"2021-07-20T16:37:43Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1DF3399CD60%2522%252C%2522max%2522%253A%252205C1DFFFFFFFFC%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-07-13T16%253A37%253A42Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-T3kAAAADAAA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-07-15T00%253A09%253A28Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '13915' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1DF3399CD60%2522%252C%2522max%2522%253A%252205C1DFFFFFFFFC%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-07-13T16%253A37%253A42Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-T3kAAAADAAA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-07-15T00%253A09%253A28Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121071321002067","name":"121071321002067","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-13T16:27:28Z","expirationTime":"2021-07-13T20:27:28Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121071321002067","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-13T16:27:28Z","modifiedDate":"2021-07-20T16:27:29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107130010002022","name":"2107130010002022","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu","lastName":"litware","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-13T16:14:57Z","expirationTime":"2021-07-13T20:14:57Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107130010002022","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-13T16:14:57Z","modifiedDate":"2021-07-20T16:14:57Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107130010001831","name":"2107130010001831","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-13T15:11:00Z","expirationTime":"2021-07-13T19:11:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107130010001831","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-13T15:11:00Z","modifiedDate":"2021-07-20T15:11:01Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107130010001828","name":"2107130010001828","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-13T15:10:36Z","expirationTime":"2021-07-13T19:10:36Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107130010001828","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-13T15:10:36Z","modifiedDate":"2021-07-20T15:10:37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637617429892390178","name":"E2ETest637617429892390178","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - name 6659","lastName":"last name 4666","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"848244","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-07-13T03:16:49Z","expirationTime":"2021-07-13T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107130010000369","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-13T03:16:49Z","modifiedDate":"2021-07-21T20:30:42Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107120010003126","name":"2107120010003126","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-12T23:11:17Z","expirationTime":"2021-07-13T15:12:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107120010003126","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-12T23:11:17Z","modifiedDate":"2021-07-19T23:11:18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107120010003123","name":"2107120010003123","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-12T23:10:50Z","expirationTime":"2021-07-13T15:11:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107120010003123","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-12T23:10:50Z","modifiedDate":"2021-07-19T23:10:51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637613639040783172","name":"E2ETest637613639040783172","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 314","lastName":"last 735","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"776882","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-07-08T17:58:31Z","expirationTime":"2021-07-08T19:59:21Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107080010002129","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-08T17:58:31Z","modifiedDate":"2021-07-15T17:58:32Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637613638992727654","name":"E2ETest637613638992727654","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 352","lastName":"last 486","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"378737","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-07-08T17:58:29Z","expirationTime":"2021-07-08T19:59:15Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107080010002128","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-08T17:58:29Z","modifiedDate":"2021-07-15T17:58:31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637613050358797302","name":"E2ETest637613050358797302","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 497","lastName":"last 780","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"056034","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-07-08T01:37:28Z","expirationTime":"2021-07-08T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107080010000161","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-08T01:37:28Z","modifiedDate":"2021-07-15T13:00:04Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C199CD673380%2522%252C%2522max%2522%253A%252205C1A9CD673380%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-07-08T01%253A37%253A28Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9u2EAAAADABA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-07-13T16%253A37%253A42Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '14984' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C199CD673380%2522%252C%2522max%2522%253A%252205C1A9CD673380%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-07-08T01%253A37%253A28Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9u2EAAAADABA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-07-13T16%253A37%253A42Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107070010003029","name":"2107070010003029","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-07T21:29:24Z","expirationTime":"2021-07-08T13:30:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107070010003029","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-07T21:29:24Z","modifiedDate":"2021-07-14T21:29:24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107070010003027","name":"2107070010003027","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-07T21:28:53Z","expirationTime":"2021-07-08T13:29:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107070010003027","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-07T21:28:53Z","modifiedDate":"2021-07-14T21:28:54Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637612811054168071","name":"E2ETest637612811054168071","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 405","lastName":"last 220","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"663355","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-07-07T18:58:42Z","expirationTime":"2021-07-07T20:59:25Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107070010002723","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-07T18:58:42Z","modifiedDate":"2021-07-14T18:58:43Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637612811049278821","name":"E2ETest637612811049278821","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 697","lastName":"last 915","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"406238","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-07-07T18:58:41Z","expirationTime":"2021-07-07T20:59:23Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107070010002722","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-07T18:58:41Z","modifiedDate":"2021-07-14T18:58:41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107070010000437","name":"2107070010000437","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-07T03:56:06Z","expirationTime":"2021-07-07T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107070010000437","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-07T03:56:06Z","modifiedDate":"2021-07-14T13:00:06Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107070010000436","name":"2107070010000436","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-07T03:55:48Z","expirationTime":"2021-07-07T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107070010000436","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-07T03:55:48Z","modifiedDate":"2021-07-14T13:00:03Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637611574437476784","name":"E2ETest637611574437476784","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 73","lastName":"last 430","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"861756","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-07-06T08:37:32Z","expirationTime":"2021-07-06T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107060010000885","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-06T08:37:32Z","modifiedDate":"2021-07-13T13:00:07Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637611567199295470","name":"E2ETest637611567199295470","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 537","lastName":"last 257","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"427185","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-07-06T08:25:40Z","expirationTime":"2021-07-06T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107060010000856","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-06T08:25:40Z","modifiedDate":"2021-07-13T13:00:06Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121070221001710","name":"121070221001710","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","lastName":"test","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-02T17:58:03Z","expirationTime":"2021-07-02T21:58:03Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121070221001710","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-02T17:58:03Z","modifiedDate":"2021-07-09T17:58:05Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107020010001679","name":"2107020010001679","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu","lastName":"litware","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-02T17:42:03Z","expirationTime":"2021-07-02T21:42:03Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107020010001679","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-02T17:42:03Z","modifiedDate":"2021-07-09T17:42:04Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%2522%2522%252C%2522max%2522%253A%252205C199CD673380%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-07-02T17%253A42%253A03Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9g0EAAAADACA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-07-08T01%253A37%253A28Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '14975' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%2522%2522%252C%2522max%2522%253A%252205C199CD673380%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-07-02T17%253A42%253A03Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9g0EAAAADACA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-07-08T01%253A37%253A28Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121070121003030","name":"121070121003030","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","lastName":"test","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-01T21:12:29Z","expirationTime":"2021-07-02T13:12:29Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121070121003030","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-01T21:12:29Z","modifiedDate":"2021-07-08T21:12:29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107010010002998","name":"2107010010002998","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu","lastName":"litware","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-07-01T20:56:39Z","expirationTime":"2021-07-02T00:56:39Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2107010010002998","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-07-01T20:56:39Z","modifiedDate":"2021-07-08T20:56:40Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121063021003303","name":"121063021003303","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","lastName":"test","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-30T22:11:36Z","expirationTime":"2021-07-01T14:11:36Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121063021003303","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-30T22:11:36Z","modifiedDate":"2021-07-07T22:11:37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2106300010003280","name":"2106300010003280","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu","lastName":"litware","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-30T21:55:56Z","expirationTime":"2021-07-01T13:56:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106300010003280","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-30T21:55:56Z","modifiedDate":"2021-07-07T21:55:56Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637604888130064630","name":"E2ETest637604888130064630","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - name 7673","lastName":"last name 7506","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"555075","preferredTimeZone":"Pacific - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-06-28T21:53:44Z","expirationTime":"2021-06-28T23:54:29Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106280010002680","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-28T21:53:44Z","modifiedDate":"2021-07-05T21:53:45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121062621000006","name":"121062621000006","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-26T00:10:45Z","expirationTime":"2021-06-28T16:10:45Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121062621000006","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-26T00:10:45Z","modifiedDate":"2021-07-03T00:10:46Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121062521002346","name":"121062521002346","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-25T18:46:40Z","expirationTime":"2021-06-25T22:46:40Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121062521002346","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-25T18:46:40Z","modifiedDate":"2021-07-02T18:46:41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2106250010002301","name":"2106250010002301","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu","lastName":"litware","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-25T18:32:25Z","expirationTime":"2021-06-25T22:32:25Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106250010002301","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-25T18:32:25Z","modifiedDate":"2021-07-02T18:32:26Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2106240010003262","name":"2106240010003262","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu","lastName":"litware","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-24T23:18:00Z","expirationTime":"2021-06-25T15:18:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106240010003262","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-24T23:18:00Z","modifiedDate":"2021-07-01T23:18:01Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2106240010003229","name":"2106240010003229","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-24T23:07:01Z","expirationTime":"2021-06-25T15:08:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106240010003229","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-24T23:07:01Z","modifiedDate":"2021-07-01T23:07:02Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1D1CD673394%2522%252C%2522max%2522%253A%252205C1D399CD6730%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-06-24T23%253A07%253A01Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9DyUAAAADAAQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-07-02T17%253A42%253A03Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '14371' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1D1CD673394%2522%252C%2522max%2522%253A%252205C1D399CD6730%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-06-24T23%253A07%253A01Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9DyUAAAADAAQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-07-02T17%253A42%253A03Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2106240010003228","name":"2106240010003228","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-24T23:06:46Z","expirationTime":"2021-06-25T15:07:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106240010003228","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-24T23:06:46Z","modifiedDate":"2021-07-01T23:06:48Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637601421048431963","name":"E2ETest637601421048431963","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - name 8737","lastName":"last name 4507","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"507043","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-06-24T21:35:14Z","expirationTime":"2021-06-24T23:36:02Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106240010003056","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-24T21:35:14Z","modifiedDate":"2021-07-01T21:35:15Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637601387970473303","name":"E2ETest637601387970473303","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 946","lastName":"last 998","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"403101","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-06-24T20:40:07Z","expirationTime":"2021-06-24T22:40:52Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106240010002924","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-24T20:40:07Z","modifiedDate":"2021-07-01T20:40:09Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2106230010002630","name":"2106230010002630","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-23T18:28:58Z","expirationTime":"2021-06-23T22:28:58Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106230010002630","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-23T18:28:58Z","modifiedDate":"2021-06-30T18:28:59Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2106230010002629","name":"2106230010002629","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-23T18:28:42Z","expirationTime":"2021-06-23T22:28:42Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106230010002629","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-23T18:28:42Z","modifiedDate":"2021-06-30T18:28:43Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2106190010000126","name":"2106190010000126","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-19T05:22:01Z","expirationTime":"2021-06-21T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106190010000126","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-19T05:22:01Z","modifiedDate":"2021-06-28T13:00:03Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2106190010000125","name":"2106190010000125","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-19T05:21:42Z","expirationTime":"2021-06-21T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106190010000125","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-19T05:21:42Z","modifiedDate":"2021-06-28T13:00:01Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637595764262480730","name":"E2ETest637595764262480730","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - name 8138","lastName":"last name 3554","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"613684","preferredTimeZone":"Pacific - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-06-18T01:27:28Z","expirationTime":"2021-06-18T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106180010000098","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-18T01:27:28Z","modifiedDate":"2021-06-25T13:00:02Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2106170010000613","name":"2106170010000613","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-17T07:11:36Z","expirationTime":"2021-06-17T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106170010000613","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-17T07:11:36Z","modifiedDate":"2021-06-24T13:00:04Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2106170010000603","name":"2106170010000603","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-17T07:08:58Z","expirationTime":"2021-06-17T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106170010000603","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-17T07:08:58Z","modifiedDate":"2021-06-24T13:00:05Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E73399CD64%2522%252C%2522max%2522%253A%252205C1E7673399CA%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-06-17T07%253A08%253A58Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252B94j4AAACgDg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-06-24T23%253A07%253A01Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '14531' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E73399CD64%2522%252C%2522max%2522%253A%252205C1E7673399CA%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-06-17T07%253A08%253A58Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252B94j4AAACgDg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-06-24T23%253A07%253A01Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2106170010000183","name":"2106170010000183","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-17T02:16:48Z","expirationTime":"2021-06-17T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106170010000183","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-17T02:16:48Z","modifiedDate":"2021-06-24T13:00:02Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2106170010000176","name":"2106170010000176","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-17T02:15:21Z","expirationTime":"2021-06-17T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106170010000176","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-17T02:15:21Z","modifiedDate":"2021-06-24T13:00:01Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2106170010000055","name":"2106170010000055","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-17T00:51:42Z","expirationTime":"2021-06-17T16:52:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106170010000055","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-17T00:51:42Z","modifiedDate":"2021-06-24T00:51:44Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2106170010000049","name":"2106170010000049","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-17T00:50:16Z","expirationTime":"2021-06-17T16:51:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106170010000049","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-17T00:50:16Z","modifiedDate":"2021-06-24T00:50:17Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637593865647385215","name":"E2ETest637593865647385215","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - name 5252","lastName":"last name 6041","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"750083","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-06-15T20:42:54Z","expirationTime":"2021-06-15T22:43:38Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106150010003397","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-15T20:42:54Z","modifiedDate":"2021-06-22T20:42:55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637593858243244290","name":"E2ETest637593858243244290","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 244","lastName":"last 247","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"565141","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-06-15T20:30:41Z","expirationTime":"2021-06-15T22:31:22Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106150010003351","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-15T20:30:41Z","modifiedDate":"2021-06-22T20:30:42Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2106150010001393","name":"2106150010001393","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-15T09:55:42Z","expirationTime":"2021-06-15T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106150010001393","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-15T09:55:42Z","modifiedDate":"2021-06-22T13:06:31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2106150010001390","name":"2106150010001390","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-15T09:55:05Z","expirationTime":"2021-06-15T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106150010001390","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-15T09:55:05Z","modifiedDate":"2021-06-22T13:00:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2106150010000126","name":"2106150010000126","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-15T00:57:11Z","expirationTime":"2021-06-15T16:58:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106150010000126","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-15T00:57:11Z","modifiedDate":"2021-06-22T00:57:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2106150010000064","name":"2106150010000064","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-15T00:26:23Z","expirationTime":"2021-06-15T16:27:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106150010000064","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-15T00:26:23Z","modifiedDate":"2021-06-22T00:26:25Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1ED673399CC%2522%252C%2522max%2522%253A%252205C1EDCD673398%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-06-15T00%253A26%253A23Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8kuEAAAAAgCQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-06-17T07%253A08%253A58Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '14170' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1ED673399CC%2522%252C%2522max%2522%253A%252205C1EDCD673398%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-06-15T00%253A26%253A23Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8kuEAAAAAgCQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-06-17T07%253A08%253A58Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2106140010003443","name":"2106140010003443","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-14T22:52:27Z","expirationTime":"2021-06-15T14:53:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106140010003443","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-14T22:52:27Z","modifiedDate":"2021-06-21T22:52:28Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2106140010003438","name":"2106140010003438","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-14T22:49:26Z","expirationTime":"2021-06-15T14:50:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106140010003438","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-14T22:49:26Z","modifiedDate":"2021-06-21T22:49:27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2106100010003559","name":"2106100010003559","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-10T23:42:39Z","expirationTime":"2021-06-11T15:43:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106100010003559","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-10T23:42:39Z","modifiedDate":"2021-06-18T23:50:16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2106100010003558","name":"2106100010003558","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-10T23:42:16Z","expirationTime":"2021-06-11T15:43:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106100010003558","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-10T23:42:16Z","modifiedDate":"2021-06-18T23:50:16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2106100010000609","name":"2106100010000609","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-10T05:18:53Z","expirationTime":"2021-06-10T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106100010000609","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-10T05:18:53Z","modifiedDate":"2021-06-18T23:49:42Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2106100010000607","name":"2106100010000607","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-10T05:18:26Z","expirationTime":"2021-06-10T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106100010000607","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-10T05:18:26Z","modifiedDate":"2021-06-18T23:49:46Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121060921003105","name":"121060921003105","type":"Microsoft.Support/supportTickets","properties":{"description":"test - case please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","lastName":"lu","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"Eastern - Standard Time","country":"AUT","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-06-10T06:00:00Z","expirationTime":"2021-06-10T10:00:00Z","slaMinutes":240},"supportEngineer":{"emailAddress":"adtakle@microsoft.com"},"supportPlanType":"Premier","supportTicketId":"121060921003105","title":"test - case please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-09T21:04:51Z","modifiedDate":"2021-06-18T23:50:05Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121060821002932","name":"121060821002932","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-08T21:30:41Z","expirationTime":"2021-06-09T13:30:41Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121060821002932","title":"Test - case solutions tab","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-08T21:30:41Z","modifiedDate":"2021-06-15T21:30:42Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121060821002925","name":"121060821002925","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","lastName":"lu","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"Eastern - Standard Time","country":"AUT","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-08T21:28:21Z","expirationTime":"2021-06-09T10:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121060821002925","title":"Test - ticket, details tab","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-08T21:28:21Z","modifiedDate":"2021-06-18T23:50:04Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637587716341759614","name":"E2ETest637587716341759614","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - name 5352","lastName":"last name 2018","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"771507","preferredTimeZone":"Pacific - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-06-08T17:54:04Z","expirationTime":"2021-06-08T19:54:54Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106080010002464","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-08T17:54:04Z","modifiedDate":"2021-06-18T23:49:46Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1BFFFFFFFF0%2522%252C%2522max%2522%253A%252205C1C399CD6730%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-06-08T17%253A54%253A04Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8asEAAAAAgBw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-06-15T00%253A26%253A23Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '13928' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1BFFFFFFFF0%2522%252C%2522max%2522%253A%252205C1C399CD6730%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-06-08T17%253A54%253A04Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8asEAAAAAgBw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-06-15T00%253A26%253A23Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637587714558171217","name":"E2ETest637587714558171217","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 332","lastName":"last 72","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"088654","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-06-08T17:51:19Z","expirationTime":"2021-06-08T19:51:57Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106080010002455","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-08T17:51:19Z","modifiedDate":"2021-06-18T23:50:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637587354527038291","name":"E2ETest637587354527038291","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 390","lastName":"last 543","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"707602","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-06-08T07:51:04Z","expirationTime":"2021-06-08T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106080010000814","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-08T07:51:04Z","modifiedDate":"2021-06-18T23:49:51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637587196372055888","name":"E2ETest637587196372055888","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 861","lastName":"last 519","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"422754","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-06-08T03:27:39Z","expirationTime":"2021-06-08T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106080010000330","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-08T03:27:39Z","modifiedDate":"2021-06-18T23:49:53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121060521000049","name":"121060521000049","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","lastName":"test","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-05T01:41:12Z","expirationTime":"2021-06-07T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121060521000049","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-05T01:41:12Z","modifiedDate":"2021-06-12T01:41:13Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121060421001506","name":"121060421001506","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","lastName":"test","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-04T16:11:41Z","expirationTime":"2021-06-04T20:11:41Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121060421001506","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-04T16:11:41Z","modifiedDate":"2021-06-11T16:11:42Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2106030010003433","name":"2106030010003433","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-03T23:24:37Z","expirationTime":"2021-06-04T15:25:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106030010003433","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-03T23:24:37Z","modifiedDate":"2021-06-18T23:50:09Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2106030010003431","name":"2106030010003431","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-03T23:23:55Z","expirationTime":"2021-06-04T15:24:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106030010003431","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-03T23:23:55Z","modifiedDate":"2021-06-18T23:50:01Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121060321002909","name":"121060321002909","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","lastName":"test","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-03T19:12:54Z","expirationTime":"2021-06-03T23:12:54Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121060321002909","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-03T19:12:54Z","modifiedDate":"2021-06-10T19:12:54Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121060221003146","name":"121060221003146","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","lastName":"test","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-02T21:53:05Z","expirationTime":"2021-06-03T13:53:05Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121060221003146","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-02T21:53:05Z","modifiedDate":"2021-06-09T21:53:06Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2106020010000915","name":"2106020010000915","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-02T08:11:43Z","expirationTime":"2021-06-02T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106020010000915","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-02T08:11:43Z","modifiedDate":"2021-06-18T23:50:00Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1DF3399CD60%2522%252C%2522max%2522%253A%252205C1DFFFFFFFFC%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-06-02T08%253A11%253A43Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9rqUAAAADAAA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-06-08T17%253A54%253A04Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '14827' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1DF3399CD60%2522%252C%2522max%2522%253A%252205C1DFFFFFFFFC%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-06-02T08%253A11%253A43Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9rqUAAAADAAA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-06-08T17%253A54%253A04Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2106020010000912","name":"2106020010000912","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-02T08:11:19Z","expirationTime":"2021-06-02T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106020010000912","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-02T08:11:19Z","modifiedDate":"2021-06-18T23:49:46Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2106020010000439","name":"2106020010000439","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-02T04:14:55Z","expirationTime":"2021-06-02T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106020010000439","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-02T04:14:55Z","modifiedDate":"2021-06-18T23:49:52Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2106020010000436","name":"2106020010000436","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-06-02T04:14:36Z","expirationTime":"2021-06-02T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106020010000436","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-02T04:14:36Z","modifiedDate":"2021-06-18T23:50:08Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637581894223319268","name":"E2ETest637581894223319268","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - name 6862","lastName":"last name 5014","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"872357","preferredTimeZone":"Pacific - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-06-02T00:10:33Z","expirationTime":"2021-06-02T14:12:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106020010000027","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-02T00:10:33Z","modifiedDate":"2021-06-18T23:49:58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637581820515474617","name":"E2ETest637581820515474617","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 570","lastName":"last 135","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"145421","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-06-01T22:07:42Z","expirationTime":"2021-06-02T00:08:28Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106010010003377","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-01T22:07:42Z","modifiedDate":"2021-06-18T23:49:46Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637581795328301782","name":"E2ETest637581795328301782","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 825","lastName":"last 665","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"330247","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-06-01T21:25:44Z","expirationTime":"2021-06-01T23:26:29Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106010010003254","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-01T21:25:44Z","modifiedDate":"2021-06-18T23:49:48Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637581647734231823","name":"E2ETest637581647734231823","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 658","lastName":"last 477","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"457118","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-06-01T17:19:45Z","expirationTime":"2021-06-01T19:20:32Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2106010010002577","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-06-01T17:19:45Z","modifiedDate":"2021-06-18T23:49:54Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121052721001859","name":"121052721001859","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","lastName":"test","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-27T15:49:49Z","expirationTime":"2021-05-27T19:49:49Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121052721001859","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-27T15:49:49Z","modifiedDate":"2021-06-03T15:49:50Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637576868834687223","name":"E2ETest637576868834687223","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - name 8062","lastName":"last name 2896","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"202886","preferredTimeZone":"Pacific - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-05-27T04:34:52Z","expirationTime":"2021-05-27T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105270010000469","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-27T04:34:52Z","modifiedDate":"2021-06-18T23:49:53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637576861624984828","name":"E2ETest637576861624984828","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 268","lastName":"last 426","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"247348","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-05-27T04:22:59Z","expirationTime":"2021-05-27T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105270010000448","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-27T04:22:59Z","modifiedDate":"2021-06-18T23:50:11Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E7FFFFFFFE%2522%252C%2522max%2522%253A%252205C1E9673399CA%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-05-27T04%253A22%253A59Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8InkAAAAAgDA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-06-02T08%253A11%253A43Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '15645' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:37 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E7FFFFFFFE%2522%252C%2522max%2522%253A%252205C1E9673399CA%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-05-27T04%253A22%253A59Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8InkAAAAAgDA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-06-02T08%253A11%253A43Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121052721000143","name":"121052721000143","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-27T13:00:00Z","expirationTime":"2021-05-27T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121052721000143","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-27T01:12:26Z","modifiedDate":"2021-06-03T01:12:27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105260040007721","name":"2105260040007721","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","lastName":"lu","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"AUT","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-26T23:31:47Z","expirationTime":"2021-05-27T10:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105260040007721","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-26T23:31:47Z","modifiedDate":"2021-06-18T23:49:55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121052621002601","name":"121052621002601","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-26T19:31:30Z","expirationTime":"2021-05-26T23:31:30Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121052621002601","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-26T19:31:30Z","modifiedDate":"2021-06-02T19:31:32Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121052521003293","name":"121052521003293","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-25T20:59:25Z","expirationTime":"2021-05-26T00:59:25Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121052521003293","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-25T20:59:25Z","modifiedDate":"2021-06-01T20:59:27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105250040006487","name":"2105250040006487","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","lastName":"lu","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"AUT","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-25T20:48:00Z","expirationTime":"2021-05-26T10:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105250040006487","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-25T20:48:00Z","modifiedDate":"2021-06-18T23:50:08Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121052521002850","name":"121052521002850","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-25T18:30:55Z","expirationTime":"2021-05-25T22:30:55Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121052521002850","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-25T18:30:55Z","modifiedDate":"2021-06-01T18:30:56Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105250010002746","name":"2105250010002746","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-25T17:56:50Z","expirationTime":"2021-05-25T21:56:50Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105250010002746","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-25T17:56:50Z","modifiedDate":"2021-06-18T23:49:55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105250010002743","name":"2105250010002743","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-25T17:56:18Z","expirationTime":"2021-05-25T21:56:18Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105250010002743","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-25T17:56:18Z","modifiedDate":"2021-06-18T23:49:43Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121052521002609","name":"121052521002609","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-25T17:10:39Z","expirationTime":"2021-05-25T21:10:39Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121052521002609","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-25T17:10:39Z","modifiedDate":"2021-06-01T17:10:40Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105240010002896","name":"2105240010002896","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-24T22:26:23Z","expirationTime":"2021-05-25T14:27:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105240010002896","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-24T22:26:23Z","modifiedDate":"2021-06-18T23:50:01Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1DFFFFFFFFC%2522%252C%2522max%2522%253A%252205C1E13399CD64%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-05-24T22%253A26%253A23Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BQ0z4AAACgCA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-05-27T04%253A22%253A59Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '13930' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:37 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1DFFFFFFFFC%2522%252C%2522max%2522%253A%252205C1E13399CD64%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-05-24T22%253A26%253A23Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BQ0z4AAACgCA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-05-27T04%253A22%253A59Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105240010002893","name":"2105240010002893","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-24T22:25:43Z","expirationTime":"2021-05-25T14:26:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105240010002893","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-24T22:25:43Z","modifiedDate":"2021-06-18T23:50:08Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105240040005643","name":"2105240040005643","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","lastName":"lu","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"AUT","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-24T20:50:13Z","expirationTime":"2021-05-25T10:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105240040005643","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-24T20:50:13Z","modifiedDate":"2021-06-18T23:50:06Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105240040005288","name":"2105240040005288","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","lastName":"lu","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"AUT","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-24T19:56:43Z","expirationTime":"2021-05-25T10:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105240040005288","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-24T19:56:43Z","modifiedDate":"2021-06-18T23:50:02Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105220010000323","name":"2105220010000323","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-22T18:14:38Z","expirationTime":"2021-05-24T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105220010000323","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-22T18:14:38Z","modifiedDate":"2021-06-18T23:50:01Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105220010000322","name":"2105220010000322","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-22T18:14:14Z","expirationTime":"2021-05-24T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105220010000322","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-22T18:14:14Z","modifiedDate":"2021-06-18T23:50:09Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105220010000078","name":"2105220010000078","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-22T02:51:17Z","expirationTime":"2021-05-24T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105220010000078","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-22T02:51:17Z","modifiedDate":"2021-06-18T23:49:48Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105220010000077","name":"2105220010000077","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-22T02:50:42Z","expirationTime":"2021-05-24T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105220010000077","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-22T02:50:42Z","modifiedDate":"2021-06-18T23:50:16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105210040005609","name":"2105210040005609","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","lastName":"lu","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"AUT","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-21T19:36:03Z","expirationTime":"2021-05-25T10:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105210040005609","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-21T19:36:03Z","modifiedDate":"2021-06-18T23:49:56Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105200040007114","name":"2105200040007114","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","lastName":"lu","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"AUT","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-20T23:45:10Z","expirationTime":"2021-05-21T10:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105200040007114","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-20T23:45:10Z","modifiedDate":"2021-06-18T23:50:15Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105200040006793","name":"2105200040006793","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","lastName":"lu","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"AUT","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-20T21:50:37Z","expirationTime":"2021-05-21T10:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105200040006793","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-20T21:50:37Z","modifiedDate":"2021-06-18T23:50:16Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EF673399CC%2522%252C%2522max%2522%253A%252205C1EF99CD6732%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-05-20T21%253A50%253A37Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8i0z4AAACgAg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-05-24T22%253A26%253A23Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '13841' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:38 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EF673399CC%2522%252C%2522max%2522%253A%252205C1EF99CD6732%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-05-20T21%253A50%253A37Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8i0z4AAACgAg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-05-24T22%253A26%253A23Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105200040006548","name":"2105200040006548","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","lastName":"lu","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","phoneNumber":"123215354","preferredTimeZone":"GMT - Standard Time","country":"AUT","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-20T20:56:54Z","expirationTime":"2021-05-21T10:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105200040006548","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-20T20:56:54Z","modifiedDate":"2021-06-18T23:50:14Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121052021002441","name":"121052021002441","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-20T15:37:34Z","expirationTime":"2021-05-20T19:37:34Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121052021002441","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-20T15:37:34Z","modifiedDate":"2021-05-27T15:37:35Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121051921001794","name":"121051921001794","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-19T19:12:20Z","expirationTime":"2021-05-19T23:12:20Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121051921001794","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-19T19:12:20Z","modifiedDate":"2021-05-26T19:12:22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105190040005403","name":"2105190040005403","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"nichheda@microsoft.com","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-19T16:30:02Z","expirationTime":"2021-05-19T20:30:02Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105190040005403","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-19T16:30:02Z","modifiedDate":"2021-06-18T23:49:56Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121051821002638","name":"121051821002638","type":"Microsoft.Support/supportTickets","properties":{"description":"This - support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"aashu@litwarecorp.com","preferredContactMethod":"Email","primaryEmailAddress":"aashu@litwarecorp.com","preferredTimeZone":"Dateline - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-18T19:55:48Z","expirationTime":"2021-05-18T23:55:48Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Basic","supportTicketId":"121051821002638","title":"test","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-18T19:55:48Z","modifiedDate":"2021-05-25T19:55:49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637569095948237557","name":"E2ETest637569095948237557","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - name 5840","lastName":"last name 9067","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"840532","preferredTimeZone":"Pacific - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-05-18T04:40:13Z","expirationTime":"2021-05-18T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105180010000482","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-18T04:40:13Z","modifiedDate":"2021-06-18T23:50:03Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105170010001587","name":"2105170010001587","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-17T14:26:43Z","expirationTime":"2021-05-17T18:26:43Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105170010001587","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-17T14:26:43Z","modifiedDate":"2021-06-18T23:49:50Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105170010001585","name":"2105170010001585","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-17T14:26:17Z","expirationTime":"2021-05-17T18:26:17Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105170010001585","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-17T14:26:17Z","modifiedDate":"2021-06-18T23:49:44Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105150010000095","name":"2105150010000095","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-15T03:41:12Z","expirationTime":"2021-05-17T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105150010000095","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-15T03:41:12Z","modifiedDate":"2021-06-18T23:50:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105150010000093","name":"2105150010000093","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-15T03:40:39Z","expirationTime":"2021-05-17T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105150010000093","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-15T03:40:39Z","modifiedDate":"2021-06-18T23:49:56Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1D73399CD64%2522%252C%2522max%2522%253A%252205C1D799CD6730%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-05-15T03%253A40%253A39Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8Lzj4AAABgCA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-05-20T21%253A50%253A37Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '14065' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1D73399CD64%2522%252C%2522max%2522%253A%252205C1D799CD6730%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-05-15T03%253A40%253A39Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8Lzj4AAABgCA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-05-20T21%253A50%253A37Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105140010002576","name":"2105140010002576","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-14T21:23:10Z","expirationTime":"2021-05-17T13:24:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105140010002576","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-14T21:23:10Z","modifiedDate":"2021-06-18T23:49:57Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105140010002573","name":"2105140010002573","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-14T21:22:37Z","expirationTime":"2021-05-17T13:23:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105140010002573","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-14T21:22:37Z","modifiedDate":"2021-06-18T23:50:09Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105140010000580","name":"2105140010000580","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-14T05:53:13Z","expirationTime":"2021-05-14T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105140010000580","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-14T05:53:13Z","modifiedDate":"2021-06-18T23:49:58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105140010000531","name":"2105140010000531","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-14T05:25:16Z","expirationTime":"2021-05-14T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105140010000531","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-14T05:25:16Z","modifiedDate":"2021-06-18T23:49:44Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105140010000155","name":"2105140010000155","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-14T01:26:58Z","expirationTime":"2021-05-14T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105140010000155","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-14T01:26:58Z","modifiedDate":"2021-06-18T23:49:52Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105140010000150","name":"2105140010000150","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-14T01:24:12Z","expirationTime":"2021-05-14T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105140010000150","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-14T01:24:12Z","modifiedDate":"2021-06-18T23:49:50Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105140010000144","name":"2105140010000144","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-14T01:23:13Z","expirationTime":"2021-05-14T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105140010000144","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-14T01:23:13Z","modifiedDate":"2021-06-18T23:50:09Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105130040006176","name":"2105130040006176","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"nichheda@microsoft.com","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-13T19:53:12Z","expirationTime":"2021-05-13T23:53:12Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105130040006176","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-13T19:53:12Z","modifiedDate":"2021-06-18T23:50:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637564440052186746","name":"E2ETest637564440052186746","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - name 7539","lastName":"last name 2404","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"721205","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-05-12T19:20:14Z","expirationTime":"2021-05-12T21:21:36Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105120010002780","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-12T19:20:14Z","modifiedDate":"2021-06-18T23:49:54Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637564319855412329","name":"E2ETest637564319855412329","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 916","lastName":"last 738","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"262561","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-05-12T16:00:06Z","expirationTime":"2021-05-12T18:00:39Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105120010002061","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-12T16:00:06Z","modifiedDate":"2021-06-18T23:49:43Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1A9CD673380%2522%252C%2522max%2522%253A%252205C1B399CD6720%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-05-12T16%253A00%253A06Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-7ikAAAAAgDQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-05-15T03%253A40%253A39Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '14200' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1A9CD673380%2522%252C%2522max%2522%253A%252205C1B399CD6720%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-05-12T16%253A00%253A06Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-7ikAAAAAgDQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-05-15T03%253A40%253A39Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105120010000996","name":"2105120010000996","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-12T07:55:25Z","expirationTime":"2021-05-12T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105120010000996","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-12T07:55:25Z","modifiedDate":"2021-06-18T23:49:49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105120010000989","name":"2105120010000989","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-12T07:53:23Z","expirationTime":"2021-05-12T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105120010000989","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-12T07:53:23Z","modifiedDate":"2021-06-18T23:49:49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105110010000489","name":"2105110010000489","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-11T03:12:05Z","expirationTime":"2021-05-11T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105110010000489","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-11T03:12:05Z","modifiedDate":"2021-06-18T23:49:46Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105110010000488","name":"2105110010000488","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-11T03:11:30Z","expirationTime":"2021-05-11T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105110010000488","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-11T03:11:30Z","modifiedDate":"2021-06-18T23:50:05Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105100010001210","name":"2105100010001210","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-10T12:49:30Z","expirationTime":"2021-05-10T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105100010001210","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-10T12:49:30Z","modifiedDate":"2021-06-18T23:50:06Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105100010001200","name":"2105100010001200","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-10T12:46:38Z","expirationTime":"2021-05-10T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105100010001200","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-10T12:46:38Z","modifiedDate":"2021-06-18T23:50:13Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105090010000052","name":"2105090010000052","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-09T03:30:23Z","expirationTime":"2021-05-10T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105090010000052","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-09T03:30:23Z","modifiedDate":"2021-06-18T23:50:18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105090010000051","name":"2105090010000051","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-09T03:29:57Z","expirationTime":"2021-05-10T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105090010000051","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-09T03:29:57Z","modifiedDate":"2021-06-18T23:49:55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105060010002896","name":"2105060010002896","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-06T22:12:12Z","expirationTime":"2021-05-07T14:13:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105060010002896","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-06T22:12:12Z","modifiedDate":"2021-06-18T23:50:10Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105060010002895","name":"2105060010002895","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-06T22:11:51Z","expirationTime":"2021-05-07T14:12:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105060010002895","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-06T22:11:51Z","modifiedDate":"2021-08-03T19:43:27Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E1CD673398%2522%252C%2522max%2522%253A%252205C1E1FFFFFFFE%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-05-06T22%253A11%253A51Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-Exj4AAACgCQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-05-12T16%253A00%253A06Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '13466' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E1CD673398%2522%252C%2522max%2522%253A%252205C1E1FFFFFFFE%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-05-06T22%253A11%253A51Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-Exj4AAACgCQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-05-12T16%253A00%253A06Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105060040006139","name":"2105060040006139","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"nichheda@microsoft.com","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-06T19:30:22Z","expirationTime":"2021-05-06T23:30:22Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105060040006139","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-06T19:30:22Z","modifiedDate":"2021-06-18T23:49:50Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105060040005783","name":"2105060040005783","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"nichheda@microsoft.com","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-06T18:44:15Z","expirationTime":"2021-05-06T22:44:15Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105060040005783","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-06T18:44:15Z","modifiedDate":"2021-06-18T23:50:08Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105060040005433","name":"2105060040005433","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"nichheda@microsoft.com","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-06T17:56:33Z","expirationTime":"2021-05-06T21:56:33Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105060040005433","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-06T17:56:33Z","modifiedDate":"2021-06-18T23:49:49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105060040000277","name":"2105060040000277","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"nichheda@microsoft.com","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-06T01:58:48Z","expirationTime":"2021-05-06T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105060040000277","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-06T01:58:48Z","modifiedDate":"2021-06-18T23:49:50Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637557647373016539","name":"E2ETest637557647373016539","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 517","lastName":"last 360","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"126076","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-05-04T22:39:16Z","expirationTime":"2021-05-05T00:39:48Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105040010002331","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-04T22:39:16Z","modifiedDate":"2021-06-18T23:49:56Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105040040006736","name":"2105040040006736","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"nichheda@microsoft.com","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-04T19:45:17Z","expirationTime":"2021-05-04T23:45:17Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105040040006736","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-04T19:45:17Z","modifiedDate":"2021-06-18T23:49:56Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637556811818876813","name":"E2ETest637556811818876813","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 468","lastName":"last 874","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"151268","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-05-03T23:26:37Z","expirationTime":"2021-05-04T13:28:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105030010002485","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-03T23:26:37Z","modifiedDate":"2021-06-18T23:50:15Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105030010002319","name":"2105030010002319","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-03T22:06:19Z","expirationTime":"2021-05-04T14:07:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105030010002319","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-03T22:06:19Z","modifiedDate":"2021-06-18T23:49:44Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105030010002318","name":"2105030010002318","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-03T22:05:41Z","expirationTime":"2021-05-04T14:06:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105030010002318","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-03T22:05:41Z","modifiedDate":"2021-06-18T23:49:46Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105030010001816","name":"2105030010001816","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"nichheda@microsoft.com","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-03T19:08:03Z","expirationTime":"2021-05-03T23:08:03Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105030010001816","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-03T19:08:03Z","modifiedDate":"2021-06-18T23:49:55Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1D799CD6730%2522%252C%2522max%2522%253A%252205C1D7FFFFFFFC%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-05-03T19%253A08%253A03Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BKxj4AAABgBA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-05-06T22%253A11%253A51Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '14373' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1D799CD6730%2522%252C%2522max%2522%253A%252205C1D7FFFFFFFC%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-05-03T19%253A08%253A03Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BKxj4AAABgBA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-05-06T22%253A11%253A51Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105010010000053","name":"2105010010000053","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"nichheda@microsoft.com","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-01T01:25:17Z","expirationTime":"2021-05-03T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105010010000053","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-01T01:25:17Z","modifiedDate":"2021-06-18T23:49:53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2105010010000015","name":"2105010010000015","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"nichheda@microsoft.com","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-05-01T00:20:35Z","expirationTime":"2021-05-03T16:21:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2105010010000015","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-05-01T00:20:35Z","modifiedDate":"2021-06-18T23:49:53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104290010000799","name":"2104290010000799","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"nichheda@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-29T09:24:09Z","expirationTime":"2021-04-29T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104290010000799","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-29T09:24:09Z","modifiedDate":"2021-06-18T23:50:15Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637551692142025297","name":"E2ETest637551692142025297","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 806","lastName":"last 88","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"617731","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-04-28T01:13:52Z","expirationTime":"2021-04-28T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104280040000308","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-28T01:13:52Z","modifiedDate":"2021-06-18T23:50:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637551534807812702","name":"E2ETest637551534807812702","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 338","lastName":"last 50","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"717108","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-04-27T20:51:27Z","expirationTime":"2021-04-27T22:52:13Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104270040010115","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-27T20:51:27Z","modifiedDate":"2021-06-18T23:50:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637551275264602003","name":"E2ETest637551275264602003","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 126","lastName":"last 100","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"074464","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-04-27T20:38:56Z","expirationTime":"2021-04-27T22:39:43Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104270040009973","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-27T20:38:56Z","modifiedDate":"2021-06-18T23:50:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637551438261427297","name":"E2ETest637551438261427297","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 214","lastName":"last 583","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"377275","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-04-27T18:10:35Z","expirationTime":"2021-04-27T20:12:15Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104270040008367","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-27T18:10:35Z","modifiedDate":"2021-06-18T23:50:09Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637551418209031786","name":"E2ETest637551418209031786","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 7","lastName":"last 471","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"108546","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-04-27T17:37:08Z","expirationTime":"2021-04-27T19:38:18Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104270040007998","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-27T17:37:08Z","modifiedDate":"2021-06-18T23:50:11Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637551416118606104","name":"E2ETest637551416118606104","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 726","lastName":"last 445","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"332361","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-04-27T17:33:42Z","expirationTime":"2021-04-27T19:35:36Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104270040007962","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-27T17:33:42Z","modifiedDate":"2021-06-18T23:50:11Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637551011229091934","name":"E2ETest637551011229091934","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 169","lastName":"last 854","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"036804","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-04-27T06:19:04Z","expirationTime":"2021-04-27T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104270040001259","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-27T06:19:04Z","modifiedDate":"2021-06-18T23:50:03Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1DD673399C8%2522%252C%2522max%2522%253A%252205C1DF3399CD60%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-04-27T06%253A19%253A04Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252B-eEAAAABADw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-05-03T19%253A08%253A03Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '16000' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1DD673399C8%2522%252C%2522max%2522%253A%252205C1DF3399CD60%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-04-27T06%253A19%253A04Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252B-eEAAAABADw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-05-03T19%253A08%253A03Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104270010000325","name":"2104270010000325","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-27T01:12:35Z","expirationTime":"2021-04-27T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104270010000325","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-27T01:12:35Z","modifiedDate":"2021-06-18T23:50:02Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104270010000320","name":"2104270010000320","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-27T01:11:51Z","expirationTime":"2021-04-27T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104270010000320","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-27T01:11:51Z","modifiedDate":"2021-06-18T23:50:11Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104260010010080","name":"2104260010010080","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"nichheda@microsoft.com","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-26T22:18:28Z","expirationTime":"2021-04-27T14:19:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104260010010080","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-26T22:18:28Z","modifiedDate":"2021-06-18T23:49:49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104240010001116","name":"2104240010001116","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"nichheda@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-24T22:48:11Z","expirationTime":"2021-04-26T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104240010001116","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-24T22:48:11Z","modifiedDate":"2021-06-18T23:50:09Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104240010000337","name":"2104240010000337","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"nichheda@microsoft.com","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-24T04:58:01Z","expirationTime":"2021-04-26T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104240010000337","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-24T04:58:01Z","modifiedDate":"2021-06-18T23:50:04Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104230010000886","name":"2104230010000886","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-23T03:13:30Z","expirationTime":"2021-04-23T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104230010000886","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-23T03:13:30Z","modifiedDate":"2021-06-18T23:49:58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104230010000884","name":"2104230010000884","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-23T03:12:53Z","expirationTime":"2021-04-23T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104230010000884","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-23T03:12:53Z","modifiedDate":"2021-06-18T23:49:49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104210010010555","name":"2104210010010555","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"nichheda@microsoft.com","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-21T22:36:50Z","expirationTime":"2021-04-22T14:37:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104210010010555","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-21T22:36:50Z","modifiedDate":"2021-06-18T23:49:58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637545505265091568","name":"E2ETest637545505265091568","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 192","lastName":"last 135","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"216613","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-04-20T21:22:25Z","expirationTime":"2021-04-20T23:23:31Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104200010010589","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-20T21:22:25Z","modifiedDate":"2021-06-18T23:50:06Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104200010010190","name":"2104200010010190","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"nichheda@microsoft.com","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-20T20:41:31Z","expirationTime":"2021-04-21T00:41:31Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104200010010190","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-20T20:41:31Z","modifiedDate":"2021-06-18T23:49:51Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1CF3399CD60%2522%252C%2522max%2522%253A%252205C1CFFFFFFFF8%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-04-20T20%253A41%253A31Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8BvT4AAACgAw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-04-27T06%253A19%253A04Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '13991' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1CF3399CD60%2522%252C%2522max%2522%253A%252205C1CFFFFFFFF8%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-04-20T20%253A41%253A31Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8BvT4AAACgAw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-04-27T06%253A19%253A04Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104200010001193","name":"2104200010001193","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-20T04:23:05Z","expirationTime":"2021-04-20T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104200010001193","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-20T04:23:05Z","modifiedDate":"2021-06-18T23:50:05Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104200010001188","name":"2104200010001188","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-20T04:22:25Z","expirationTime":"2021-04-20T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104200010001188","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-20T04:22:25Z","modifiedDate":"2021-06-18T23:49:57Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104200010000381","name":"2104200010000381","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"nichheda@microsoft.com","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-20T01:24:51Z","expirationTime":"2021-04-20T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104200010000381","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-20T01:24:51Z","modifiedDate":"2021-06-18T23:49:53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104170010000035","name":"2104170010000035","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"nichheda@microsoft.com","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-17T00:44:47Z","expirationTime":"2021-04-19T16:45:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104170010000035","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-17T00:44:47Z","modifiedDate":"2021-06-18T23:49:47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104150010006199","name":"2104150010006199","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-15T21:29:02Z","expirationTime":"2021-04-16T13:30:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104150010006199","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-15T21:29:02Z","modifiedDate":"2021-06-18T23:49:42Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104150010006198","name":"2104150010006198","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-15T21:28:41Z","expirationTime":"2021-04-16T13:29:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104150010006198","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-15T21:28:41Z","modifiedDate":"2021-06-18T23:50:16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104140010010200","name":"2104140010010200","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"nichheda@microsoft.com","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-14T22:02:59Z","expirationTime":"2021-04-15T14:03:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104140010010200","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-14T22:02:59Z","modifiedDate":"2021-06-18T23:49:44Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104140010008099","name":"2104140010008099","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-14T18:26:38Z","expirationTime":"2021-04-14T22:26:38Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104140010008099","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-14T18:26:38Z","modifiedDate":"2021-06-18T23:50:14Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104140010008093","name":"2104140010008093","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-14T18:26:05Z","expirationTime":"2021-04-14T22:26:05Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104140010008093","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-14T18:26:05Z","modifiedDate":"2021-06-18T23:49:49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104140010006805","name":"2104140010006805","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"nichheda@microsoft.com","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-14T16:39:14Z","expirationTime":"2021-04-14T20:39:14Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104140010006805","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-14T16:39:14Z","modifiedDate":"2021-06-18T23:50:02Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1DFFFFFFFFC%2522%252C%2522max%2522%253A%252205C1E13399CD64%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-04-14T16%253A39%253A14Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR92uT4AAACgCA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-04-20T20%253A41%253A31Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '13610' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:42 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1DFFFFFFFFC%2522%252C%2522max%2522%253A%252205C1E13399CD64%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-04-14T16%253A39%253A14Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR92uT4AAACgCA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-04-20T20%253A41%253A31Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637539718220804966","name":"E2ETest637539718220804966","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 659","lastName":"last 341","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"088218","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-04-14T04:37:21Z","expirationTime":"2021-04-14T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104140010001096","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-14T04:37:21Z","modifiedDate":"2021-06-18T23:50:09Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104140010000332","name":"2104140010000332","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"nichheda@microsoft.com","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-14T01:26:34Z","expirationTime":"2021-04-14T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104140010000332","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-14T01:26:34Z","modifiedDate":"2021-06-18T23:50:13Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637539017814405067","name":"E2ETest637539017814405067","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - name 1971","lastName":"last name 7066","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"702833","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-04-13T09:09:51Z","expirationTime":"2021-04-13T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104130010000930","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-13T09:09:51Z","modifiedDate":"2021-06-18T23:49:51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637539008951356791","name":"E2ETest637539008951356791","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 497","lastName":"last 227","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"872574","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-04-13T08:55:16Z","expirationTime":"2021-04-13T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104130010000903","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-13T08:55:16Z","modifiedDate":"2021-06-18T23:50:05Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104130010000626","name":"2104130010000626","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"nichheda@microsoft.com","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-13T06:16:57Z","expirationTime":"2021-04-13T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104130010000626","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-13T06:16:57Z","modifiedDate":"2021-06-18T23:49:43Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104130010000357","name":"2104130010000357","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-13T03:20:47Z","expirationTime":"2021-04-13T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104130010000357","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-13T03:20:47Z","modifiedDate":"2021-06-18T23:50:03Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104130010000354","name":"2104130010000354","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-13T03:19:36Z","expirationTime":"2021-04-13T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104130010000354","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-13T03:19:36Z","modifiedDate":"2021-06-18T23:50:07Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104090010002385","name":"2104090010002385","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-09T20:58:56Z","expirationTime":"2021-04-10T00:58:56Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104090010002385","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-09T20:58:56Z","modifiedDate":"2021-06-18T23:49:57Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104090010002371","name":"2104090010002371","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-09T20:57:12Z","expirationTime":"2021-04-10T00:57:12Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104090010002371","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-09T20:57:12Z","modifiedDate":"2021-06-18T23:49:59Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104090010000132","name":"2104090010000132","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-09T01:21:03Z","expirationTime":"2021-04-09T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104090010000132","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-09T01:21:03Z","modifiedDate":"2021-06-18T23:50:03Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E1CD673398%2522%252C%2522max%2522%253A%252205C1E1FFFFFFFE%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-04-09T01%253A21%253A03Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9ZtD4AAACgCQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-04-14T16%253A39%253A14Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '14588' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E1CD673398%2522%252C%2522max%2522%253A%252205C1E1FFFFFFFE%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-04-09T01%253A21%253A03Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9ZtD4AAACgCQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-04-14T16%253A39%253A14Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104090010000129","name":"2104090010000129","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-09T01:20:10Z","expirationTime":"2021-04-09T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104090010000129","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-09T01:20:10Z","modifiedDate":"2021-06-18T23:50:11Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104080010003788","name":"2104080010003788","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-08T20:12:52Z","expirationTime":"2021-04-09T00:12:52Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104080010003788","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-08T20:12:52Z","modifiedDate":"2021-06-18T23:50:16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104080010003781","name":"2104080010003781","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-08T20:11:12Z","expirationTime":"2021-04-09T00:11:12Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104080010003781","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-08T20:11:12Z","modifiedDate":"2021-06-18T23:50:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104080010001083","name":"2104080010001083","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"nichheda@microsoft.com","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-08T07:40:28Z","expirationTime":"2021-04-08T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104080010001083","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-08T07:40:28Z","modifiedDate":"2021-07-30T05:20:19Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104080010000446","name":"2104080010000446","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"nichheda@microsoft.com","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-08T02:46:14Z","expirationTime":"2021-04-08T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104080010000446","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-08T02:46:14Z","modifiedDate":"2021-06-18T23:50:07Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637534174499314877","name":"E2ETest637534174499314877","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 392","lastName":"last 305","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"641302","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-04-07T18:37:37Z","expirationTime":"2021-04-07T20:38:21Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104070010002527","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-07T18:37:37Z","modifiedDate":"2021-06-18T23:50:05Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637534174307874711","name":"E2ETest637534174307874711","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 639","lastName":"last 448","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"248622","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-04-07T18:37:20Z","expirationTime":"2021-04-07T20:38:04Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104070010002526","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-07T18:37:20Z","modifiedDate":"2021-06-18T23:50:16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637533765951924773","name":"E2ETest637533765951924773","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 689","lastName":"last 799","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"654440","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-04-07T07:16:45Z","expirationTime":"2021-04-07T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104070010000763","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-07T07:16:45Z","modifiedDate":"2021-06-18T23:50:06Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637533715327049213","name":"E2ETest637533715327049213","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 423","lastName":"last 904","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"426063","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-04-07T05:52:24Z","expirationTime":"2021-04-07T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104070010000560","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-07T05:52:24Z","modifiedDate":"2021-06-18T23:49:53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637533609336079378","name":"E2ETest637533609336079378","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 562","lastName":"last 189","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"731851","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-04-07T02:55:43Z","expirationTime":"2021-04-07T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104070010000255","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-07T02:55:43Z","modifiedDate":"2021-06-18T23:50:18Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EF99CD6732%2522%252C%2522max%2522%253A%2522FF%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-04-07T02%253A55%253A43Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9fXkAAAAAgBg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-04-09T01%253A21%253A03Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '15256' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EF99CD6732%2522%252C%2522max%2522%253A%2522FF%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-04-07T02%253A55%253A43Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9fXkAAAAAgBg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-04-09T01%253A21%253A03Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637533591147996253","name":"E2ETest637533591147996253","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 997","lastName":"last 969","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"472082","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-04-07T02:25:32Z","expirationTime":"2021-04-07T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104070010000218","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-07T02:25:32Z","modifiedDate":"2021-06-18T23:49:55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104060010003075","name":"2104060010003075","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"nichheda@microsoft.com","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-06T22:22:11Z","expirationTime":"2021-04-07T14:23:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104060010003075","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-06T22:22:11Z","modifiedDate":"2021-06-18T23:50:02Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104060010000125","name":"2104060010000125","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"nichheda@microsoft.com","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-06T01:25:16Z","expirationTime":"2021-04-06T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104060010000125","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-06T01:25:16Z","modifiedDate":"2021-06-18T23:49:46Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104050010002191","name":"2104050010002191","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-05T21:46:56Z","expirationTime":"2021-04-06T13:47:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104050010002191","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-05T21:46:56Z","modifiedDate":"2021-06-18T23:50:18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104050010002187","name":"2104050010002187","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-05T21:45:51Z","expirationTime":"2021-04-06T13:46:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104050010002187","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-05T21:45:51Z","modifiedDate":"2021-06-18T23:49:53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2104050010001734","name":"2104050010001734","type":"Microsoft.Support/supportTickets","properties":{"description":"Test - ticket, please close immediately","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"nichheda@microsoft.com","preferredTimeZone":"GMT - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-04-05T18:41:59Z","expirationTime":"2021-04-05T22:41:59Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2104050010001734","title":"This - is an automated test ticket, please ignore and close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-04-05T18:41:59Z","modifiedDate":"2021-06-18T23:50:07Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637520675544045732","name":"E2ETest637520675544045732","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 629","lastName":"last 777","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"175857","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-03-23T03:39:26Z","expirationTime":"2021-03-23T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2103230010000390","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-23T03:39:26Z","modifiedDate":"2021-06-18T23:50:02Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637520671694645134","name":"E2ETest637520671694645134","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 308","lastName":"last 415","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"057042","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-JP"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-03-23T03:33:12Z","expirationTime":"2021-03-23T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2103230010000373","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-23T03:33:12Z","modifiedDate":"2021-06-18T23:49:57Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2103220010002693","name":"2103220010002693","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-03-22T20:59:25Z","expirationTime":"2021-03-23T00:59:25Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2103220010002693","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-22T20:59:25Z","modifiedDate":"2021-06-18T23:49:59Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637515112182164261","name":"E2ETest637515112182164261","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-03-17T00:07:10Z","expirationTime":"2021-03-17T16:07:10Z","slaMinutes":240},"supportEngineer":{"emailAddress":"stevekl@microsoft.com"},"supportPlanType":"Premier","supportTicketId":"121031721000014","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-17T00:07:10Z","modifiedDate":"2021-06-18T23:50:15Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EDCD673398%2522%252C%2522max%2522%253A%252205C1EF3399CD66%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-03-17T00%253A07%253A10Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BeQEAAAAAgBQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-04-07T02%253A55%253A43Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '14967' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EDCD673398%2522%252C%2522max%2522%253A%252205C1EF3399CD66%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-03-17T00%253A07%253A10Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BeQEAAAAAgBQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-04-07T02%253A55%253A43Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637515078056187417","name":"E2ETest637515078056187417","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-03-16T23:10:13Z","expirationTime":"2021-03-17T15:10:13Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121031621004241","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-16T23:10:13Z","modifiedDate":"2021-06-18T23:50:04Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637515267711625326","name":"E2ETest637515267711625326","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 617","lastName":"last 343","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"177563","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-03-16T21:26:47Z","expirationTime":"2021-03-16T23:26:47Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121031621003948","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-16T21:26:28Z","modifiedDate":"2021-06-18T23:50:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637515170419110499","name":"E2ETest637515170419110499","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 417","lastName":"last 101","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"506278","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-03-16T18:44:40Z","expirationTime":"2021-03-16T20:44:40Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121031621003384","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-16T18:44:22Z","modifiedDate":"2021-06-18T23:50:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121031621001643","name":"121031621001643","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-16T13:00:00Z","expirationTime":"2021-03-16T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121031621001643","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-16T11:29:24Z","modifiedDate":"2021-06-18T23:50:02Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121031621001639","name":"121031621001639","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-16T13:00:00Z","expirationTime":"2021-03-16T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121031621001639","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-16T11:28:30Z","modifiedDate":"2021-06-18T23:50:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637514303910326724","name":"E2ETest637514303910326724","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-03-16T13:00:00Z","expirationTime":"2021-03-16T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121031621000342","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-16T01:40:03Z","modifiedDate":"2021-06-18T23:50:10Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637514302857360665","name":"E2ETest637514302857360665","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-03-16T13:00:00Z","expirationTime":"2021-03-16T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121031621000337","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-16T01:38:15Z","modifiedDate":"2021-06-18T23:50:05Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637514301477339744","name":"E2ETest637514301477339744","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-03-16T13:00:00Z","expirationTime":"2021-03-16T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121031621000330","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-16T01:36:03Z","modifiedDate":"2021-06-18T23:50:17Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121031521002385","name":"121031521002385","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-15T17:43:41Z","expirationTime":"2021-03-15T21:43:41Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121031521002385","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-15T17:43:41Z","modifiedDate":"2021-06-18T23:49:47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121031221000569","name":"121031221000569","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-12T14:00:00Z","expirationTime":"2021-03-12T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121031221000569","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-12T04:32:22Z","modifiedDate":"2021-06-18T23:50:17Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EF3399CD66%2522%252C%2522max%2522%253A%252205C1EF673399CC%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-03-12T04%253A32%253A22.3418804Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR88oz4AAACgDA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-03-17T00%253A07%253A10Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '15492' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EF3399CD66%2522%252C%2522max%2522%253A%252205C1EF673399CC%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-03-12T04%253A32%253A22.3418804Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR88oz4AAACgDA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-03-17T00%253A07%253A10Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121031221000568","name":"121031221000568","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-12T14:00:00Z","expirationTime":"2021-03-12T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121031221000568","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-12T04:30:54Z","modifiedDate":"2021-06-18T23:49:59Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121031121002540","name":"121031121002540","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-11T16:45:15Z","expirationTime":"2021-03-11T20:45:15Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121031121002540","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-11T16:45:15Z","modifiedDate":"2021-06-18T23:49:43Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121031121002535","name":"121031121002535","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-11T16:43:57Z","expirationTime":"2021-03-11T20:43:57Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121031121002535","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-11T16:43:57Z","modifiedDate":"2021-06-18T23:50:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121031121000837","name":"121031121000837","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-11T14:00:00Z","expirationTime":"2021-03-11T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121031121000837","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-11T05:20:47Z","modifiedDate":"2021-06-18T23:50:04Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121031121000835","name":"121031121000835","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-11T14:00:00Z","expirationTime":"2021-03-11T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121031121000835","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-11T05:20:04Z","modifiedDate":"2021-06-18T23:50:17Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121031121000141","name":"121031121000141","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-11T00:37:39Z","expirationTime":"2021-03-11T16:37:39Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121031121000141","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-11T00:37:39Z","modifiedDate":"2021-06-18T23:49:54Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121031121000134","name":"121031121000134","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-11T00:36:10Z","expirationTime":"2021-03-11T16:36:10Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121031121000134","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-11T00:36:10Z","modifiedDate":"2021-06-18T23:50:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637509899561621672","name":"E2ETest637509899561621672","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 701","lastName":"last 280","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"732427","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-03-11T00:20:18Z","expirationTime":"2021-03-11T14:20:18Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121031121000070","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-11T00:19:55Z","modifiedDate":"2021-06-18T23:50:05Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121031021000389","name":"121031021000389","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-10T14:00:00Z","expirationTime":"2021-03-10T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121031021000389","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-10T02:02:14Z","modifiedDate":"2021-06-18T23:49:58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121031021000385","name":"121031021000385","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-10T14:00:00Z","expirationTime":"2021-03-10T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121031021000385","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-10T02:01:28Z","modifiedDate":"2021-06-18T23:50:08Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E7FFFFFFFE%2522%252C%2522max%2522%253A%252205C1E9673399CA%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-03-10T02%253A01%253A28.3499886Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252B3NUAAAAAgDA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-03-12T04%253A32%253A22.3418804Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '13952' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E7FFFFFFFE%2522%252C%2522max%2522%253A%252205C1E9673399CA%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-03-10T02%253A01%253A28.3499886Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252B3NUAAAAAgDA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-03-12T04%253A32%253A22.3418804Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030921004700","name":"121030921004700","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-09T21:27:44Z","expirationTime":"2021-03-10T01:27:44Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030921004700","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-09T21:27:44Z","modifiedDate":"2021-06-18T23:49:46Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030921004695","name":"121030921004695","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-09T21:25:51Z","expirationTime":"2021-03-10T01:25:51Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030921004695","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-09T21:25:51Z","modifiedDate":"2021-06-18T23:50:07Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E7CD673396%2522%252C%2522max%2522%253A%252205C1E7FFFFFFFE%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-03-09T21%253A25%253A51.4651445Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8HoT4AAACgBw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-03-10T02%253A01%253A28.3499886Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '3489' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E7CD673396%2522%252C%2522max%2522%253A%252205C1E7FFFFFFFE%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-03-09T21%253A25%253A51.4651445Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8HoT4AAACgBw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-03-10T02%253A01%253A28.3499886Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637508884434569545","name":"E2ETest637508884434569545","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 339","lastName":"last 663","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"472886","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-03-09T20:07:59Z","expirationTime":"2021-03-09T22:07:59Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030921004453","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-09T20:07:34Z","modifiedDate":"2021-06-18T23:50:01Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637508871280322223","name":"E2ETest637508871280322223","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 678","lastName":"last 326","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"226737","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-03-09T19:46:03Z","expirationTime":"2021-03-09T21:46:03Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030921004361","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-09T19:45:38Z","modifiedDate":"2021-06-18T23:49:58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637508849949173741","name":"E2ETest637508849949173741","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-03-09T19:10:29Z","expirationTime":"2021-03-09T21:10:29Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030921004212","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-09T19:10:04Z","modifiedDate":"2021-06-18T23:50:13Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637508828843615063","name":"E2ETest637508828843615063","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-03-09T18:35:21Z","expirationTime":"2021-03-09T20:35:21Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030921004088","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-09T18:34:58Z","modifiedDate":"2021-06-18T23:50:11Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637508542793343909","name":"E2ETest637508542793343909","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-03-09T14:00:00Z","expirationTime":"2021-03-09T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030921000723","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-09T02:38:09Z","modifiedDate":"2021-06-18T23:49:59Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637508542432145988","name":"E2ETest637508542432145988","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-03-09T14:00:00Z","expirationTime":"2021-03-09T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030921000718","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-09T02:37:34Z","modifiedDate":"2021-06-18T23:50:13Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637508539946237802","name":"E2ETest637508539946237802","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-03-09T14:00:00Z","expirationTime":"2021-03-09T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030921000707","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-09T02:33:21Z","modifiedDate":"2021-06-18T23:49:50Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637508539497761987","name":"E2ETest637508539497761987","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-03-09T14:00:00Z","expirationTime":"2021-03-09T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030921000704","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-09T02:32:58Z","modifiedDate":"2021-06-18T23:50:14Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030521000359","name":"121030521000359","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-05T01:26:37Z","expirationTime":"2021-03-05T17:26:37Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030521000359","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-05T01:26:37Z","modifiedDate":"2021-06-18T23:50:14Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030521000352","name":"121030521000352","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-05T01:24:51Z","expirationTime":"2021-03-05T17:24:51Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030521000352","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-05T01:24:51Z","modifiedDate":"2021-06-18T23:50:04Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E1FFFFFFFE%2522%252C%2522max%2522%253A%252205C1E33399CD64%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-03-05T01%253A24%253A51.2748296Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9wnD4AAACgBQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-03-09T21%253A25%253A51.4651445Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '16109' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E1FFFFFFFE%2522%252C%2522max%2522%253A%252205C1E33399CD64%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-03-05T01%253A24%253A51.2748296Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9wnD4AAACgBQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-03-09T21%253A25%253A51.4651445Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030421003031","name":"121030421003031","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-04T20:09:36Z","expirationTime":"2021-03-05T00:09:36Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030421003031","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-04T20:09:36Z","modifiedDate":"2021-06-18T23:50:07Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030421003017","name":"121030421003017","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-04T20:08:14Z","expirationTime":"2021-03-05T00:08:14Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030421003017","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-04T20:08:14Z","modifiedDate":"2021-06-18T23:50:07Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637504307047783680","name":"E2ETest637504307047783680","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-03-04T14:00:00Z","expirationTime":"2021-03-04T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030421000533","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-04T04:58:36Z","modifiedDate":"2021-06-18T23:50:03Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637504306658083233","name":"E2ETest637504306658083233","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-03-04T14:00:00Z","expirationTime":"2021-03-04T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030421000532","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-04T04:58:02Z","modifiedDate":"2021-06-18T23:50:14Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030421000284","name":"121030421000284","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-04T14:00:00Z","expirationTime":"2021-03-04T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030421000284","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-04T02:31:23Z","modifiedDate":"2021-06-18T23:49:52Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030421000281","name":"121030421000281","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-04T14:00:00Z","expirationTime":"2021-03-04T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030421000281","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-04T02:30:33Z","modifiedDate":"2021-06-18T23:49:41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030321002812","name":"121030321002812","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-03T21:17:37Z","expirationTime":"2021-03-04T01:17:37Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030321002812","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-03T21:17:37Z","modifiedDate":"2021-06-18T23:49:58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030321002804","name":"121030321002804","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-03T21:16:07Z","expirationTime":"2021-03-04T01:16:07Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030321002804","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-03T21:16:07Z","modifiedDate":"2021-06-18T23:50:06Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030321002311","name":"121030321002311","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-03T18:50:44Z","expirationTime":"2021-03-03T22:50:44Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030321002311","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-03T18:50:44Z","modifiedDate":"2021-06-18T23:49:59Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030321002301","name":"121030321002301","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-03T18:49:05Z","expirationTime":"2021-03-03T22:49:05Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030321002301","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-03T18:49:05Z","modifiedDate":"2021-06-18T23:50:04Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E5673399CA%2522%252C%2522max%2522%253A%252205C1E5CD673396%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-03-03T18%253A49%253A05.6658042Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9GLkAAAADACg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-03-05T01%253A24%253A51.2748296Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '14232' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E5673399CA%2522%252C%2522max%2522%253A%252205C1E5CD673396%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-03-03T18%253A49%253A05.6658042Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9GLkAAAADACg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-03-05T01%253A24%253A51.2748296Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030321001774","name":"121030321001774","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-03T16:32:13Z","expirationTime":"2021-03-03T20:32:13Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030321001774","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-03T16:32:13Z","modifiedDate":"2021-06-18T23:50:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030321001764","name":"121030321001764","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-03T16:30:30Z","expirationTime":"2021-03-03T20:30:30Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030321001764","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-03T16:30:30Z","modifiedDate":"2021-06-18T23:49:45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637503472644849063","name":"E2ETest637503472644849063","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-03-03T14:00:00Z","expirationTime":"2021-03-03T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030324001130","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-03T05:47:50Z","modifiedDate":"2021-06-18T23:50:06Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637503472275850160","name":"E2ETest637503472275850160","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-03-03T14:00:00Z","expirationTime":"2021-03-03T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030324001123","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-03T05:47:17Z","modifiedDate":"2021-06-18T23:49:52Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030321000503","name":"121030321000503","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-03T14:00:00Z","expirationTime":"2021-03-03T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030321000503","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-03T03:42:58Z","modifiedDate":"2021-06-18T23:50:05Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030321000468","name":"121030321000468","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-03T14:00:00Z","expirationTime":"2021-03-03T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030321000468","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-03T03:26:21Z","modifiedDate":"2021-06-18T23:49:56Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030321000463","name":"121030321000463","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-03T14:00:00Z","expirationTime":"2021-03-03T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030321000463","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-03T03:25:14Z","modifiedDate":"2021-06-18T23:50:10Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637503087388390036","name":"E2ETest637503087388390036","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 387","lastName":"last 416","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"680866","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-03-03T14:00:00Z","expirationTime":"2021-03-03T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030321000427","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-03T03:05:47Z","modifiedDate":"2021-06-18T23:49:48Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637503303659211331","name":"E2ETest637503303659211331","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-03-03T01:06:41Z","expirationTime":"2021-03-03T15:06:41Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030321000154","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-03T01:06:16Z","modifiedDate":"2021-06-18T23:49:50Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637503303268414671","name":"E2ETest637503303268414671","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-03-03T01:06:02Z","expirationTime":"2021-03-03T15:06:02Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030321000153","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-03T01:05:43Z","modifiedDate":"2021-06-18T23:49:59Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1DD673399C8%2522%252C%2522max%2522%253A%252205C1DF3399CD60%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-03-03T01%253A05%253A43.5953116Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR82LUAAAABADw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-03-03T18%253A49%253A05.6658042Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '15167' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1DD673399C8%2522%252C%2522max%2522%253A%252205C1DF3399CD60%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-03-03T01%253A05%253A43.5953116Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR82LUAAAABADw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-03-03T18%253A49%253A05.6658042Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030221004260","name":"121030221004260","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-02T22:44:16Z","expirationTime":"2021-03-03T14:44:16Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030221004260","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-02T22:44:16Z","modifiedDate":"2021-06-18T23:50:01Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030221004210","name":"121030221004210","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-02T22:38:05Z","expirationTime":"2021-03-03T14:38:05Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030221004210","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-02T22:38:05Z","modifiedDate":"2021-06-18T23:49:59Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030221004033","name":"121030221004033","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-02T22:17:34Z","expirationTime":"2021-03-03T14:17:34Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030221004033","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-02T22:17:34Z","modifiedDate":"2021-06-18T23:49:48Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030221004021","name":"121030221004021","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-02T22:16:17Z","expirationTime":"2021-03-03T14:16:17Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030221004021","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-02T22:16:17Z","modifiedDate":"2021-06-18T23:49:52Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030221003181","name":"121030221003181","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-02T19:37:30Z","expirationTime":"2021-03-02T23:37:30Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030221003181","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-02T19:37:30Z","modifiedDate":"2021-06-18T23:49:52Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030221003173","name":"121030221003173","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-02T19:35:53Z","expirationTime":"2021-03-02T23:35:53Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030221003173","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-02T19:35:53Z","modifiedDate":"2021-06-18T23:49:46Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030221001418","name":"121030221001418","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-02T14:00:00Z","expirationTime":"2021-03-02T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030221001418","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-02T10:27:38Z","modifiedDate":"2021-06-18T23:49:43Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030221001413","name":"121030221001413","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-02T14:00:00Z","expirationTime":"2021-03-02T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030221001413","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-02T10:26:15Z","modifiedDate":"2021-06-18T23:50:01Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030221000314","name":"121030221000314","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-02T14:00:00Z","expirationTime":"2021-03-02T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030221000314","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-02T02:21:12Z","modifiedDate":"2021-06-18T23:50:07Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030221000311","name":"121030221000311","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-02T14:00:00Z","expirationTime":"2021-03-02T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030221000311","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-02T02:20:10Z","modifiedDate":"2021-06-18T23:50:17Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EF99CD6732%2522%252C%2522max%2522%253A%2522FF%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-03-02T02%253A20%253A10.7446275Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BGK0AAAAAgBg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-03-03T01%253A05%253A43.5953116Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '13614' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EF99CD6732%2522%252C%2522max%2522%253A%2522FF%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-03-02T02%253A20%253A10.7446275Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BGK0AAAAAgBg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-03-03T01%253A05%253A43.5953116Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030221000083","name":"121030221000083","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-02T00:30:11Z","expirationTime":"2021-03-02T16:30:11Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030221000083","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-02T00:30:11Z","modifiedDate":"2021-06-18T23:49:41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030221000078","name":"121030221000078","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-02T00:28:44Z","expirationTime":"2021-03-02T16:28:44Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030221000078","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-02T00:28:44Z","modifiedDate":"2021-06-18T23:50:11Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030121002359","name":"121030121002359","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-01T18:47:30Z","expirationTime":"2021-03-01T22:47:30Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030121002359","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-01T18:47:30Z","modifiedDate":"2021-06-18T23:49:59Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030121002351","name":"121030121002351","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-03-01T18:46:17Z","expirationTime":"2021-03-01T22:46:17Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121030121002351","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-03-01T18:46:17Z","modifiedDate":"2021-06-18T23:49:52Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121022621000559","name":"121022621000559","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-26T14:00:00Z","expirationTime":"2021-02-26T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121022621000559","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-26T06:21:36Z","modifiedDate":"2021-06-18T23:49:54Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121022621000558","name":"121022621000558","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-26T14:00:00Z","expirationTime":"2021-02-26T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121022621000558","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-26T06:20:38Z","modifiedDate":"2021-06-18T23:50:05Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637499152664615240","name":"E2ETest637499152664615240","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-02-26T14:00:00Z","expirationTime":"2021-02-26T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121022621000500","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-26T05:48:02Z","modifiedDate":"2021-06-18T23:49:52Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637499152275797347","name":"E2ETest637499152275797347","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-02-26T14:00:00Z","expirationTime":"2021-02-26T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121022621000498","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-26T05:47:24Z","modifiedDate":"2021-06-18T23:50:14Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637498138960238860","name":"E2ETest637498138960238860","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 259","lastName":"last 93","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"708658","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-02-25T14:00:00Z","expirationTime":"2021-02-25T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121022524002392","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-25T09:38:24Z","modifiedDate":"2021-06-18T23:50:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637498237313845648","name":"E2ETest637498237313845648","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-02-25T14:00:00Z","expirationTime":"2021-02-25T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121022521001090","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-25T04:22:19Z","modifiedDate":"2021-06-18T23:49:48Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1B9CD673390%2522%252C%2522max%2522%253A%252205C1BFFFFFFFF0%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-02-25T04%253A22%253A19.955784Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BTI0AAAAAgCw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-03-02T02%253A20%253A10.7446275Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '14865' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1B9CD673390%2522%252C%2522max%2522%253A%252205C1BFFFFFFFF0%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-02-25T04%253A22%253A19.955784Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BTI0AAAAAgCw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-03-02T02%253A20%253A10.7446275Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637498236939526418","name":"E2ETest637498236939526418","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-02-25T14:00:00Z","expirationTime":"2021-02-25T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121022521001082","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-25T04:21:43Z","modifiedDate":"2021-06-18T23:49:51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637497906943939694","name":"E2ETest637497906943939694","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 422","lastName":"last 729","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"275761","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-02-25T14:00:00Z","expirationTime":"2021-02-25T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121022521000864","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-25T03:11:42Z","modifiedDate":"2021-06-18T23:49:52Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637496965750872721","name":"E2ETest637496965750872721","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 268","lastName":"last 362","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"452260","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-02-24T01:04:05Z","expirationTime":"2021-02-24T15:04:05Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121022421000465","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-24T01:03:05Z","modifiedDate":"2021-06-18T23:49:54Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637497239374844045","name":"E2ETest637497239374844045","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-02-24T00:39:30Z","expirationTime":"2021-02-24T14:39:30Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121022421000277","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-24T00:39:06Z","modifiedDate":"2021-06-18T23:49:56Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637497238343997368","name":"E2ETest637497238343997368","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-02-24T00:38:53Z","expirationTime":"2021-02-24T14:38:53Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121022421000276","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-24T00:38:38Z","modifiedDate":"2021-06-18T23:49:57Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637496821271275871","name":"E2ETest637496821271275871","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 519","lastName":"last 331","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"373057","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-02-23T21:02:42Z","expirationTime":"2021-02-23T23:02:42Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121022321007446","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-23T21:02:16Z","modifiedDate":"2021-06-18T23:49:54Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637496792734312488","name":"E2ETest637496792734312488","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 655","lastName":"last 983","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"752862","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-02-23T20:15:07Z","expirationTime":"2021-02-23T22:15:07Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121022321007190","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-23T20:14:40Z","modifiedDate":"2021-06-18T23:49:50Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637496790093276061","name":"E2ETest637496790093276061","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-02-23T20:10:43Z","expirationTime":"2021-02-23T22:10:43Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121022321007135","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-23T20:10:16Z","modifiedDate":"2021-06-18T23:49:54Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637496785543596040","name":"E2ETest637496785543596040","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-02-23T20:03:26Z","expirationTime":"2021-02-23T22:03:26Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121022321007020","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-23T20:03:04Z","modifiedDate":"2021-06-18T23:50:14Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637496784543644823","name":"E2ETest637496784543644823","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-02-23T20:01:28Z","expirationTime":"2021-02-23T22:01:28Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121022321006997","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-23T20:01:02Z","modifiedDate":"2021-06-18T23:50:02Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E1673399CA%2522%252C%2522max%2522%253A%252205C1E1CD673398%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-02-23T20%253A01%253A02.6001012Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9LJEAAAABAAQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-02-25T04%253A22%253A19.955784Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '16775' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E1673399CA%2522%252C%2522max%2522%253A%252205C1E1CD673398%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-02-23T20%253A01%253A02.6001012Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9LJEAAAABAAQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-02-25T04%253A22%253A19.955784Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637496782349254662","name":"E2ETest637496782349254662","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-02-23T19:57:49Z","expirationTime":"2021-02-23T21:57:49Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121022321006937","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-23T19:57:22Z","modifiedDate":"2021-06-18T23:49:47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637496781965350986","name":"E2ETest637496781965350986","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-02-23T19:57:11Z","expirationTime":"2021-02-23T21:57:11Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121022321006931","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-23T19:56:49Z","modifiedDate":"2021-06-18T23:50:05Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121022321000962","name":"121022321000962","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-23T14:00:00Z","expirationTime":"2021-02-23T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121022321000962","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-23T07:13:02Z","modifiedDate":"2021-06-18T23:50:03Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121022321000955","name":"121022321000955","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-23T14:00:00Z","expirationTime":"2021-02-23T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121022321000955","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-23T07:12:19Z","modifiedDate":"2021-06-18T23:50:06Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121022321000952","name":"121022321000952","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-23T14:00:00Z","expirationTime":"2021-02-23T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121022321000952","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-23T07:10:55Z","modifiedDate":"2021-06-18T23:50:02Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121021821000165","name":"121021821000165","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-18T01:07:51Z","expirationTime":"2021-02-18T17:07:51Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121021821000165","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-18T01:07:51Z","modifiedDate":"2021-06-18T23:50:01Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121021821000161","name":"121021821000161","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-18T01:07:24Z","expirationTime":"2021-02-18T17:07:24Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121021821000161","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-18T01:07:24Z","modifiedDate":"2021-06-18T23:50:05Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121021821000153","name":"121021821000153","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-18T01:06:12Z","expirationTime":"2021-02-18T17:06:12Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121021821000153","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-18T01:06:12Z","modifiedDate":"2021-06-18T23:50:17Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121021821000112","name":"121021821000112","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-18T00:44:06Z","expirationTime":"2021-02-18T16:44:06Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121021821000112","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-18T00:44:06Z","modifiedDate":"2021-06-18T23:50:14Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121021821000107","name":"121021821000107","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-18T00:43:28Z","expirationTime":"2021-02-18T16:43:28Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121021821000107","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-18T00:43:28Z","modifiedDate":"2021-06-18T23:50:12Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EBFFFFFFFE%2522%252C%2522max%2522%253A%252205C1ED673399CC%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-02-18T00%253A43%253A28.9435952Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BFHkAAAABABw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-02-23T20%253A01%253A02.6001012Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '14236' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EBFFFFFFFE%2522%252C%2522max%2522%253A%252205C1ED673399CC%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-02-18T00%253A43%253A28.9435952Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BFHkAAAABABw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-02-23T20%253A01%253A02.6001012Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121021821000100","name":"121021821000100","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-18T00:42:04Z","expirationTime":"2021-02-18T16:42:04Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121021821000100","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-18T00:42:04Z","modifiedDate":"2021-06-18T23:50:17Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121021621003078","name":"121021621003078","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-16T21:23:46Z","expirationTime":"2021-02-17T01:23:46Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121021621003078","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-16T21:23:46Z","modifiedDate":"2021-06-18T23:50:04Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121021621003073","name":"121021621003073","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-16T21:23:06Z","expirationTime":"2021-02-17T01:23:06Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121021621003073","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-16T21:23:06Z","modifiedDate":"2021-06-18T23:50:11Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121021621003065","name":"121021621003065","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-16T21:21:15Z","expirationTime":"2021-02-17T01:21:15Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121021621003065","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-16T21:21:15Z","modifiedDate":"2021-06-18T23:50:08Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121021121001990","name":"121021121001990","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-11T16:48:27Z","expirationTime":"2021-02-11T20:48:27Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121021121001990","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-11T16:48:27Z","modifiedDate":"2021-06-18T23:50:15Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121021121001989","name":"121021121001989","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-11T16:48:05Z","expirationTime":"2021-02-11T20:48:05Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121021121001989","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-11T16:48:05Z","modifiedDate":"2021-06-18T23:49:58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121021121001984","name":"121021121001984","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-11T16:47:36Z","expirationTime":"2021-02-11T20:47:36Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121021121001984","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-11T16:47:36Z","modifiedDate":"2021-06-18T23:49:52Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121021021000555","name":"121021021000555","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-10T14:00:00Z","expirationTime":"2021-02-10T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121021021000555","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-10T05:32:51Z","modifiedDate":"2021-06-18T23:49:51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121021021000552","name":"121021021000552","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-10T14:00:00Z","expirationTime":"2021-02-10T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121021021000552","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-10T05:32:29Z","modifiedDate":"2021-06-18T23:49:47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121021021000550","name":"121021021000550","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-10T14:00:00Z","expirationTime":"2021-02-10T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121021021000550","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-10T05:31:57Z","modifiedDate":"2021-06-18T23:50:10Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E73399CD64%2522%252C%2522max%2522%253A%252205C1E7673399CA%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-02-10T05%253A31%253A57.8968679Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-qjD4AAACgDg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-02-18T00%253A43%253A28.9435952Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '13617' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E73399CD64%2522%252C%2522max%2522%253A%252205C1E7673399CA%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-02-10T05%253A31%253A57.8968679Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-qjD4AAACgDg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-02-18T00%253A43%253A28.9435952Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121021021000490","name":"121021021000490","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-10T14:00:00Z","expirationTime":"2021-02-10T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121021021000490","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-10T04:42:19Z","modifiedDate":"2021-06-18T23:50:03Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121021021000486","name":"121021021000486","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-10T14:00:00Z","expirationTime":"2021-02-10T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121021021000486","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-10T04:41:46Z","modifiedDate":"2021-06-18T23:50:10Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121021021000482","name":"121021021000482","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-10T14:00:00Z","expirationTime":"2021-02-10T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121021021000482","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-10T04:41:12Z","modifiedDate":"2021-06-18T23:49:51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121020921000468","name":"121020921000468","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-09T14:00:00Z","expirationTime":"2021-02-09T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121020921000468","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-09T02:35:57Z","modifiedDate":"2021-06-18T23:49:54Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121020921000465","name":"121020921000465","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-09T14:00:00Z","expirationTime":"2021-02-09T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121020921000465","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-09T02:35:27Z","modifiedDate":"2021-06-18T23:49:57Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121020921000464","name":"121020921000464","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-09T14:00:00Z","expirationTime":"2021-02-09T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121020921000464","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-09T02:34:50Z","modifiedDate":"2021-06-18T23:49:52Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637480900655384031","name":"E2ETest637480900655384031","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 44","lastName":"last 799","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"552221","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-02-05T14:00:00Z","expirationTime":"2021-02-05T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121020521000369","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-05T02:48:04Z","modifiedDate":"2021-06-18T23:50:17Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121020421000875","name":"121020421000875","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-04T14:00:00Z","expirationTime":"2021-02-04T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121020421000875","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-04T06:27:23Z","modifiedDate":"2021-06-18T23:49:43Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121020421000872","name":"121020421000872","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-04T14:00:00Z","expirationTime":"2021-02-04T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121020421000872","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-04T06:26:57Z","modifiedDate":"2021-06-18T23:49:48Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121020421000869","name":"121020421000869","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-04T14:00:00Z","expirationTime":"2021-02-04T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121020421000869","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-04T06:26:28Z","modifiedDate":"2021-06-18T23:49:47Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%2522%2522%252C%2522max%2522%253A%252205C199CD673380%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-02-04T06%253A26%253A28.8109316Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8VBkAAAADACA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-02-10T05%253A31%253A57.8968679Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '13933' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%2522%2522%252C%2522max%2522%253A%252205C199CD673380%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-02-04T06%253A26%253A28.8109316Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8VBkAAAADACA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-02-10T05%253A31%253A57.8968679Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121020221009066","name":"121020221009066","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-02T23:26:18Z","expirationTime":"2021-02-03T15:26:18Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121020221009066","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-02T23:26:18Z","modifiedDate":"2021-06-18T23:50:13Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121020221009060","name":"121020221009060","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-02T23:25:55Z","expirationTime":"2021-02-03T15:25:55Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121020221009060","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-02T23:25:55Z","modifiedDate":"2021-06-18T23:50:14Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121020221009056","name":"121020221009056","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-02T23:25:25Z","expirationTime":"2021-02-03T15:25:25Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121020221009056","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-02T23:25:25Z","modifiedDate":"2021-06-18T23:49:41Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253A%2522%252BRID%253A%7ee6dtAI34RR%252BrA0AAAADACA%253D%253D%2523RT%253A1%2523TRC%253A10%2523RTD%253Aji0%252BIW5zwLFF4%252FkySpIzBTMxMzIuMTMuMTNVMzQ7MzY7MzYvOTgyMjMxNVsA%2523ISV%253A2%2523IEO%253A65551%2523QCF%253A7%2523FPC%253AAgj8AAAAACMAAAMBAAAAIwAA%252FAAAAAAjAAACAASV%252FQAAAAAjAAAEAPybOpn%252BAAAAACMAAAQA5IfTkgABAAAAIwAACACrg2WCy6LigQEBAAAAIwAAAgCRvwIBAAAAIwAABgDtpriKo4kDAQAAACMAAAQAYJBJnw%253D%253D%2522%252C%2522range%2522%253A%257B%2522min%2522%253A%2522%2522%252C%2522max%2522%253A%252205C199CD673380%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-02-02T23%253A25%253A25.8711204Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BrA0AAAADACA%253D%253D%2522%252C%2522skipCount%2522%253A0%252C%2522filter%2522%253A%2522true%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '4878' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253A%2522%252BRID%253A~e6dtAI34RR%252BrA0AAAADACA%253D%253D%2523RT%253A1%2523TRC%253A10%2523RTD%253Aji0%252BIW5zwLFF4%252FkySpIzBTMxMzIuMTMuMTNVMzQ7MzY7MzYvOTgyMjMxNVsA%2523ISV%253A2%2523IEO%253A65551%2523QCF%253A7%2523FPC%253AAgj8AAAAACMAAAMBAAAAIwAA%252FAAAAAAjAAACAASV%252FQAAAAAjAAAEAPybOpn%252BAAAAACMAAAQA5IfTkgABAAAAIwAACACrg2WCy6LigQEBAAAAIwAAAgCRvwIBAAAAIwAABgDtpriKo4kDAQAAACMAAAQAYJBJnw%253D%253D%2522%252C%2522range%2522%253A%257B%2522min%2522%253A%2522%2522%252C%2522max%2522%253A%252205C199CD673380%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-02-02T23%253A25%253A25.8711204Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BrA0AAAADACA%253D%253D%2522%252C%2522skipCount%2522%253A0%252C%2522filter%2522%253A%2522true%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121020221000402","name":"121020221000402","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-02T14:00:00Z","expirationTime":"2021-02-02T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121020221000402","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-02T02:48:00Z","modifiedDate":"2021-06-18T23:50:09Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121020221000399","name":"121020221000399","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-02-02T14:00:00Z","expirationTime":"2021-02-02T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121020221000399","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-02T02:47:27Z","modifiedDate":"2021-06-18T23:49:58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637478259817140336","name":"E2ETest637478259817140336","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 159","lastName":"last 876","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"066112","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-02-02T01:26:59Z","expirationTime":"2021-02-02T15:26:59Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121020221000240","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-02-02T01:26:40Z","modifiedDate":"2021-06-18T23:49:56Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121012921001754","name":"121012921001754","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-01-29T20:44:53Z","expirationTime":"2021-01-30T00:44:53Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121012921001754","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-29T20:44:53Z","modifiedDate":"2021-06-18T23:49:49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121012921001748","name":"121012921001748","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-01-29T20:44:21Z","expirationTime":"2021-01-30T00:44:21Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121012921001748","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-29T20:44:21Z","modifiedDate":"2021-06-18T23:50:01Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121012921001746","name":"121012921001746","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-01-29T20:43:26Z","expirationTime":"2021-01-30T00:43:26Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121012921001746","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-29T20:43:26Z","modifiedDate":"2021-06-18T23:50:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637474603751904609","name":"E2ETest637474603751904609","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 741","lastName":"last 469","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"730868","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-01-28T19:53:30Z","expirationTime":"2021-01-28T21:53:30Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121012821005409","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-28T19:53:05Z","modifiedDate":"2021-06-18T23:50:06Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637474051265334360","name":"E2ETest637474051265334360","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 734","lastName":"last 838","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"553470","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-01-28T14:00:00Z","expirationTime":"2021-01-28T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121012821000533","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-28T04:32:21Z","modifiedDate":"2021-06-18T23:50:01Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637472077174759095","name":"E2ETest637472077174759095","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 804","lastName":"last 15","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"206671","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-01-25T21:42:33Z","expirationTime":"2021-01-25T23:42:33Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121012521002760","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-25T21:42:08Z","modifiedDate":"2021-06-18T23:49:54Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637468896870494602","name":"E2ETest637468896870494602","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 836","lastName":"last 719","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"816467","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-01-22T14:00:00Z","expirationTime":"2021-01-22T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121012221000485","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-22T05:21:35Z","modifiedDate":"2021-06-18T23:49:59Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1D7FFFFFFFC%2522%252C%2522max%2522%253A%252205C1D9CD673398%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-01-22T05%253A21%253A35.9778075Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9O9T8AAAAgBA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-02-02T23%253A25%253A25.8711204Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '15276' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1D7FFFFFFFC%2522%252C%2522max%2522%253A%252205C1D9CD673398%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-01-22T05%253A21%253A35.9778075Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9O9T8AAAAgBA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-02-02T23%253A25%253A25.8711204Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637468772573433708","name":"E2ETest637468772573433708","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 259","lastName":"last 788","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"062704","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-01-22T01:54:53Z","expirationTime":"2021-01-22T15:54:53Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121012221000203","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-22T01:54:28Z","modifiedDate":"2021-06-18T23:49:59Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637468772293895324","name":"E2ETest637468772293895324","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 7","lastName":"last 706","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"158860","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-01-22T01:54:28Z","expirationTime":"2021-01-22T15:54:28Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121012221000202","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-22T01:54:05Z","modifiedDate":"2021-06-18T23:49:42Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637461674121859517","name":"E2ETest637461674121859517","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 732","lastName":"last 559","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"520605","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-01-13T20:44:05Z","expirationTime":"2021-01-13T22:44:05Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121011321002590","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-13T20:43:42Z","modifiedDate":"2021-06-18T23:49:57Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637460719165828212","name":"E2ETest637460719165828212","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"nilay2","lastName":"last - 786","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"116184","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-01-12T18:12:32Z","expirationTime":"2021-01-12T20:12:32Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121011221002975","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-12T18:12:14Z","modifiedDate":"2021-06-18T23:49:53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121011221000865","name":"121011221000865","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-01-12T14:00:00Z","expirationTime":"2021-01-12T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121011221000865","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-12T06:07:15Z","modifiedDate":"2021-06-18T23:50:10Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121011221000860","name":"121011221000860","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-01-12T14:00:00Z","expirationTime":"2021-01-12T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121011221000860","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-12T06:06:41Z","modifiedDate":"2021-06-18T23:49:45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121011221000857","name":"121011221000857","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-01-12T14:00:00Z","expirationTime":"2021-01-12T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121011221000857","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-12T06:06:11Z","modifiedDate":"2021-06-18T23:50:02Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637457019333361092","name":"E2ETest637457019333361092","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 444","lastName":"last 595","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"361805","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-01-08T16:26:09Z","expirationTime":"2021-01-08T18:26:09Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121010824002688","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-08T16:25:58Z","modifiedDate":"2021-06-18T23:49:57Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637456568374235525","name":"E2ETest637456568374235525","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 961","lastName":"last 191","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"006702","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-01-07T22:54:31Z","expirationTime":"2021-01-08T00:54:31Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121010721003104","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-07T22:54:04Z","modifiedDate":"2021-06-18T23:49:54Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1D73399CD64%2522%252C%2522max%2522%253A%252205C1D799CD6730%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-01-07T22%253A54%253A04.3574257Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-0dj4AAABgCA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-01-22T05%253A21%253A35.9778075Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '14332' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1D73399CD64%2522%252C%2522max%2522%253A%252205C1D799CD6730%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-01-07T22%253A54%253A04.3574257Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-0dj4AAABgCA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-01-22T05%253A21%253A35.9778075Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637456546885714527","name":"E2ETest637456546885714527","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 854","lastName":"last 196","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"355370","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-01-07T22:18:41Z","expirationTime":"2021-01-08T00:18:41Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121010721003010","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-07T22:18:20Z","modifiedDate":"2021-06-18T23:49:45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637456544876818179","name":"E2ETest637456544876818179","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 97","lastName":"last 951","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"434478","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-01-07T22:15:21Z","expirationTime":"2021-01-08T00:15:21Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121010721003000","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-07T22:15:01Z","modifiedDate":"2021-06-18T23:49:56Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637456336337775995","name":"E2ETest637456336337775995","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 8","lastName":"last 31","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"778453","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2021-01-07T21:27:50Z","expirationTime":"2021-01-07T23:27:50Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121010724005277","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-07T21:27:31Z","modifiedDate":"2021-06-18T23:50:09Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121010621003080","name":"121010621003080","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-01-06T23:34:09Z","expirationTime":"2021-01-07T15:34:09Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121010621003080","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-06T23:34:09Z","modifiedDate":"2021-06-18T23:49:47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121010621003076","name":"121010621003076","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-01-06T23:33:38Z","expirationTime":"2021-01-07T15:33:38Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121010621003076","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-06T23:33:38Z","modifiedDate":"2021-06-18T23:50:11Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121010621003073","name":"121010621003073","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-01-06T23:33:15Z","expirationTime":"2021-01-07T15:33:15Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121010621003073","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-06T23:33:15Z","modifiedDate":"2021-06-18T23:50:10Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121010621002250","name":"121010621002250","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-01-06T18:11:26Z","expirationTime":"2021-01-06T22:11:26Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121010621002250","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-06T18:11:26Z","modifiedDate":"2021-06-18T23:50:01Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121010621002244","name":"121010621002244","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-01-06T18:10:55Z","expirationTime":"2021-01-06T22:10:55Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121010621002244","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-06T18:10:55Z","modifiedDate":"2021-06-18T23:50:01Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121010621002243","name":"121010621002243","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-01-06T18:10:38Z","expirationTime":"2021-01-06T22:10:38Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121010621002243","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-06T18:10:38Z","modifiedDate":"2021-06-18T23:50:04Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121010621000009","name":"121010621000009","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-01-06T00:04:33Z","expirationTime":"2021-01-06T16:04:33Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121010621000009","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-06T00:04:33Z","modifiedDate":"2021-06-18T23:50:05Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E3FFFFFFFE%2522%252C%2522max%2522%253A%252205C1E5673399CA%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-01-06T00%253A04%253A33.1301705Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-u3z8AAADAAg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-01-07T22%253A54%253A04.3574257Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '14611' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E3FFFFFFFE%2522%252C%2522max%2522%253A%252205C1E5673399CA%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-01-06T00%253A04%253A33.1301705Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-u3z8AAADAAg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-01-07T22%253A54%253A04.3574257Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121010621000005","name":"121010621000005","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-01-06T00:03:59Z","expirationTime":"2021-01-06T16:03:59Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121010621000005","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-06T00:03:59Z","modifiedDate":"2021-06-18T23:49:45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121010621000003","name":"121010621000003","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-01-06T00:03:36Z","expirationTime":"2021-01-06T16:03:36Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121010621000003","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-06T00:03:36Z","modifiedDate":"2021-06-18T23:50:11Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E9FFFFFFFE%2522%252C%2522max%2522%253A%252205C1EB3399CD64%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-01-06T00%253A03%253A36.4701837Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BfdT4AAACgBg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-01-06T00%253A04%253A33.1301705Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '3498' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E9FFFFFFFE%2522%252C%2522max%2522%253A%252205C1EB3399CD64%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-01-06T00%253A03%253A36.4701837Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BfdT4AAACgBg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-01-06T00%253A04%253A33.1301705Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121010521000615","name":"121010521000615","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-01-05T23:10:37Z","expirationTime":"2021-01-06T15:10:37Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121010521000615","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-05T23:10:37Z","modifiedDate":"2021-06-18T23:50:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121010521000611","name":"121010521000611","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-01-05T23:10:06Z","expirationTime":"2021-01-06T15:10:06Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121010521000611","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-05T23:10:06Z","modifiedDate":"2021-06-18T23:49:47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121010521000610","name":"121010521000610","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-01-05T23:09:40Z","expirationTime":"2021-01-06T15:09:40Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121010521000610","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-05T23:09:40Z","modifiedDate":"2021-06-18T23:50:16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121010524000614","name":"121010524000614","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-01-05T21:14:42Z","expirationTime":"2021-01-06T01:14:42Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121010524000614","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-05T21:14:42Z","modifiedDate":"2021-06-18T23:49:58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121010521000307","name":"121010521000307","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-01-05T21:14:16Z","expirationTime":"2021-01-06T01:14:16Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121010521000307","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-05T21:14:16Z","modifiedDate":"2021-06-18T23:50:16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121010521000302","name":"121010521000302","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-01-05T21:13:47Z","expirationTime":"2021-01-06T01:13:47Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121010521000302","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-05T21:13:47Z","modifiedDate":"2021-06-18T23:49:57Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121010521000303","name":"121010521000303","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2021-01-05T21:12:40Z","expirationTime":"2021-01-06T01:12:40Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"121010521000303","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2021-01-05T21:12:40Z","modifiedDate":"2021-06-18T23:49:52Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120122225008444","name":"120122225008444","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-12-22T18:50:03Z","expirationTime":"2020-12-22T22:50:03Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120122225008444","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-22T18:50:03Z","modifiedDate":"2021-06-18T23:50:04Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120122225008436","name":"120122225008436","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-12-22T18:49:22Z","expirationTime":"2020-12-22T22:49:22Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120122225008436","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-22T18:49:22Z","modifiedDate":"2021-06-18T23:50:07Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E73399CD64%2522%252C%2522max%2522%253A%252205C1E7673399CA%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-12-22T18%253A49%253A22.6180559Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8rbz4AAACgDg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-01-06T00%253A03%253A36.4701837Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '12351' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E73399CD64%2522%252C%2522max%2522%253A%252205C1E7673399CA%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-12-22T18%253A49%253A22.6180559Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8rbz4AAACgDg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-01-06T00%253A03%253A36.4701837Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120122225008432","name":"120122225008432","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-12-22T18:48:49Z","expirationTime":"2020-12-22T22:48:49Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120122225008432","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-22T18:48:49Z","modifiedDate":"2021-06-18T23:49:44Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120121925000213","name":"120121925000213","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-12-19T01:32:51Z","expirationTime":"2020-12-21T17:32:51Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120121925000213","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-19T01:32:51Z","modifiedDate":"2021-06-18T23:50:10Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120121925000211","name":"120121925000211","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-12-19T01:31:56Z","expirationTime":"2020-12-21T17:31:56Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120121925000211","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-19T01:31:56Z","modifiedDate":"2021-06-18T23:50:11Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120121925000206","name":"120121925000206","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-12-19T01:31:04Z","expirationTime":"2020-12-21T17:31:04Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120121925000206","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-19T01:31:04Z","modifiedDate":"2021-06-18T23:49:47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120121721003272","name":"120121721003272","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-12-17T20:48:33Z","expirationTime":"2020-12-18T00:48:33Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120121721003272","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-17T20:48:33Z","modifiedDate":"2021-06-18T23:50:07Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120121721003266","name":"120121721003266","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-12-17T20:47:59Z","expirationTime":"2020-12-18T00:47:59Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120121721003266","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-17T20:47:59Z","modifiedDate":"2021-06-18T23:49:54Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120121721003256","name":"120121721003256","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-12-17T20:47:14Z","expirationTime":"2020-12-18T00:47:14Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120121721003256","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-17T20:47:14Z","modifiedDate":"2021-06-18T23:49:54Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637432120553324562","name":"E2ETest637432120553324562","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 993","lastName":"last 340","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"877246","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-12-10T23:48:13Z","expirationTime":"2020-12-11T01:48:13Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120121021003897","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-10T23:48:00Z","modifiedDate":"2021-06-18T23:49:58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120121021002747","name":"120121021002747","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-12-10T18:50:47Z","expirationTime":"2020-12-10T22:50:47Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120121021002747","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-10T18:50:47Z","modifiedDate":"2021-06-18T23:49:58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120121021002745","name":"120121021002745","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-12-10T18:50:24Z","expirationTime":"2020-12-10T22:50:24Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120121021002745","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-10T18:50:24Z","modifiedDate":"2021-06-18T23:49:44Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1BFFFFFFFF0%2522%252C%2522max%2522%253A%252205C1C399CD6730%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-12-10T18%253A50%253A24.2062691Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252Blxj8AAAAgBw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-12-22T18%253A49%253A22.6180559Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '13952' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1BFFFFFFFF0%2522%252C%2522max%2522%253A%252205C1C399CD6730%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-12-10T18%253A50%253A24.2062691Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252Blxj8AAAAgBw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-12-22T18%253A49%253A22.6180559Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120121021000828","name":"120121021000828","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-12-10T14:00:00Z","expirationTime":"2020-12-10T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120121021000828","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-10T05:53:45Z","modifiedDate":"2021-06-18T23:49:44Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120121021000824","name":"120121021000824","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-12-10T14:00:00Z","expirationTime":"2020-12-10T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120121021000824","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-10T05:53:16Z","modifiedDate":"2021-06-18T23:49:50Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637430741715440406","name":"E2ETest637430741715440406","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 106","lastName":"last 865","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"214274","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-12-09T01:30:05Z","expirationTime":"2020-12-09T15:30:05Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120120921000327","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-09T01:29:45Z","modifiedDate":"2021-06-18T23:50:04Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637430647307797642","name":"E2ETest637430647307797642","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 324","lastName":"last 543","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"308665","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-12-08T22:52:49Z","expirationTime":"2020-12-09T00:52:49Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120120821003430","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-08T22:52:27Z","modifiedDate":"2021-06-18T23:49:43Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120120821000367","name":"120120821000367","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-12-08T14:00:00Z","expirationTime":"2020-12-08T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120120821000367","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-08T02:56:07Z","modifiedDate":"2021-06-18T23:49:45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120120821000366","name":"120120821000366","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-12-08T14:00:00Z","expirationTime":"2020-12-08T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120120821000366","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-08T02:55:45Z","modifiedDate":"2021-06-18T23:50:05Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120120321002214","name":"120120321002214","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-12-03T22:28:14Z","expirationTime":"2020-12-04T14:28:14Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120120321002214","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-03T22:28:14Z","modifiedDate":"2021-06-18T23:50:13Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120120321002213","name":"120120321002213","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-12-03T22:27:33Z","expirationTime":"2020-12-04T14:27:33Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120120321002213","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-03T22:27:33Z","modifiedDate":"2021-06-18T23:50:02Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637425828680580932","name":"E2ETest637425828680580932","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 946","lastName":"last 890","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"021783","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-12-03T14:00:00Z","expirationTime":"2020-12-03T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120120321000829","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-03T09:01:14Z","modifiedDate":"2021-06-18T23:49:51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637425828553715019","name":"E2ETest637425828553715019","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 772","lastName":"last 32","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"430234","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-12-03T14:00:00Z","expirationTime":"2020-12-03T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120120321000828","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-03T09:01:02Z","modifiedDate":"2021-06-18T23:50:03Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E33399CD64%2522%252C%2522max%2522%253A%252205C1E399CD6732%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-12-03T09%253A01%253A02.9707858Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-4vD8AAADABQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-12-10T18%253A50%253A24.2062691Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '14945' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E33399CD64%2522%252C%2522max%2522%253A%252205C1E399CD6732%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-12-03T09%253A01%253A02.9707858Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-4vD8AAADABQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-12-10T18%253A50%253A24.2062691Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120120321000449","name":"120120321000449","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-12-03T14:00:00Z","expirationTime":"2020-12-03T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120120321000449","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-03T04:42:40Z","modifiedDate":"2021-06-18T23:50:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120120321000448","name":"120120321000448","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-12-03T14:00:00Z","expirationTime":"2020-12-03T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120120321000448","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-03T04:42:19Z","modifiedDate":"2021-06-18T23:50:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637425350440739128","name":"E2ETest637425350440739128","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 800","lastName":"last 371","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"702425","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-12-03T14:00:00Z","expirationTime":"2020-12-03T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120120321000369","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-03T03:44:11Z","modifiedDate":"2021-06-18T23:50:10Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637425349665209453","name":"E2ETest637425349665209453","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 639","lastName":"last 878","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"620860","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-12-03T14:00:00Z","expirationTime":"2020-12-03T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120120321000366","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-03T03:42:52Z","modifiedDate":"2021-06-18T23:49:51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637425626449567140","name":"E2ETest637425626449567140","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 865","lastName":"last 936","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"278773","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-12-03T14:00:00Z","expirationTime":"2020-12-03T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120120321000340","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-03T03:24:11Z","modifiedDate":"2021-06-18T23:50:02Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637425606386998625","name":"E2ETest637425606386998625","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 28","lastName":"last 295","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"230863","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-12-03T14:00:00Z","expirationTime":"2020-12-03T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120120321000295","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-03T02:50:48Z","modifiedDate":"2021-06-18T23:50:10Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637425579507191675","name":"E2ETest637425579507191675","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 900","lastName":"last 923","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","additionalEmailAddresses":["nichheda@microsoft.com"],"phoneNumber":"547657687","preferredTimeZone":"Mountain - Standard Time","country":"CAN","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-12-03T14:00:00Z","expirationTime":"2020-12-03T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120120321000211","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-03T02:06:01Z","modifiedDate":"2021-06-18T23:50:14Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637425575593836420","name":"E2ETest637425575593836420","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 533","lastName":"last 75","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"531480","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-12-03T01:59:59Z","expirationTime":"2020-12-03T15:59:59Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120120321000201","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-03T01:59:39Z","modifiedDate":"2021-06-18T23:50:09Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120120321000152","name":"120120321000152","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-12-03T01:30:47Z","expirationTime":"2020-12-03T17:30:47Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120120321000152","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-03T01:30:47Z","modifiedDate":"2021-06-18T23:50:13Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120120321000150","name":"120120321000150","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-12-03T01:30:05Z","expirationTime":"2020-12-03T17:30:05Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120120321000150","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-03T01:30:05Z","modifiedDate":"2021-06-18T23:50:15Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EDCD673398%2522%252C%2522max%2522%253A%252205C1EF3399CD66%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-12-03T01%253A30%253A05.0078793Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9euT8AAAAgBQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-12-03T09%253A01%253A02.9707858Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '15664' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EDCD673398%2522%252C%2522max%2522%253A%252205C1EF3399CD66%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-12-03T01%253A30%253A05.0078793Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9euT8AAAAgBQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-12-03T09%253A01%253A02.9707858Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120120221002454","name":"120120221002454","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-12-02T21:07:06Z","expirationTime":"2020-12-03T01:07:06Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120120221002454","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-02T21:07:06Z","modifiedDate":"2021-06-18T23:50:10Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120120221002451","name":"120120221002451","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-12-02T21:06:18Z","expirationTime":"2020-12-03T01:06:18Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120120221002451","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-02T21:06:18Z","modifiedDate":"2021-06-18T23:49:57Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637424542561074155","name":"E2ETest637424542561074155","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 179","lastName":"last 426","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"726275","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-12-01T21:18:12Z","expirationTime":"2020-12-01T23:18:12Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120120121002192","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-01T21:17:49Z","modifiedDate":"2021-06-18T23:50:14Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637424487009172784","name":"E2ETest637424487009172784","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 998","lastName":"last 420","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"868052","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-12-01T19:45:37Z","expirationTime":"2020-12-01T21:45:37Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120120121001944","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-01T19:45:20Z","modifiedDate":"2021-06-18T23:50:04Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120120121000775","name":"120120121000775","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-12-01T14:00:00Z","expirationTime":"2020-12-01T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120120121000775","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-01T08:45:41Z","modifiedDate":"2021-06-18T23:49:57Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120120121000774","name":"120120121000774","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-12-01T14:00:00Z","expirationTime":"2020-12-01T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120120121000774","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-12-01T08:45:01Z","modifiedDate":"2021-06-18T23:50:17Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120113021002122","name":"120113021002122","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-11-30T23:06:26Z","expirationTime":"2020-12-01T15:06:26Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120113021002122","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-30T23:06:26Z","modifiedDate":"2021-06-18T23:49:56Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120113021002120","name":"120113021002120","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-11-30T23:06:01Z","expirationTime":"2020-12-01T15:06:01Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120113021002120","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-30T23:06:01Z","modifiedDate":"2021-06-18T23:49:56Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637411852616454289","name":"E2ETest637411852616454289","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 324","lastName":"last 478","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"886561","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-17T14:00:00Z","expirationTime":"2020-11-17T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111721001188","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-17T04:48:00Z","modifiedDate":"2021-06-18T23:50:07Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120111221000754","name":"120111221000754","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-11-12T14:00:00Z","expirationTime":"2020-11-12T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111221000754","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-12T07:55:17Z","modifiedDate":"2021-06-18T23:49:45Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1C399CD6730%2522%252C%2522max%2522%253A%252205C1C73399CD60%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-11-12T07%253A55%253A17.962881Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-roT8AAADADw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-12-03T01%253A30%253A05.0078793Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '14609' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1C399CD6730%2522%252C%2522max%2522%253A%252205C1C73399CD60%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-11-12T07%253A55%253A17.962881Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-roT8AAADADw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-12-03T01%253A30%253A05.0078793Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120111221000751","name":"120111221000751","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-11-12T14:00:00Z","expirationTime":"2020-11-12T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111221000751","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-12T07:54:28Z","modifiedDate":"2021-06-18T23:49:53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120111221000404","name":"120111221000404","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-11-12T14:00:00Z","expirationTime":"2020-11-12T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111221000404","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-12T04:15:52Z","modifiedDate":"2021-06-18T23:49:54Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120111221000403","name":"120111221000403","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-11-12T14:00:00Z","expirationTime":"2020-11-12T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111221000403","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-12T04:15:12Z","modifiedDate":"2021-06-18T23:49:44Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120111121000722","name":"120111121000722","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-11-11T14:00:00Z","expirationTime":"2020-11-11T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111121000722","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-11T06:39:39Z","modifiedDate":"2021-06-18T23:50:05Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120111121000720","name":"120111121000720","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test22222","lastName":"Test22222","preferredContactMethod":"Phone","primaryEmailAddress":"bhshah@microsoft.com","additionalEmailAddresses":["rushar@microsoft.com"],"phoneNumber":"4444444444","preferredTimeZone":"Central - Standard Time","country":"CAN","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-11-11T14:00:00Z","expirationTime":"2020-11-11T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111121000720","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-11T06:39:17Z","modifiedDate":"2021-06-18T23:50:03Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637406600532789196","name":"E2ETest637406600532789196","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 51","lastName":"last 18","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","additionalEmailAddresses":["nichheda@microsoft.com","nilay.chheda@microsoft.com"],"phoneNumber":"123456","preferredTimeZone":"Mountain - Standard Time","country":"USA","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-12T14:00:00Z","expirationTime":"2020-11-12T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111121000360","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-11T02:54:28Z","modifiedDate":"2021-06-18T23:49:52Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637406573856175667","name":"E2ETest637406573856175667","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 383","lastName":"last 396","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"522138","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-12T14:00:00Z","expirationTime":"2020-11-12T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111121000271","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-11T02:10:03Z","modifiedDate":"2021-06-18T23:50:04Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637406199233900312","name":"E2ETest637406199233900312","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 609","lastName":"last 503","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"082381","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T23:45:57Z","expirationTime":"2020-11-11T01:45:57Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021005402","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T23:45:29Z","modifiedDate":"2021-06-18T23:50:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637406198124138857","name":"E2ETest637406198124138857","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T23:43:41Z","expirationTime":"2020-11-11T15:43:41Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021005395","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T23:43:41Z","modifiedDate":"2021-06-18T23:49:44Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637406193519855092","name":"E2ETest637406193519855092","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T23:35:58Z","expirationTime":"2020-11-11T15:35:58Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021005376","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T23:35:58Z","modifiedDate":"2021-06-18T23:50:00Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1DFFFFFFFFC%2522%252C%2522max%2522%253A%252205C1E13399CD64%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-11-10T23%253A35%253A58.8681443Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9xUz4AAACgCA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-11-12T07%253A55%253A17.962881Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '15374' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1DFFFFFFFFC%2522%252C%2522max%2522%253A%252205C1E13399CD64%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-11-10T23%253A35%253A58.8681443Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9xUz4AAACgCA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-11-12T07%253A55%253A17.962881Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637406190066050309","name":"E2ETest637406190066050309","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T23:30:13Z","expirationTime":"2020-11-11T15:30:13Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021005362","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T23:30:13Z","modifiedDate":"2021-06-18T23:50:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637406188332813491","name":"E2ETest637406188332813491","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T23:27:31Z","expirationTime":"2020-11-11T15:27:31Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021005350","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T23:27:31Z","modifiedDate":"2021-06-18T23:49:47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637406187384415275","name":"E2ETest637406187384415275","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T23:25:45Z","expirationTime":"2020-11-11T15:25:45Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021005341","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T23:25:45Z","modifiedDate":"2021-06-18T23:49:55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637406185727409410","name":"E2ETest637406185727409410","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 838","lastName":"last 99","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"574741","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T23:23:25Z","expirationTime":"2020-11-11T01:23:25Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021005337","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T23:23:00Z","modifiedDate":"2021-06-18T23:49:58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637406473492150746","name":"E2ETest637406473492150746","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 217","lastName":"last 689","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"667664","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T23:23:01Z","expirationTime":"2020-11-11T01:23:01Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021005336","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T23:22:37Z","modifiedDate":"2021-06-18T23:49:52Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637406473026247923","name":"E2ETest637406473026247923","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 869","lastName":"last 218","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"558072","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T23:22:17Z","expirationTime":"2020-11-11T01:22:17Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021005334","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T23:21:51Z","modifiedDate":"2021-06-18T23:49:57Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637406464218519143","name":"E2ETest637406464218519143","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 842","lastName":"last 974","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"214222","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T23:08:40Z","expirationTime":"2020-11-11T01:08:40Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021005316","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T23:08:18Z","modifiedDate":"2021-06-18T23:50:14Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637406463637021391","name":"E2ETest637406463637021391","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 875","lastName":"last 91","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"343402","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T23:06:47Z","expirationTime":"2020-11-11T01:06:47Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021005313","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T23:06:30Z","modifiedDate":"2021-06-18T23:50:03Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637406325876026007","name":"E2ETest637406325876026007","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - name updated","lastName":"last name updated","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"1111111111","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T19:17:03Z","expirationTime":"2020-11-10T21:17:03Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021003863","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T19:16:38Z","modifiedDate":"2021-06-18T23:49:47Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1C399CD6730%2522%252C%2522max%2522%253A%252205C1C73399CD60%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-11-10T19%253A16%253A38.1320488Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9pnz8AAADADw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-11-10T23%253A35%253A58.8681443Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '15269' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:19:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1C399CD6730%2522%252C%2522max%2522%253A%252205C1C73399CD60%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-11-10T19%253A16%253A38.1320488Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9pnz8AAADADw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-11-10T23%253A35%253A58.8681443Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637406325403029809","name":"E2ETest637406325403029809","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - name updated","lastName":"last name updated","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"1111111111","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T19:16:17Z","expirationTime":"2020-11-10T21:16:17Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021003849","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T19:15:50Z","modifiedDate":"2021-06-18T23:49:47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637406312910205463","name":"E2ETest637406312910205463","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - name updated","lastName":"last name updated","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"1111111111","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T18:55:26Z","expirationTime":"2020-11-10T20:55:26Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021003592","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T18:55:11Z","modifiedDate":"2021-06-18T23:50:07Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637406312462812781","name":"E2ETest637406312462812781","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - name updated","lastName":"last name updated","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"1111111111","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T18:54:42Z","expirationTime":"2020-11-10T20:54:42Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021003583","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T18:54:23Z","modifiedDate":"2021-06-18T23:50:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120111021002441","name":"120111021002441","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-11-10T16:34:27Z","expirationTime":"2020-11-10T20:34:27Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021002441","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T16:34:27Z","modifiedDate":"2021-06-18T23:49:47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120111021002440","name":"120111021002440","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-11-10T16:33:50Z","expirationTime":"2020-11-10T20:33:50Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021002440","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T16:33:50Z","modifiedDate":"2021-06-18T23:50:01Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120111021001368","name":"120111021001368","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-11-10T14:00:00Z","expirationTime":"2020-11-10T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021001368","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T07:45:51Z","modifiedDate":"2021-06-18T23:49:48Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120111021001365","name":"120111021001365","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-11-10T14:00:00Z","expirationTime":"2020-11-10T18:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021001365","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T07:45:29Z","modifiedDate":"2021-06-18T23:50:16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637405514241746190","name":"E2ETest637405514241746190","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - name updated","lastName":"last name updated","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"1111111111","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T14:00:00Z","expirationTime":"2020-11-10T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021001079","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T04:43:53Z","modifiedDate":"2021-06-18T23:49:43Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637405480246665920","name":"E2ETest637405480246665920","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - name updated","lastName":"last name updated","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"1111111111","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T14:00:00Z","expirationTime":"2020-11-10T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021000999","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T03:47:21Z","modifiedDate":"2021-06-18T23:49:52Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1D399CD6730%2522%252C%2522max%2522%253A%252205C1D5673399C8%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-11-10T03%253A47%253A21.3832348Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-VmD8AAADADQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-11-10T19%253A16%253A38.1320488Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '14121' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1D399CD6730%2522%252C%2522max%2522%253A%252205C1D5673399C8%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-11-10T03%253A47%253A21.3832348Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-VmD8AAADADQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-11-10T19%253A16%253A38.1320488Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637405472324000808","name":"E2ETest637405472324000808","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - name updated","lastName":"last name updated","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"1111111111","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T14:00:00Z","expirationTime":"2020-11-10T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021000979","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T03:33:59Z","modifiedDate":"2021-06-18T23:50:11Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637405470835259937","name":"E2ETest637405470835259937","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - name updated","lastName":"last name updated","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"1111111111","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T14:00:00Z","expirationTime":"2020-11-10T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021000976","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T03:31:31Z","modifiedDate":"2021-06-18T23:49:45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637405470411021578","name":"E2ETest637405470411021578","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - name updated","lastName":"last name updated","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"1111111111","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T14:00:00Z","expirationTime":"2020-11-10T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021000973","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T03:30:51Z","modifiedDate":"2021-06-18T23:50:03Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637405441453221343","name":"E2ETest637405441453221343","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 385","lastName":"last 178","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"237511","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T14:00:00Z","expirationTime":"2020-11-10T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021000914","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T02:42:32Z","modifiedDate":"2021-06-18T23:49:57Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637405426661668531","name":"E2ETest637405426661668531","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - name updated","lastName":"last name updated","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"1111111111","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T14:00:00Z","expirationTime":"2020-11-10T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021000879","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T02:18:15Z","modifiedDate":"2021-06-18T23:50:10Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637405425586139695","name":"E2ETest637405425586139695","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - name updated","lastName":"last name updated","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"1111111111","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T14:00:00Z","expirationTime":"2020-11-10T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021000874","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T02:16:09Z","modifiedDate":"2021-06-18T23:49:43Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637405417082106219","name":"E2ETest637405417082106219","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - name updated","lastName":"last name updated","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"1111111111","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T14:00:00Z","expirationTime":"2020-11-10T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021000838","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T02:01:55Z","modifiedDate":"2021-06-18T23:50:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637405411135615097","name":"E2ETest637405411135615097","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - name updated","lastName":"last name updated","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"1111111111","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T01:52:27Z","expirationTime":"2020-11-10T15:52:27Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021000820","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T01:52:01Z","modifiedDate":"2021-06-18T23:50:10Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637405401812233561","name":"E2ETest637405401812233561","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - name updated","lastName":"last name updated","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"1111111111","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T01:36:57Z","expirationTime":"2020-11-10T15:36:57Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021000783","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T01:36:30Z","modifiedDate":"2021-06-18T23:49:54Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637405398388403581","name":"E2ETest637405398388403581","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - name updated","lastName":"last name updated","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"1111111111","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T01:31:11Z","expirationTime":"2020-11-10T15:31:11Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021000774","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T01:30:44Z","modifiedDate":"2021-06-18T23:50:07Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E5CD673396%2522%252C%2522max%2522%253A%252205C1E73399CD64%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-11-10T01%253A30%253A44.3752393Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-UnD8AAADABg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-11-10T03%253A47%253A21.3832348Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '17130' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E5CD673396%2522%252C%2522max%2522%253A%252205C1E73399CD64%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-11-10T01%253A30%253A44.3752393Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-UnD8AAADABg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-11-10T03%253A47%253A21.3832348Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637405397991881110","name":"E2ETest637405397991881110","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - name updated","lastName":"last name updated","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"1111111111","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T01:30:32Z","expirationTime":"2020-11-10T15:30:32Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021000772","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T01:30:04Z","modifiedDate":"2021-06-18T23:50:06Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637405394494974077","name":"E2ETest637405394494974077","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T01:24:42Z","expirationTime":"2020-11-10T15:24:42Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021000760","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T01:24:16Z","modifiedDate":"2021-06-18T23:49:53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637405393094698962","name":"E2ETest637405393094698962","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T01:22:22Z","expirationTime":"2020-11-10T15:22:22Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021000749","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T01:21:55Z","modifiedDate":"2021-06-18T23:50:10Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637405392727950106","name":"E2ETest637405392727950106","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T01:21:45Z","expirationTime":"2020-11-10T15:21:45Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021000748","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T01:21:20Z","modifiedDate":"2021-06-18T23:49:55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637405672263266095","name":"E2ETest637405672263266095","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T01:07:39Z","expirationTime":"2020-11-10T15:07:39Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021000718","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T01:07:14Z","modifiedDate":"2021-06-18T23:50:05Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637405671850735556","name":"E2ETest637405671850735556","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T01:07:01Z","expirationTime":"2020-11-10T15:07:01Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021000717","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T01:06:38Z","modifiedDate":"2021-06-18T23:49:51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637405668551607510","name":"E2ETest637405668551607510","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T01:01:31Z","expirationTime":"2020-11-10T15:01:31Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021000704","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T01:01:06Z","modifiedDate":"2021-06-18T23:49:51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637405668108546925","name":"E2ETest637405668108546925","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-10T01:00:50Z","expirationTime":"2020-11-10T15:00:50Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120111021000702","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-10T01:00:34Z","modifiedDate":"2021-06-18T23:49:43Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637403203021570584","name":"E2ETest637403203021570584","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 304","lastName":"last 757","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"707","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-09T14:00:00Z","expirationTime":"2020-11-09T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120110721000263","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-07T04:32:01Z","modifiedDate":"2021-06-18T23:49:51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637403165237050891","name":"E2ETest637403165237050891","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 18","lastName":"last 487","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"617","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-11-09T14:00:00Z","expirationTime":"2020-11-09T16:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120110721000247","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-11-07T03:29:04Z","modifiedDate":"2021-06-18T23:49:54Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1D1CD673394%2522%252C%2522max%2522%253A%252205C1D399CD6730%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-11-07T03%253A29%253A04.5240459Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9zmj8AAADAAQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-11-10T01%253A30%253A44.3752393Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '16760' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1D1CD673394%2522%252C%2522max%2522%253A%252205C1D399CD6730%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-11-07T03%253A29%253A04.5240459Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9zmj8AAADAAQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-11-10T01%253A30%253A44.3752393Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120103021000398","name":"120103021000398","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-10-30T13:00:00Z","expirationTime":"2020-10-30T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120103021000398","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-30T03:24:58Z","modifiedDate":"2021-06-18T23:50:11Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120103021000397","name":"120103021000397","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-10-30T13:00:00Z","expirationTime":"2020-10-30T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120103021000397","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-30T03:24:36Z","modifiedDate":"2021-06-18T23:49:51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120102921000161","name":"120102921000161","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-10-29T13:00:00Z","expirationTime":"2020-10-29T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120102921000161","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-29T01:27:38Z","modifiedDate":"2021-06-18T23:50:11Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120102921000159","name":"120102921000159","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-10-29T13:00:00Z","expirationTime":"2020-10-29T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120102921000159","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-29T01:27:16Z","modifiedDate":"2021-06-18T23:50:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637395045956838625","name":"E2ETest637395045956838625","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 176","lastName":"last 836","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"326","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-10-28T17:57:42Z","expirationTime":"2020-10-28T19:57:42Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120102821002004","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-28T17:57:08Z","modifiedDate":"2021-06-18T23:50:09Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120102821000314","name":"120102821000314","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-10-28T13:00:00Z","expirationTime":"2020-10-28T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120102821000314","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-28T02:35:46Z","modifiedDate":"2021-06-18T23:49:41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120102821000313","name":"120102821000313","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-10-28T13:00:00Z","expirationTime":"2020-10-28T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120102821000313","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-28T02:35:29Z","modifiedDate":"2021-06-18T23:49:47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637394444531112459","name":"E2ETest637394444531112459","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 281","lastName":"last 477","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"527","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-10-28T13:00:00Z","expirationTime":"2020-10-28T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120102821000163","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-28T01:14:33Z","modifiedDate":"2021-06-18T23:50:09Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120102721003176","name":"120102721003176","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-10-27T20:53:44Z","expirationTime":"2020-10-28T00:53:44Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120102721003176","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-27T20:53:44Z","modifiedDate":"2021-06-18T23:50:02Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120102721003173","name":"120102721003173","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-10-27T20:53:29Z","expirationTime":"2020-10-28T00:53:29Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120102721003173","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-27T20:53:29Z","modifiedDate":"2021-06-18T23:50:01Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E1673399CA%2522%252C%2522max%2522%253A%252205C1E1CD673398%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-10-27T20%253A53%253A29.3073187Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-xjD8AAABAAQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-11-07T03%253A29%253A04.5240459Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '14278' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E1673399CA%2522%252C%2522max%2522%253A%252205C1E1CD673398%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-10-27T20%253A53%253A29.3073187Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-xjD8AAABAAQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-11-07T03%253A29%253A04.5240459Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120102121001179","name":"120102121001179","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-10-21T13:00:00Z","expirationTime":"2020-10-21T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120102121001179","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-21T10:24:49Z","modifiedDate":"2021-06-18T23:50:11Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120102121001176","name":"120102121001176","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-10-21T13:00:00Z","expirationTime":"2020-10-21T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120102121001176","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-21T10:24:27Z","modifiedDate":"2021-06-18T23:50:05Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120102121000078","name":"120102121000078","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-10-21T00:53:51Z","expirationTime":"2020-10-21T16:53:51Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120102121000078","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-21T00:53:51Z","modifiedDate":"2021-06-18T23:49:48Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120102121000077","name":"120102121000077","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-10-21T00:53:39Z","expirationTime":"2020-10-21T16:53:39Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120102121000077","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-21T00:53:39Z","modifiedDate":"2021-06-18T23:50:02Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253A%2522%252BRID%253A%7ee6dtAI34RR8Rgz8AAABAAQ%253D%253D%2523RT%253A1%2523TRC%253A10%2523RTD%253Aji0%252BIW5zwLFF4%252FkySpIzBTMxMzEuMjEuMzJVMTE7NjQ7NDovNjE4NTQxN1sA%2523ISV%253A2%2523IEO%253A65551%2523QCF%253A7%2523FPC%253AAgj8AAAAAAUAAAIBAAAABQAA%252FAAAAAAFAAACAKOQ%252FQAAAAAFAAAEAFeLAYf%252BAAAAAAUAAAoAEYPRiSqCY5CCgAABAAAABQAABACagquhAQEAAAAFAAAEAACfrZgCAQAAAAUAAAIAPZw%253D%2522%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E1673399CA%2522%252C%2522max%2522%253A%252205C1E1CD673398%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-10-21T00%253A53%253A39.5074306Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8Rgz8AAABAAQ%253D%253D%2522%252C%2522skipCount%2522%253A0%252C%2522filter%2522%253A%2522true%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '6125' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253A%2522%252BRID%253A~e6dtAI34RR8Rgz8AAABAAQ%253D%253D%2523RT%253A1%2523TRC%253A10%2523RTD%253Aji0%252BIW5zwLFF4%252FkySpIzBTMxMzEuMjEuMzJVMTE7NjQ7NDovNjE4NTQxN1sA%2523ISV%253A2%2523IEO%253A65551%2523QCF%253A7%2523FPC%253AAgj8AAAAAAUAAAIBAAAABQAA%252FAAAAAAFAAACAKOQ%252FQAAAAAFAAAEAFeLAYf%252BAAAAAAUAAAoAEYPRiSqCY5CCgAABAAAABQAABACagquhAQEAAAAFAAAEAACfrZgCAQAAAAUAAAIAPZw%253D%2522%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E1673399CA%2522%252C%2522max%2522%253A%252205C1E1CD673398%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-10-21T00%253A53%253A39.5074306Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8Rgz8AAABAAQ%253D%253D%2522%252C%2522skipCount%2522%253A0%252C%2522filter%2522%253A%2522true%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120102021003275","name":"120102021003275","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-10-20T23:23:55Z","expirationTime":"2020-10-21T15:23:55Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120102021003275","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-20T23:23:55Z","modifiedDate":"2021-06-18T23:50:13Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120102021003274","name":"120102021003274","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-10-20T23:23:41Z","expirationTime":"2020-10-21T15:23:41Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120102021003274","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-20T23:23:41Z","modifiedDate":"2021-06-18T23:49:59Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120102021002940","name":"120102021002940","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-10-20T21:06:30Z","expirationTime":"2020-10-21T13:06:30Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120102021002940","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-20T21:06:30Z","modifiedDate":"2021-06-18T23:49:59Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120102021002938","name":"120102021002938","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-10-20T21:06:08Z","expirationTime":"2020-10-21T13:06:08Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120102021002938","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-20T21:06:08Z","modifiedDate":"2021-06-18T23:50:13Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637387543775708863","name":"E2ETest637387543775708863","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 455","lastName":"last 335","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"118","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-10-20T13:00:00Z","expirationTime":"2020-10-20T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120102021000208","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-20T01:33:09Z","modifiedDate":"2021-06-18T23:50:14Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637387540106594671","name":"E2ETest637387540106594671","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 744","lastName":"last 852","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"617","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-10-20T13:00:00Z","expirationTime":"2020-10-20T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120102021000196","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-20T01:27:13Z","modifiedDate":"2021-06-18T23:49:54Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637384705409910881","name":"E2ETest637384705409910881","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 913","lastName":"last 631","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"762","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-10-16T18:42:59Z","expirationTime":"2020-10-16T20:42:59Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120101621001497","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-16T18:42:39Z","modifiedDate":"2021-06-18T23:50:05Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637383207899334960","name":"E2ETest637383207899334960","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 930","lastName":"last 592","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"222","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-10-15T13:00:00Z","expirationTime":"2020-10-15T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120101521000094","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-15T01:06:49Z","modifiedDate":"2021-06-18T23:50:06Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E799CD6730%2522%252C%2522max%2522%253A%252205C1E7CD673396%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-10-15T01%253A06%253A49.1446695Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-OQD4AAACgCw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-10-21T00%253A53%253A39.5074306Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '12402' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E799CD6730%2522%252C%2522max%2522%253A%252205C1E7CD673396%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-10-15T01%253A06%253A49.1446695Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-OQD4AAACgCw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-10-21T00%253A53%253A39.5074306Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637383047865986885","name":"E2ETest637383047865986885","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 485","lastName":"last 552","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"471","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-10-14T20:40:26Z","expirationTime":"2020-10-14T22:40:26Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120101421002253","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-14T20:40:06Z","modifiedDate":"2021-06-18T23:49:49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637382275452811467","name":"E2ETest637382275452811467","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 333","lastName":"last 904","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"005","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-10-13T23:13:00Z","expirationTime":"2020-10-14T13:13:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120101321002721","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-13T23:12:35Z","modifiedDate":"2021-06-18T23:49:59Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120101221000377","name":"120101221000377","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-10-12T13:00:00Z","expirationTime":"2020-10-12T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120101221000377","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-12T04:08:36Z","modifiedDate":"2021-06-18T23:49:54Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1D5CD673394%2522%252C%2522max%2522%253A%252205C1D73399CD64%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-10-12T04%253A08%253A36.8606402Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9lPT4AAABgAA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-10-15T01%253A06%253A49.1446695Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '5411' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1D5CD673394%2522%252C%2522max%2522%253A%252205C1D73399CD64%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-10-12T04%253A08%253A36.8606402Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9lPT4AAABgAA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-10-15T01%253A06%253A49.1446695Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120101221000376","name":"120101221000376","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-10-12T13:00:00Z","expirationTime":"2020-10-12T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120101221000376","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-12T04:08:24Z","modifiedDate":"2021-06-18T23:50:14Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120101221000122","name":"120101221000122","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-10-12T13:00:00Z","expirationTime":"2020-10-12T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120101221000122","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-12T01:52:27Z","modifiedDate":"2021-06-18T23:49:57Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120101221000118","name":"120101221000118","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-10-12T13:00:00Z","expirationTime":"2020-10-12T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120101221000118","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-12T01:52:11Z","modifiedDate":"2021-06-18T23:49:45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637375554593918839","name":"E2ETest637375554593918839","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 255","lastName":"last 341","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"777","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-10-06T13:00:00Z","expirationTime":"2020-10-06T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120100621000416","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-06T04:31:13Z","modifiedDate":"2021-06-18T23:50:06Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637375359471931122","name":"E2ETest637375359471931122","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 538","lastName":"last 196","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"465","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-10-05T23:06:23Z","expirationTime":"2020-10-06T13:06:23Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120100521003212","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-05T23:06:01Z","modifiedDate":"2021-06-18T23:49:58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120100321000063","name":"120100321000063","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-10-05T13:00:00Z","expirationTime":"2020-10-05T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120100321000063","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-03T01:49:10Z","modifiedDate":"2021-06-18T23:49:47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120100321000062","name":"120100321000062","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-10-05T13:00:00Z","expirationTime":"2020-10-05T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120100321000062","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-03T01:48:53Z","modifiedDate":"2021-06-18T23:49:55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637372685386171234","name":"E2ETest637372685386171234","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 523","lastName":"last 309","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"426","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-10-02T20:49:34Z","expirationTime":"2020-10-02T22:49:34Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120100221002495","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-02T20:49:15Z","modifiedDate":"2021-06-18T23:49:47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637371740815322531","name":"E2ETest637371740815322531","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 405","lastName":"last 472","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"364","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-10-01T18:35:17Z","expirationTime":"2020-10-01T20:35:17Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120100121002366","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-01T18:34:52Z","modifiedDate":"2021-06-18T23:50:09Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637371196872088368","name":"E2ETest637371196872088368","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 959","lastName":"last 540","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"644","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-10-01T13:00:00Z","expirationTime":"2020-10-01T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120100121000315","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-10-01T03:28:23Z","modifiedDate":"2021-06-18T23:50:06Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E399CD6732%2522%252C%2522max%2522%253A%252205C1E3FFFFFFFE%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-10-01T03%253A28%253A23.5668977Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BBZT8AAADADA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-10-12T04%253A08%253A36.8606402Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '15266' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E399CD6732%2522%252C%2522max%2522%253A%252205C1E3FFFFFFFE%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-10-01T03%253A28%253A23.5668977Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BBZT8AAADADA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-10-12T04%253A08%253A36.8606402Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120093021000143","name":"120093021000143","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-09-30T13:00:00Z","expirationTime":"2020-09-30T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120093021000143","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-30T01:57:44Z","modifiedDate":"2021-06-18T23:50:04Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120093021000142","name":"120093021000142","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-09-30T13:00:00Z","expirationTime":"2020-09-30T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120093021000142","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-30T01:57:22Z","modifiedDate":"2021-06-18T23:49:59Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120092921002620","name":"120092921002620","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-09-29T18:37:59Z","expirationTime":"2020-09-29T22:37:59Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120092921002620","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-29T18:37:59Z","modifiedDate":"2021-06-18T23:50:17Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120092821002851","name":"120092821002851","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-09-28T20:39:31Z","expirationTime":"2020-09-29T00:39:31Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120092821002851","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-28T20:39:31Z","modifiedDate":"2021-06-18T23:49:59Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1DF3399CD60%2522%252C%2522max%2522%253A%252205C1DFFFFFFFFC%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-09-28T20%253A39%253A31.4489745Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8mYz8AAADAAA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-10-01T03%253A28%253A23.5668977Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '6021' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1DF3399CD60%2522%252C%2522max%2522%253A%252205C1DFFFFFFFFC%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-09-28T20%253A39%253A31.4489745Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8mYz8AAADAAA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-10-01T03%253A28%253A23.5668977Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120092821002848","name":"120092821002848","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-09-28T20:38:57Z","expirationTime":"2020-09-29T00:38:57Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120092821002848","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-28T20:38:57Z","modifiedDate":"2021-06-18T23:50:00Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1DFFFFFFFFC%2522%252C%2522max%2522%253A%252205C1E13399CD64%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-09-28T20%253A38%253A57.3361017Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BHNT4AAACgCA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-09-28T20%253A39%253A31.4489745Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '2232' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1DFFFFFFFFC%2522%252C%2522max%2522%253A%252205C1E13399CD64%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-09-28T20%253A38%253A57.3361017Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BHNT4AAACgCA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-09-28T20%253A39%253A31.4489745Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637366901809758698","name":"E2ETest637366901809758698","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 352","lastName":"last 734","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"420","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-09-28T13:00:00Z","expirationTime":"2020-09-28T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120092621000126","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-26T04:09:56Z","modifiedDate":"2021-06-18T23:49:50Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1CD673399C8%2522%252C%2522max%2522%253A%252205C1CF3399CD60%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-09-26T04%253A09%253A56.8093853Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9UNj4AAACgDQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-09-28T20%253A38%253A57.3361017Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '2551' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1CD673399C8%2522%252C%2522max%2522%253A%252205C1CF3399CD60%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-09-26T04%253A09%253A56.8093853Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9UNj4AAACgDQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-09-28T20%253A38%253A57.3361017Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120092621000048","name":"120092621000048","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-09-26T00:42:35Z","expirationTime":"2020-09-28T16:42:35Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120092621000048","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-26T00:42:35Z","modifiedDate":"2021-06-18T23:50:10Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120092621000047","name":"120092621000047","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-09-26T00:41:50Z","expirationTime":"2020-09-28T16:41:50Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120092621000047","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-26T00:41:50Z","modifiedDate":"2021-06-18T23:49:54Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120092521001624","name":"120092521001624","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-09-25T18:44:32Z","expirationTime":"2020-09-25T22:44:32Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120092521001624","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-25T18:44:32Z","modifiedDate":"2021-06-18T23:49:57Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120092521001622","name":"120092521001622","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-09-25T18:44:17Z","expirationTime":"2020-09-25T22:44:17Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120092521001622","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-25T18:44:17Z","modifiedDate":"2021-06-18T23:50:09Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E7673399CA%2522%252C%2522max%2522%253A%252205C1E799CD6730%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-09-25T18%253A44%253A17.4698861Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252B8Mz4AAACgAQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-09-26T04%253A09%253A56.8093853Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '6030' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E7673399CA%2522%252C%2522max%2522%253A%252205C1E799CD6730%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-09-25T18%253A44%253A17.4698861Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252B8Mz4AAACgAQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-09-26T04%253A09%253A56.8093853Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120092521000142","name":"120092521000142","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-09-25T13:00:00Z","expirationTime":"2020-09-25T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120092521000142","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-25T06:47:55Z","modifiedDate":"2021-06-18T23:49:48Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1BFFFFFFFF0%2522%252C%2522max%2522%253A%252205C1C399CD6730%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-09-25T06%253A47%253A55.8464087Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-oXj8AAAAgBw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-09-25T18%253A44%253A17.4698861Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '2223' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1BFFFFFFFF0%2522%252C%2522max%2522%253A%252205C1C399CD6730%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-09-25T06%253A47%253A55.8464087Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-oXj8AAAAgBw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-09-25T18%253A44%253A17.4698861Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120092521000141","name":"120092521000141","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-09-25T13:00:00Z","expirationTime":"2020-09-25T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120092521000141","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-25T06:47:32Z","modifiedDate":"2021-06-18T23:49:42Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120092321009989","name":"120092321009989","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-09-23T19:53:24Z","expirationTime":"2020-09-23T23:53:24Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120092321009989","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-23T19:53:24Z","modifiedDate":"2021-06-18T23:50:01Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120092321009984","name":"120092321009984","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-09-23T19:53:09Z","expirationTime":"2020-09-23T23:53:09Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120092321009984","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-23T19:53:09Z","modifiedDate":"2021-06-18T23:50:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637363589052554032","name":"E2ETest637363589052554032","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 37","lastName":"last 110","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"510","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-09-22T13:00:00Z","expirationTime":"2020-09-22T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120092221000583","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-22T08:09:15Z","modifiedDate":"2021-06-18T23:50:10Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637363451627994260","name":"E2ETest637363451627994260","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 508","lastName":"last 221","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"710","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-09-22T13:00:00Z","expirationTime":"2020-09-22T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120092221000298","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-22T04:19:39Z","modifiedDate":"2021-06-18T23:50:07Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E5CD673396%2522%252C%2522max%2522%253A%252205C1E73399CD64%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-09-22T04%253A19%253A39.9645649Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-NWD8AAADABg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-09-25T06%253A47%253A55.8464087Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '7947' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E5CD673396%2522%252C%2522max%2522%253A%252205C1E73399CD64%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-09-22T04%253A19%253A39.9645649Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-NWD8AAADABg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-09-25T06%253A47%253A55.8464087Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637362991734453681","name":"E2ETest637362991734453681","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 277","lastName":"last 347","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"565","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-09-21T15:33:27Z","expirationTime":"2020-09-21T17:33:27Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120092121001282","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-21T15:33:00Z","modifiedDate":"2021-06-18T23:49:57Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637361863475461527","name":"E2ETest637361863475461527","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 395","lastName":"last 941","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"210","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-09-21T13:00:00Z","expirationTime":"2020-09-21T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120092021000125","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-20T08:12:34Z","modifiedDate":"2021-06-18T23:49:45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637361669410675157","name":"E2ETest637361669410675157","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-09-21T13:00:00Z","expirationTime":"2020-09-21T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120092021000045","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-20T02:49:10Z","modifiedDate":"2021-06-18T23:49:42Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637361669000664231","name":"E2ETest637361669000664231","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-09-21T13:00:00Z","expirationTime":"2020-09-21T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120092021000044","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-20T02:48:26Z","modifiedDate":"2021-06-18T23:50:15Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EF3399CD66%2522%252C%2522max%2522%253A%252205C1EF673399CC%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-09-20T02%253A48%253A26.5891526Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-yLz4AAACgDA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-09-22T04%253A19%253A39.9645649Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '7292' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EF3399CD66%2522%252C%2522max%2522%253A%252205C1EF673399CC%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-09-20T02%253A48%253A26.5891526Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-yLz4AAACgDA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-09-22T04%253A19%253A39.9645649Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637361601023858174","name":"E2ETest637361601023858174","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-09-21T13:00:00Z","expirationTime":"2020-09-21T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120092021000027","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-20T00:55:07Z","modifiedDate":"2021-06-18T23:49:54Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1D5673399C8%2522%252C%2522max%2522%253A%252205C1D5CD673394%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-09-20T00%253A55%253A07.8480749Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-dLz4AAACgDw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-09-20T02%253A48%253A26.5891526Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '2528' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1D5673399C8%2522%252C%2522max%2522%253A%252205C1D5CD673394%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-09-20T00%253A55%253A07.8480749Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-dLz4AAACgDw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-09-20T02%253A48%253A26.5891526Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637361600622070041","name":"E2ETest637361600622070041","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"case","lastName":"submission","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-09-21T13:00:00Z","expirationTime":"2020-09-21T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120092021000026","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-20T00:54:35Z","modifiedDate":"2021-06-18T23:50:11Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637360882473395989","name":"E2ETest637360882473395989","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 545","lastName":"last 657","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"304","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-09-21T13:00:00Z","expirationTime":"2020-09-21T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120091921000117","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-19T04:57:40Z","modifiedDate":"2021-06-18T23:50:01Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E13399CD64%2522%252C%2522max%2522%253A%252205C1E1673399CA%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-09-19T04%253A57%253A40.0489104Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BKLj4AAACgBA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-09-20T00%253A55%253A07.8480749Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '4131' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E13399CD64%2522%252C%2522max%2522%253A%252205C1E1673399CA%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-09-19T04%253A57%253A40.0489104Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BKLj4AAACgBA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-09-20T00%253A55%253A07.8480749Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120091621000610","name":"120091621000610","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-09-16T13:00:00Z","expirationTime":"2020-09-16T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120091621000610","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-16T06:56:34Z","modifiedDate":"2021-06-18T23:50:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120091621000608","name":"120091621000608","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-09-16T13:00:00Z","expirationTime":"2020-09-16T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120091621000608","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-16T06:56:19Z","modifiedDate":"2021-06-18T23:50:09Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120091521000181","name":"120091521000181","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-09-15T13:00:00Z","expirationTime":"2020-09-15T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120091521000181","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-15T01:50:23Z","modifiedDate":"2021-06-18T23:49:55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120091521000180","name":"120091521000180","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-09-15T13:00:00Z","expirationTime":"2020-09-15T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120091521000180","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-15T01:50:04Z","modifiedDate":"2021-06-18T23:49:43Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637357250479446134","name":"E2ETest637357250479446134","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 41","lastName":"last 192","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"132","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-09-15T00:06:19Z","expirationTime":"2020-09-15T14:06:19Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120091521000012","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-15T00:06:03Z","modifiedDate":"2021-06-18T23:50:03Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637357164725416463","name":"E2ETest637357164725416463","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 578","lastName":"last 915","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"443","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-09-14T21:41:48Z","expirationTime":"2020-09-14T23:41:48Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120091421002916","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-14T21:41:20Z","modifiedDate":"2021-06-18T23:49:48Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1C73399CD60%2522%252C%2522max%2522%253A%252205C1C9CD673398%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-09-14T21%253A41%253A20.7459286Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR--Tz8AAAAgAA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-09-19T04%253A57%253A40.0489104Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '9208' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1C73399CD60%2522%252C%2522max%2522%253A%252205C1C9CD673398%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-09-14T21%253A41%253A20.7459286Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR--Tz8AAAAgAA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-09-19T04%253A57%253A40.0489104Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637357161028524480","name":"E2ETest637357161028524480","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 222","lastName":"last 947","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"160","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-09-14T21:35:41Z","expirationTime":"2020-09-14T23:35:41Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120091421002899","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-14T21:35:27Z","modifiedDate":"2021-06-18T23:49:58Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1DB99CD6730%2522%252C%2522max%2522%253A%252205C1DBFFFFFFFC%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-09-14T21%253A35%253A27.3961179Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8VLD4AAAAgDw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-09-14T21%253A41%253A20.7459286Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '2556' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1DB99CD6730%2522%252C%2522max%2522%253A%252205C1DBFFFFFFFC%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-09-14T21%253A35%253A27.3961179Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8VLD4AAAAgDw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-09-14T21%253A41%253A20.7459286Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637354079345381919","name":"E2ETest637354079345381919","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 772","lastName":"last 490","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"563","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-09-11T13:00:00Z","expirationTime":"2020-09-11T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120091121000842","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-11T07:59:10Z","modifiedDate":"2021-06-18T23:50:06Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120091021002238","name":"120091021002238","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-09-10T18:00:55Z","expirationTime":"2020-09-10T22:00:55Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120091021002238","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-10T18:00:55Z","modifiedDate":"2021-06-18T23:50:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120091021002237","name":"120091021002237","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-09-10T18:00:38Z","expirationTime":"2020-09-10T22:00:38Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120091021002237","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-10T18:00:38Z","modifiedDate":"2021-06-18T23:50:02Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120090121002756","name":"120090121002756","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-09-01T20:30:45Z","expirationTime":"2020-09-02T00:30:45Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120090121002756","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-01T20:30:45Z","modifiedDate":"2021-06-18T23:50:04Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120090121002754","name":"120090121002754","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-09-01T20:30:25Z","expirationTime":"2020-09-02T00:30:25Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120090121002754","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-01T20:30:25Z","modifiedDate":"2021-06-18T23:49:44Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1B9CD673390%2522%252C%2522max%2522%253A%252205C1BFFFFFFFF0%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-09-01T20%253A30%253A25.4255863Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BCOz8AAAAgCw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-09-14T21%253A35%253A27.3961179Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '7619' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1B9CD673390%2522%252C%2522max%2522%253A%252205C1BFFFFFFFF0%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-09-01T20%253A30%253A25.4255863Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BCOz8AAAAgCw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-09-14T21%253A35%253A27.3961179Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637345249472555831","name":"E2ETest637345249472555831","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 73","lastName":"last 788","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"611","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-09-01T13:00:00Z","expirationTime":"2020-09-01T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120090121000270","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-01T02:42:47Z","modifiedDate":"2021-06-18T23:50:09Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637345161114766323","name":"E2ETest637345161114766323","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 722","lastName":"last 999","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"137","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-09-01T00:15:49Z","expirationTime":"2020-09-01T14:15:49Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120090121000031","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-09-01T00:15:33Z","modifiedDate":"2021-06-18T23:49:45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120082621000130","name":"120082621000130","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-08-26T13:00:00Z","expirationTime":"2020-08-26T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120082621000130","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-26T01:14:07Z","modifiedDate":"2021-06-18T23:49:45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120082621000128","name":"120082621000128","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-08-26T13:00:00Z","expirationTime":"2020-08-26T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120082621000128","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-26T01:13:51Z","modifiedDate":"2021-06-18T23:49:56Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637339994238035582","name":"E2ETest637339994238035582","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 713","lastName":"last 848","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"524","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-08-26T00:44:20Z","expirationTime":"2020-08-26T14:44:20Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120082621000070","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-26T00:43:56Z","modifiedDate":"2021-06-18T23:50:10Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637339934777869041","name":"E2ETest637339934777869041","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 326","lastName":"last 181","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"182","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-08-25T23:05:17Z","expirationTime":"2020-08-26T13:05:17Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120082521003167","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-25T23:04:59Z","modifiedDate":"2021-06-18T23:50:03Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E33399CD64%2522%252C%2522max%2522%253A%252205C1E399CD6732%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-25T23%253A04%253A59.2167383Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252B1ND8AAADABQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-09-01T20%253A30%253A25.4255863Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '9873' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E33399CD64%2522%252C%2522max%2522%253A%252205C1E399CD6732%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-25T23%253A04%253A59.2167383Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252B1ND8AAADABQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-09-01T20%253A30%253A25.4255863Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120082021000035","name":"120082021000035","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-08-20T00:17:11Z","expirationTime":"2020-08-20T16:17:11Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120082021000035","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-20T00:17:11Z","modifiedDate":"2021-06-18T23:49:57Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120082021000034","name":"120082021000034","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-08-20T00:16:54Z","expirationTime":"2020-08-20T16:16:54Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120082021000034","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-20T00:16:54Z","modifiedDate":"2021-06-18T23:49:42Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1A9CD673380%2522%252C%2522max%2522%253A%252205C1B399CD6720%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-20T00%253A16%253A54.2660797Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BrKT8AAAAgDQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-08-25T23%253A04%253A59.2167383Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '3493' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1A9CD673380%2522%252C%2522max%2522%253A%252205C1B399CD6720%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-20T00%253A16%253A54.2660797Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BrKT8AAAAgDQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-08-25T23%253A04%253A59.2167383Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637334149020668242","name":"E2ETest637334149020668242","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 821","lastName":"last 595","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"125","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-08-19T13:00:00Z","expirationTime":"2020-08-19T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120081921000604","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-19T06:22:03Z","modifiedDate":"2021-06-18T23:49:58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120081821003110","name":"120081821003110","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-08-18T21:57:52Z","expirationTime":"2020-08-19T13:57:52Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120081821003110","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-18T21:57:52Z","modifiedDate":"2021-06-18T23:50:16Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EF99CD6732%2522%252C%2522max%2522%253A%2522FF%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-18T21%253A57%253A52.6066835Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-BKj8AAAAgBg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-08-20T00%253A16%253A54.2660797Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '3810' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EF99CD6732%2522%252C%2522max%2522%253A%2522FF%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-18T21%253A57%253A52.6066835Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-BKj8AAAAgBg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-08-20T00%253A16%253A54.2660797Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120081821003107","name":"120081821003107","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-08-18T21:57:33Z","expirationTime":"2020-08-19T13:57:33Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120081821003107","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-18T21:57:33Z","modifiedDate":"2021-06-18T23:50:11Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637333256456178921","name":"E2ETest637333256456178921","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 238","lastName":"last 968","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"482","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-08-18T13:00:00Z","expirationTime":"2020-08-18T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120081821000418","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-18T05:34:17Z","modifiedDate":"2021-06-18T23:50:14Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EF673399CC%2522%252C%2522max%2522%253A%252205C1EF99CD6732%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-18T05%253A34%253A17.2157449Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8nGj4AAACgAg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-08-18T21%253A57%253A52.6066835Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '3817' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EF673399CC%2522%252C%2522max%2522%253A%252205C1EF99CD6732%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-18T05%253A34%253A17.2157449Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8nGj4AAACgAg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-08-18T21%253A57%253A52.6066835Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637333255965636739","name":"E2ETest637333255965636739","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 660","lastName":"last 450","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"574","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-08-18T13:00:00Z","expirationTime":"2020-08-18T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120081821000417","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-18T05:33:39Z","modifiedDate":"2021-06-18T23:50:07Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120081821000205","name":"120081821000205","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-08-18T13:00:00Z","expirationTime":"2020-08-18T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120081821000205","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-18T02:21:56Z","modifiedDate":"2021-06-18T23:49:58Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1DD673399C8%2522%252C%2522max%2522%253A%252205C1DF3399CD60%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-18T02%253A21%253A56.4240062Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-LKD8AAABADw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-08-18T05%253A34%253A17.2157449Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '3817' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1DD673399C8%2522%252C%2522max%2522%253A%252205C1DF3399CD60%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-18T02%253A21%253A56.4240062Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-LKD8AAABADw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-08-18T05%253A34%253A17.2157449Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120081821000204","name":"120081821000204","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-08-18T13:00:00Z","expirationTime":"2020-08-18T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120081821000204","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-18T02:21:40Z","modifiedDate":"2021-06-18T23:50:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120081521000279","name":"120081521000279","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-08-17T13:00:00Z","expirationTime":"2020-08-17T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120081521000279","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-15T18:44:18Z","modifiedDate":"2021-06-18T23:50:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120081521000278","name":"120081521000278","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-08-17T13:00:00Z","expirationTime":"2020-08-17T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120081521000278","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-15T18:44:02Z","modifiedDate":"2021-06-18T23:50:09Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120081224005256","name":"120081224005256","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-08-12T17:15:57Z","expirationTime":"2020-08-12T21:15:57Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120081224005256","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-12T17:15:57Z","modifiedDate":"2021-06-18T23:49:51Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1CFFFFFFFF8%2522%252C%2522max%2522%253A%252205C1D1CD673394%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-12T17%253A15%253A57.0764532Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8XJD8AAADADg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-08-18T02%253A21%253A56.4240062Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '6021' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1CFFFFFFFF8%2522%252C%2522max%2522%253A%252205C1D1CD673394%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-12T17%253A15%253A57.0764532Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8XJD8AAADADg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-08-18T02%253A21%253A56.4240062Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120081224005252","name":"120081224005252","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-08-12T17:15:42Z","expirationTime":"2020-08-12T21:15:42Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120081224005252","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-12T17:15:42Z","modifiedDate":"2021-06-18T23:49:53Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1D1CD673394%2522%252C%2522max%2522%253A%252205C1D399CD6730%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-12T17%253A15%253A42.5293134Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-BIz8AAADAAQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-08-12T17%253A15%253A57.0764532Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '2228' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1D1CD673394%2522%252C%2522max%2522%253A%252205C1D399CD6730%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-12T17%253A15%253A42.5293134Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-BIz8AAADAAQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-08-12T17%253A15%253A57.0764532Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120081224005018","name":"120081224005018","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-08-12T16:54:28Z","expirationTime":"2020-08-12T20:54:28Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120081224005018","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-12T16:54:28Z","modifiedDate":"2021-06-18T23:49:44Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120081224005011","name":"120081224005011","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-08-12T16:54:12Z","expirationTime":"2020-08-12T20:54:12Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120081224005011","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-12T16:54:12Z","modifiedDate":"2021-06-18T23:50:08Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637328085220208671","name":"E2ETest637328085220208671","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 23","lastName":"last 773","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"548","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-08-12T13:00:00Z","expirationTime":"2020-08-12T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120081224000723","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-12T05:55:43Z","modifiedDate":"2021-06-18T23:50:13Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637328001893946431","name":"E2ETest637328001893946431","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 584","lastName":"last 125","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"564","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-08-12T13:00:00Z","expirationTime":"2020-08-12T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120081224000402","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-12T03:36:51Z","modifiedDate":"2021-06-18T23:50:04Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637327804197517996","name":"E2ETest637327804197517996","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 837","lastName":"last 687","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"373","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-08-11T22:07:37Z","expirationTime":"2020-08-12T00:07:37Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120081121006951","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-11T22:07:20Z","modifiedDate":"2021-06-18T23:49:55Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1D799CD6730%2522%252C%2522max%2522%253A%252205C1D7FFFFFFFC%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-11T22%253A07%253A20.3915187Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-BFT4AAABgBA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-08-12T17%253A15%253A42.5293134Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '8275' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1D799CD6730%2522%252C%2522max%2522%253A%252205C1D7FFFFFFFC%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-11T22%253A07%253A20.3915187Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-BFT4AAABgBA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-08-12T17%253A15%253A42.5293134Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120081121000241","name":"120081121000241","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-08-11T13:00:00Z","expirationTime":"2020-08-11T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120081121000241","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-11T03:18:35Z","modifiedDate":"2021-06-18T23:50:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120081121000240","name":"120081121000240","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-08-11T13:00:00Z","expirationTime":"2020-08-11T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120081121000240","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-11T03:18:19Z","modifiedDate":"2021-06-18T23:50:05Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E399CD6732%2522%252C%2522max%2522%253A%252205C1E3FFFFFFFE%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-11T03%253A18%253A19.5836125Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9cHz8AAADADA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-08-11T22%253A07%253A20.3915187Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '3494' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E399CD6732%2522%252C%2522max%2522%253A%252205C1E3FFFFFFFE%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-11T03%253A18%253A19.5836125Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9cHz8AAADADA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-08-11T22%253A07%253A20.3915187Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637327107138255147","name":"E2ETest637327107138255147","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 255","lastName":"last 305","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"603","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-08-11T13:00:00Z","expirationTime":"2020-08-11T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120081121000208","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-11T02:45:18Z","modifiedDate":"2021-06-18T23:50:10Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E9CD673398%2522%252C%2522max%2522%253A%252205C1E9FFFFFFFE%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-11T02%253A45%253A18.4450552Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-XFD4AAACgCg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-08-11T03%253A18%253A19.5836125Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '2556' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E9CD673398%2522%252C%2522max%2522%253A%252205C1E9FFFFFFFE%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-11T02%253A45%253A18.4450552Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-XFD4AAACgCg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-08-11T03%253A18%253A19.5836125Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637327105237294201","name":"E2ETest637327105237294201","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 962","lastName":"last 953","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"841","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-08-11T13:00:00Z","expirationTime":"2020-08-11T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120081121000202","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-11T02:42:25Z","modifiedDate":"2021-06-18T23:50:04Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E1FFFFFFFE%2522%252C%2522max%2522%253A%252205C1E33399CD64%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-11T02%253A42%253A25.0779172Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8XFD4AAACgBQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-08-11T02%253A45%253A18.4450552Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '2551' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E1FFFFFFFE%2522%252C%2522max%2522%253A%252205C1E33399CD64%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-11T02%253A42%253A25.0779172Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8XFD4AAACgBQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-08-11T02%253A45%253A18.4450552Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120080823000011","name":"120080823000011","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-08-08T00:50:26Z","expirationTime":"2020-08-10T16:50:26Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120080823000011","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-08T00:50:26Z","modifiedDate":"2021-06-18T23:50:10Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EB99CD6732%2522%252C%2522max%2522%253A%252205C1EBFFFFFFFE%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-08T00%253A50%253A26.0110803Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9FIT8AAABACw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-08-11T02%253A42%253A25.0779172Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '2228' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EB99CD6732%2522%252C%2522max%2522%253A%252205C1EBFFFFFFFE%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-08T00%253A50%253A26.0110803Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9FIT8AAABACw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-08-11T02%253A42%253A25.0779172Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120080821000078","name":"120080821000078","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-08-08T00:49:32Z","expirationTime":"2020-08-10T16:49:32Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120080821000078","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-08T00:49:32Z","modifiedDate":"2021-06-18T23:50:03Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637323603357850350","name":"E2ETest637323603357850350","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 631","lastName":"last 233","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"212","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-08-07T13:00:00Z","expirationTime":"2020-08-07T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120080721000123","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-07T01:25:55Z","modifiedDate":"2021-06-18T23:50:09Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637321861235170862","name":"E2ETest637321861235170862","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 647","lastName":"last 601","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"075","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-08-05T13:00:00Z","expirationTime":"2020-08-05T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120080521000077","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-05T01:02:22Z","modifiedDate":"2021-06-18T23:50:13Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1ED673399CC%2522%252C%2522max%2522%253A%252205C1EDCD673398%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-05T01%253A02%253A22.5439236Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-TFj8AAAAgCQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-08-08T00%253A50%253A26.0110803Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '5416' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1ED673399CC%2522%252C%2522max%2522%253A%252205C1EDCD673398%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-05T01%253A02%253A22.5439236Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-TFj8AAAAgCQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-08-08T00%253A50%253A26.0110803Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637321832511839349","name":"E2ETest637321832511839349","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 687","lastName":"last 424","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"088","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-08-05T00:15:30Z","expirationTime":"2020-08-05T14:15:30Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120080521000019","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-05T00:14:17Z","modifiedDate":"2021-06-18T23:49:52Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637321828809626289","name":"E2ETest637321828809626289","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 546","lastName":"last 238","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"583","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-08-05T00:08:24Z","expirationTime":"2020-08-05T16:08:24Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120080521000013","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-05T00:08:24Z","modifiedDate":"2021-06-18T23:49:42Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%2522%2522%252C%2522max%2522%253A%252205C199CD673380%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-05T00%253A08%253A24.4820034Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8EFT8AAADACA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-08-05T01%253A02%253A22.5439236Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '4131' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%2522%2522%252C%2522max%2522%253A%252205C199CD673380%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-05T00%253A08%253A24.4820034Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8EFT8AAADACA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-08-05T01%253A02%253A22.5439236Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120080424001251","name":"120080424001251","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-08-04T13:00:00Z","expirationTime":"2020-08-04T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120080424001251","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-04T07:03:40Z","modifiedDate":"2021-06-18T23:49:55Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1D7FFFFFFFC%2522%252C%2522max%2522%253A%252205C1D9CD673398%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-04T07%253A03%253A40.8666214Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9NFT8AAAAgBA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-08-05T00%253A08%253A24.4820034Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '2228' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1D7FFFFFFFC%2522%252C%2522max%2522%253A%252205C1D9CD673398%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-04T07%253A03%253A40.8666214Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9NFT8AAAAgBA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-08-05T00%253A08%253A24.4820034Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120080424001249","name":"120080424001249","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-08-04T13:00:00Z","expirationTime":"2020-08-04T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120080424001249","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-08-04T07:03:21Z","modifiedDate":"2021-06-18T23:50:14Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EBFFFFFFFE%2522%252C%2522max%2522%253A%252205C1ED673399CC%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-04T07%253A03%253A21.30375Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BNGD8AAABABw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-08-04T07%253A03%253A40.8666214Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '2230' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EBFFFFFFFE%2522%252C%2522max%2522%253A%252205C1ED673399CC%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-08-04T07%253A03%253A21.30375Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BNGD8AAABABw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-08-04T07%253A03%253A40.8666214Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120073021000305","name":"120073021000305","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-07-30T13:00:00Z","expirationTime":"2020-07-30T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120073021000305","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-07-30T04:39:40Z","modifiedDate":"2021-06-18T23:50:07Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120073021000303","name":"120073021000303","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-07-30T13:00:00Z","expirationTime":"2020-07-30T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120073021000303","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-07-30T04:39:24Z","modifiedDate":"2021-06-18T23:50:05Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E3FFFFFFFE%2522%252C%2522max%2522%253A%252205C1E5673399CA%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-07-30T04%253A39%253A24.3441894Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-XED8AAADAAg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-08-04T07%253A03%253A21.30375Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '3487' + - '164' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:20:21 GMT + - Mon, 25 Mar 2024 06:30:57 GMT expires: - '-1' pragma: - no-cache - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F8B4C9C0BEBA43BF8C8604097560AAA2 Ref B: CO6AA3150217023 Ref C: 2024-03-25T06:30:57Z' status: code: 200 message: OK @@ -8222,52 +162,45 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - support tickets list + - support tickets create Connection: - keep-alive ParameterSetName: - - --filters + - --debug --description --severity --ticket-name --severity --title --contact-country + --contact-email --contact-first-name --contact-language --contact-last-name + --contact-method --contact-timezone --problem-classification User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-support/6.0.0 Python/3.11.8 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E3FFFFFFFE%2522%252C%2522max%2522%253A%252205C1E5673399CA%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-07-30T04%253A39%253A24.3441894Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-XED8AAADAAg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-08-04T07%253A03%253A21.30375Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/1cad1ac5-2c5f-4a7c-8bc0-e289f76f63f5?api-version=2020-04-01&t=638469450573117516&c=MIIHADCCBeigAwIBAgITfARmPsJdo2ShuN-ImAAABGY-wjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMxMjIwNzA5WhcNMjUwMTI1MjIwNzA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVFiSMi9Sg6cKnrBuPHbDk_Zwa1ZNYHwLVPJArEI9N2bLrgd1mU0ZdNVcdf6rtZCkUUuCe3vxnVTGwufpwH9GPWDgJOpJoL9wgKOzUDiHLUeiWPjrK1AoaQVprZgjnzXBIWiZC2tZjbUT9pOI_ixYJJPrsCfLt7HEccnhObROE1mo_hpiPDrtOQDaX-BboNceB8vI1wmSPApGpPRM9hBRQbXgqKFC8094UNsMVkWPCrsPvP5YlMBLARlGf2WTevGKRREjstkApf1Swi7uKnpyhhsidD1yREMU0mWY9wnZfAX0jpEp3p9jKVMPQ3L-m-nSZI4zrtbW0AnI0O3pAEwe0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT2vcy9ccvhGewsiHI1BQHsz3Wn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBADNBZjhX44bpBtC8kogZJGe4lYeHX95whfZ7X_CMSUuZRbQQ_b6raUpp8V8eF0YUa9b3Oa-DGrs5WfzogCuGcJPeoEVnDYzc1jlKubSIpGw73aGZzhbTjJeNf-Qe-5vTG-GcNzVtIcrwi93YSiK2LSbgrLpTL7T7znjePcGRRkCBjAslrV5SqufcsrpGmqvPAVKXRV-OIOzvXy6qmn9CHmdo0RGBXGIakbLMec_1SIS8NdPsB6i6XPjL2SDjqKTa5car7bVYlXEVsgL-000VF1t6x1II3VBNfsEJ81CdJyxaCJnwvWI6kHtCtJX9QYK3qZab9PfZRBvcetJoPdMFvBU&s=OWM8Q1bkfSfXySLBFjgktNTQvZoJpKhpLbLrX9Fhhvb9lJENC8e_Hynk7FbKwgrDzekOxNnz1bQRMCyckmd00Z4Ytg_M0ckmYRWRo-jr9UwT93AyIj3Bv1eosYh3u8HczcP3Eg_rwQDU-hAL8Hh0zAVIi9KfpVxNApUyG_z12q8M2yCtkAXHzjIift7Y4RxbgTSpi2d1ShHUwOUQi6UNnr343wRXrQhwrH1RejWMW08fm3IUv0kVmjRHp8wTS4OJT6q4SJnjqzo9jbb1MPbIPq1uBgDYtgNey39IjamRw_drKqgwILk3Yz9s4lhvw6Xf2UohJlm2stmB9N6Kqyrkdw&h=mq8uQgdwVkt552klj30WXoWZ0G__XJ7CyvHqwJaucyA response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637316739259271965","name":"E2ETest637316739259271965","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 450","lastName":"last 879","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"831","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-07-30T13:00:00Z","expirationTime":"2020-07-30T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120073021000194","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-07-30T02:45:47Z","modifiedDate":"2021-06-18T23:50:10Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EB3399CD64%2522%252C%2522max%2522%253A%252205C1EB99CD6732%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-07-30T02%253A45%253A47.8474175Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR91ED8AAADABw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-07-30T04%253A39%253A24.3441894Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/1cad1ac5-2c5f-4a7c-8bc0-e289f76f63f5","status":"Succeeded","properties":{"supportTicketCreationWarning":""}}' headers: cache-control: - no-cache content-length: - - '2556' + - '212' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:20:22 GMT + - Mon, 25 Mar 2024 06:31:27 GMT expires: - '-1' pragma: - no-cache - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F02A5D94A81A47158C80432CF12CC737 Ref B: CO6AA3150217023 Ref C: 2024-03-25T06:31:27Z' status: code: 200 message: OK @@ -8275,358 +208,204 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - support tickets list + - support tickets create Connection: - keep-alive ParameterSetName: - - --filters + - --debug --description --severity --ticket-name --severity --title --contact-country + --contact-email --contact-first-name --contact-language --contact-last-name + --contact-method --contact-timezone --problem-classification User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-support/6.0.0 Python/3.11.8 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EB3399CD64%2522%252C%2522max%2522%253A%252205C1EB99CD6732%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-07-30T02%253A45%253A47.8474175Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR91ED8AAADABw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-07-30T04%253A39%253A24.3441894Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001?api-version=2020-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120072921000208","name":"120072921000208","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-07-29T13:00:00Z","expirationTime":"2020-07-29T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120072921000208","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-07-29T02:29:03Z","modifiedDate":"2021-06-18T23:50:00Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E1673399CA%2522%252C%2522max%2522%253A%252205C1E1CD673398%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-07-29T02%253A29%253A03.0051725Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BjED8AAABAAQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-07-30T02%253A45%253A47.8474175Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001","name":"test_ticket_from_cli_000001","type":"Microsoft.Support/supportTickets","properties":{"description":"test + ticket from python cli test. Do not assign and close after a day.","problemClassificationId":"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc/problemClassifications/44114011-6a66-e902-c00f-e419b6b4509f","problemClassificationDisplayName":"Cost + Management / I have access but cost is not loading for me","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Foo","lastName":"Bar","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2024-03-25T06:31:01Z","expirationTime":"2024-03-25T21:00:00Z","slaMinutes":480},"supportEngineer":{},"supportPlanType":"Azure + Internal","supportTicketId":"2403250010001029","title":"test ticket from python + cli test. Do not assign and close after a day.","serviceId":"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc","serviceDisplayName":"Billing","status":"Open","problemStartTime":"2024-03-24T23:30:55Z","createdDate":"2024-03-25T06:31:01Z","modifiedDate":"2024-03-25T06:31:15Z"}}' headers: cache-control: - no-cache content-length: - - '2227' + - '1417' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:20:22 GMT + - Mon, 25 Mar 2024 06:31:28 GMT expires: - '-1' pragma: - no-cache - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A11F44EBD42A42BBAA4DAA5B42A65C8B Ref B: CO6AA3150217023 Ref C: 2024-03-25T06:31:27Z' status: code: 200 message: OK - request: - body: null + body: '{"properties": {"sender": "nichheda@microsoft.com", "subject": "test subject + for communication posted from azure python cli", "body": "test body for communication + posted from azure python cli"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - support tickets list + - support tickets communications create Connection: - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E1673399CA%2522%252C%2522max%2522%253A%252205C1E1CD673398%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-07-29T02%253A29%253A03.0051725Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BjED8AAABAAQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-07-30T02%253A45%253A47.8474175Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120072921000207","name":"120072921000207","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-07-29T13:00:00Z","expirationTime":"2020-07-29T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120072921000207","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-07-29T02:28:51Z","modifiedDate":"2021-06-18T23:50:05Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E7FFFFFFFE%2522%252C%2522max%2522%253A%252205C1E9673399CA%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-07-29T02%253A28%253A51.2360447Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9DDD8AAAAgDA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-07-29T02%253A29%253A03.0051725Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '2228' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - 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: + Content-Length: + - '194' + Content-Type: - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive ParameterSetName: - - --filters + - --debug --ticket-name --communication-name --communication-sender --communication-subject + --communication-body User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E7FFFFFFFE%2522%252C%2522max%2522%253A%252205C1E9673399CA%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-07-29T02%253A28%253A51.2360447Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9DDD8AAAAgDA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-07-29T02%253A29%253A03.0051725Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D + - AZURECLI/2.56.0 azsdk-python-mgmt-support/6.0.0 Python/3.11.8 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001/communications/12345678-1234-1234-1234-123412341234?api-version=2020-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120072921000014","name":"120072921000014","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-07-29T00:11:14Z","expirationTime":"2020-07-29T16:11:14Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120072921000014","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-07-29T00:11:14Z","modifiedDate":"2021-06-18T23:49:59Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1D9CD673398%2522%252C%2522max%2522%253A%252205C1DB99CD6730%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-07-29T00%253A11%253A14.5018732Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9EED8AAABADQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-07-29T02%253A28%253A51.2360447Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' + string: '{"error":{"code":"ResourceNameInvalid","message":"Resource name is + invalid. Please provide a valid name","details":[]}}' headers: cache-control: - - no-cache + - no-store, no-cache content-length: - - '2223' + - '119' content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:24 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1D9CD673398%2522%252C%2522max%2522%253A%252205C1DB99CD6730%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-07-29T00%253A11%253A14.5018732Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9EED8AAABADQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-07-29T02%253A28%253A51.2360447Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120072921000011","name":"120072921000011","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-07-29T00:10:50Z","expirationTime":"2020-07-29T16:10:50Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120072921000011","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-07-29T00:10:50Z","modifiedDate":"2021-06-18T23:50:14Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EDCD673398%2522%252C%2522max%2522%253A%252205C1EF3399CD66%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-07-29T00%253A10%253A50.7094695Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252B3DD8AAAAgBQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-07-29T00%253A11%253A14.5018732Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '2232' - content-type: - - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:20:24 GMT + - Mon, 25 Mar 2024 06:31:30 GMT expires: - '-1' pragma: - no-cache - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: FA59ACB851804CC18A10F170F796EA25 Ref B: CO6AA3150217039 Ref C: 2024-03-25T06:31:30Z' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: - body: null + body: '{"properties": {"sender": "nichheda@microsoft.com", "subject": "test subject + for communication posted from azure python cli", "body": "test body for communication + posted from azure python cli"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - support tickets list + - support tickets communications create Connection: - keep-alive - ParameterSetName: - - --filters - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1EDCD673398%2522%252C%2522max%2522%253A%252205C1EF3399CD66%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-07-29T00%253A10%253A50.7094695Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252B3DD8AAAAgBQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-07-29T00%253A11%253A14.5018732Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120072821002599","name":"120072821002599","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-07-28T23:14:27Z","expirationTime":"2020-07-29T15:14:27Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120072821002599","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-07-28T23:14:27Z","modifiedDate":"2021-06-18T23:49:51Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1CF3399CD60%2522%252C%2522max%2522%253A%252205C1CFFFFFFFF8%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-07-28T23%253A14%253A27.3029674Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9OCz4AAACgAw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-07-29T00%253A10%253A50.7094695Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '2223' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - 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: + Content-Length: + - '194' + Content-Type: - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets list - Connection: - - keep-alive ParameterSetName: - - --filters + - --debug --ticket-name --communication-name --communication-sender --communication-subject + --communication-body User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1CF3399CD60%2522%252C%2522max%2522%253A%252205C1CFFFFFFFF8%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-07-28T23%253A14%253A27.3029674Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9OCz4AAACgAw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-07-29T00%253A10%253A50.7094695Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D + - AZURECLI/2.56.0 azsdk-python-mgmt-support/6.0.0 Python/3.11.8 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001/communications/test_communication_from_cli_000002?api-version=2020-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/120072821002598","name":"120072821002598","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud - E2E Test, please close","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Test2","lastName":"Test","preferredContactMethod":"Email","primaryEmailAddress":"rushar@microsoft.com","phoneNumber":"","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-us"},"serviceLevelAgreement":{"startTime":"2020-07-28T23:14:08Z","expirationTime":"2020-07-29T15:14:08Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120072821002598","title":"Cloud - E2E Test, please close","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-07-28T23:14:08Z","modifiedDate":"2021-06-18T23:50:00Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E1CD673398%2522%252C%2522max%2522%253A%252205C1E1FFFFFFFE%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-07-28T23%253A14%253A08.4090838Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BFCj4AAACgCQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-07-28T23%253A14%253A27.3029674Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/fea5ebde-e71b-4d6a-a6ff-954da6b6a42d?api-version=2020-04-01&t=638469450933204122&c=MIIHADCCBeigAwIBAgITfARmPsJdo2ShuN-ImAAABGY-wjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMxMjIwNzA5WhcNMjUwMTI1MjIwNzA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVFiSMi9Sg6cKnrBuPHbDk_Zwa1ZNYHwLVPJArEI9N2bLrgd1mU0ZdNVcdf6rtZCkUUuCe3vxnVTGwufpwH9GPWDgJOpJoL9wgKOzUDiHLUeiWPjrK1AoaQVprZgjnzXBIWiZC2tZjbUT9pOI_ixYJJPrsCfLt7HEccnhObROE1mo_hpiPDrtOQDaX-BboNceB8vI1wmSPApGpPRM9hBRQbXgqKFC8094UNsMVkWPCrsPvP5YlMBLARlGf2WTevGKRREjstkApf1Swi7uKnpyhhsidD1yREMU0mWY9wnZfAX0jpEp3p9jKVMPQ3L-m-nSZI4zrtbW0AnI0O3pAEwe0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT2vcy9ccvhGewsiHI1BQHsz3Wn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBADNBZjhX44bpBtC8kogZJGe4lYeHX95whfZ7X_CMSUuZRbQQ_b6raUpp8V8eF0YUa9b3Oa-DGrs5WfzogCuGcJPeoEVnDYzc1jlKubSIpGw73aGZzhbTjJeNf-Qe-5vTG-GcNzVtIcrwi93YSiK2LSbgrLpTL7T7znjePcGRRkCBjAslrV5SqufcsrpGmqvPAVKXRV-OIOzvXy6qmn9CHmdo0RGBXGIakbLMec_1SIS8NdPsB6i6XPjL2SDjqKTa5car7bVYlXEVsgL-000VF1t6x1II3VBNfsEJ81CdJyxaCJnwvWI6kHtCtJX9QYK3qZab9PfZRBvcetJoPdMFvBU&s=jWWHiR2nMix0N_51JOY1crQd4dckMPNkLgQG-BOzaFK_IIQVUuNTYY3clItyLX3f6WwAuhy0b52tc04rcjU2AkAOwoWY_2iNY8A5ZSE1AlJLtSl_jlDHXobevWiKY5TmW7eCBOV-1SrDIE82ZukEJfWkkkq34h__3bF4Ilk2ukbxuGt7p-ugDW_U_lxNyG1_u27GiZq3eO14hiM9HuzBp28LmT-t-MHGc-tMAMMLuht7TCmIctpqpPQHURHZkPrUJ6uVfP37YKOgBgs9PFSMYY--sH3ETTIsPJmm1Mtr1zSuA3ULWT4D_YzHYWbBfdgC7ojkYR0kzQsz_QkMmhBDKQ&h=1b7ZqBKjWTgY6UENyU9FdQ75DyigOAcc-ed5xhZ9Jxs cache-control: - no-cache content-length: - - '2232' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Tue, 03 Aug 2021 22:20:26 GMT + - Mon, 25 Mar 2024 06:31:32 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationResults/fea5ebde-e71b-4d6a-a6ff-954da6b6a42d?api-version=2020-04-01&t=638469450933360334&c=MIIHADCCBeigAwIBAgITfARmPsJdo2ShuN-ImAAABGY-wjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMxMjIwNzA5WhcNMjUwMTI1MjIwNzA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVFiSMi9Sg6cKnrBuPHbDk_Zwa1ZNYHwLVPJArEI9N2bLrgd1mU0ZdNVcdf6rtZCkUUuCe3vxnVTGwufpwH9GPWDgJOpJoL9wgKOzUDiHLUeiWPjrK1AoaQVprZgjnzXBIWiZC2tZjbUT9pOI_ixYJJPrsCfLt7HEccnhObROE1mo_hpiPDrtOQDaX-BboNceB8vI1wmSPApGpPRM9hBRQbXgqKFC8094UNsMVkWPCrsPvP5YlMBLARlGf2WTevGKRREjstkApf1Swi7uKnpyhhsidD1yREMU0mWY9wnZfAX0jpEp3p9jKVMPQ3L-m-nSZI4zrtbW0AnI0O3pAEwe0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT2vcy9ccvhGewsiHI1BQHsz3Wn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBADNBZjhX44bpBtC8kogZJGe4lYeHX95whfZ7X_CMSUuZRbQQ_b6raUpp8V8eF0YUa9b3Oa-DGrs5WfzogCuGcJPeoEVnDYzc1jlKubSIpGw73aGZzhbTjJeNf-Qe-5vTG-GcNzVtIcrwi93YSiK2LSbgrLpTL7T7znjePcGRRkCBjAslrV5SqufcsrpGmqvPAVKXRV-OIOzvXy6qmn9CHmdo0RGBXGIakbLMec_1SIS8NdPsB6i6XPjL2SDjqKTa5car7bVYlXEVsgL-000VF1t6x1II3VBNfsEJ81CdJyxaCJnwvWI6kHtCtJX9QYK3qZab9PfZRBvcetJoPdMFvBU&s=cSH8nBgm1EH84aihAZN8VG080Rlyt6Sa0bYqRYRWzb_r7qHtajH-YSOuKheO5WaXJ1Jkg12SHnf6guaLxIXTH-rT1vikUtvvtrQ99JZ23K0ptepDXjpOgqSZUjd0jzPk5jX_yWDNNb1TgrQjn1QxKMaUenI0O8GoHIIYpfQ-obhXcJP7IM2LP2Tkj7Ukon-D7ag0sG3xLPpGDBy_Xw6UGURPIXJn1XiNo3GfpJGo6Ikmx8Tw_w7E7gbGmPSyqTiNYB0F0m8qugTF6rf40lDa0XDDdBhB-Ghr4UTMZoMN4TZ_GPIHGqoqh4ImY486mCz2Zp7R7VZqcmKgD8mhIlF79g&h=U95QZdw3qOUxwoPhmlP_tXMeYLBh7IZN82IwqgRTQ4U pragma: - no-cache - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 199FB39B3E5348DF980399F524862D4B Ref B: CO6AA3150218019 Ref C: 2024-03-25T06:31:32Z' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - support tickets list + - support tickets communications create Connection: - keep-alive ParameterSetName: - - --filters + - --debug --ticket-name --communication-name --communication-sender --communication-subject + --communication-body User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-support/6.0.0 Python/3.11.8 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E1CD673398%2522%252C%2522max%2522%253A%252205C1E1FFFFFFFE%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-07-28T23%253A14%253A08.4090838Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BFCj4AAACgCQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-07-28T23%253A14%253A27.3029674Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/fea5ebde-e71b-4d6a-a6ff-954da6b6a42d?api-version=2020-04-01&t=638469450933204122&c=MIIHADCCBeigAwIBAgITfARmPsJdo2ShuN-ImAAABGY-wjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMxMjIwNzA5WhcNMjUwMTI1MjIwNzA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVFiSMi9Sg6cKnrBuPHbDk_Zwa1ZNYHwLVPJArEI9N2bLrgd1mU0ZdNVcdf6rtZCkUUuCe3vxnVTGwufpwH9GPWDgJOpJoL9wgKOzUDiHLUeiWPjrK1AoaQVprZgjnzXBIWiZC2tZjbUT9pOI_ixYJJPrsCfLt7HEccnhObROE1mo_hpiPDrtOQDaX-BboNceB8vI1wmSPApGpPRM9hBRQbXgqKFC8094UNsMVkWPCrsPvP5YlMBLARlGf2WTevGKRREjstkApf1Swi7uKnpyhhsidD1yREMU0mWY9wnZfAX0jpEp3p9jKVMPQ3L-m-nSZI4zrtbW0AnI0O3pAEwe0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT2vcy9ccvhGewsiHI1BQHsz3Wn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBADNBZjhX44bpBtC8kogZJGe4lYeHX95whfZ7X_CMSUuZRbQQ_b6raUpp8V8eF0YUa9b3Oa-DGrs5WfzogCuGcJPeoEVnDYzc1jlKubSIpGw73aGZzhbTjJeNf-Qe-5vTG-GcNzVtIcrwi93YSiK2LSbgrLpTL7T7znjePcGRRkCBjAslrV5SqufcsrpGmqvPAVKXRV-OIOzvXy6qmn9CHmdo0RGBXGIakbLMec_1SIS8NdPsB6i6XPjL2SDjqKTa5car7bVYlXEVsgL-000VF1t6x1II3VBNfsEJ81CdJyxaCJnwvWI6kHtCtJX9QYK3qZab9PfZRBvcetJoPdMFvBU&s=jWWHiR2nMix0N_51JOY1crQd4dckMPNkLgQG-BOzaFK_IIQVUuNTYY3clItyLX3f6WwAuhy0b52tc04rcjU2AkAOwoWY_2iNY8A5ZSE1AlJLtSl_jlDHXobevWiKY5TmW7eCBOV-1SrDIE82ZukEJfWkkkq34h__3bF4Ilk2ukbxuGt7p-ugDW_U_lxNyG1_u27GiZq3eO14hiM9HuzBp28LmT-t-MHGc-tMAMMLuht7TCmIctpqpPQHURHZkPrUJ6uVfP37YKOgBgs9PFSMYY--sH3ETTIsPJmm1Mtr1zSuA3ULWT4D_YzHYWbBfdgC7ojkYR0kzQsz_QkMmhBDKQ&h=1b7ZqBKjWTgY6UENyU9FdQ75DyigOAcc-ed5xhZ9Jxs response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637315489760122659","name":"E2ETest637315489760122659","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 80","lastName":"last 320","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"877","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-07-28T23:03:31Z","expirationTime":"2020-07-29T13:03:31Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120072821002585","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-07-28T23:03:14Z","modifiedDate":"2021-06-18T23:49:45Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C199CD673380%2522%252C%2522max%2522%253A%252205C1A9CD673380%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-07-28T23%253A03%253A14.9255237Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BZDj8AAADABA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-07-28T23%253A14%253A08.4090838Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/fea5ebde-e71b-4d6a-a6ff-954da6b6a42d","status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '2554' + - '164' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:20:26 GMT + - Mon, 25 Mar 2024 06:31:33 GMT expires: - '-1' pragma: - no-cache - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 2958E2C72B1C46ACAE6E62809F3C921B Ref B: CO6AA3150218019 Ref C: 2024-03-25T06:31:33Z' status: code: 200 message: OK @@ -8634,52 +413,44 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - support tickets list + - support tickets communications create Connection: - keep-alive ParameterSetName: - - --filters + - --debug --ticket-name --communication-name --communication-sender --communication-subject + --communication-body User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-support/6.0.0 Python/3.11.8 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C199CD673380%2522%252C%2522max%2522%253A%252205C1A9CD673380%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-07-28T23%253A03%253A14.9255237Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BZDj8AAADABA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-07-28T23%253A14%253A08.4090838Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/fea5ebde-e71b-4d6a-a6ff-954da6b6a42d?api-version=2020-04-01&t=638469450933204122&c=MIIHADCCBeigAwIBAgITfARmPsJdo2ShuN-ImAAABGY-wjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMxMjIwNzA5WhcNMjUwMTI1MjIwNzA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVFiSMi9Sg6cKnrBuPHbDk_Zwa1ZNYHwLVPJArEI9N2bLrgd1mU0ZdNVcdf6rtZCkUUuCe3vxnVTGwufpwH9GPWDgJOpJoL9wgKOzUDiHLUeiWPjrK1AoaQVprZgjnzXBIWiZC2tZjbUT9pOI_ixYJJPrsCfLt7HEccnhObROE1mo_hpiPDrtOQDaX-BboNceB8vI1wmSPApGpPRM9hBRQbXgqKFC8094UNsMVkWPCrsPvP5YlMBLARlGf2WTevGKRREjstkApf1Swi7uKnpyhhsidD1yREMU0mWY9wnZfAX0jpEp3p9jKVMPQ3L-m-nSZI4zrtbW0AnI0O3pAEwe0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT2vcy9ccvhGewsiHI1BQHsz3Wn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBADNBZjhX44bpBtC8kogZJGe4lYeHX95whfZ7X_CMSUuZRbQQ_b6raUpp8V8eF0YUa9b3Oa-DGrs5WfzogCuGcJPeoEVnDYzc1jlKubSIpGw73aGZzhbTjJeNf-Qe-5vTG-GcNzVtIcrwi93YSiK2LSbgrLpTL7T7znjePcGRRkCBjAslrV5SqufcsrpGmqvPAVKXRV-OIOzvXy6qmn9CHmdo0RGBXGIakbLMec_1SIS8NdPsB6i6XPjL2SDjqKTa5car7bVYlXEVsgL-000VF1t6x1II3VBNfsEJ81CdJyxaCJnwvWI6kHtCtJX9QYK3qZab9PfZRBvcetJoPdMFvBU&s=jWWHiR2nMix0N_51JOY1crQd4dckMPNkLgQG-BOzaFK_IIQVUuNTYY3clItyLX3f6WwAuhy0b52tc04rcjU2AkAOwoWY_2iNY8A5ZSE1AlJLtSl_jlDHXobevWiKY5TmW7eCBOV-1SrDIE82ZukEJfWkkkq34h__3bF4Ilk2ukbxuGt7p-ugDW_U_lxNyG1_u27GiZq3eO14hiM9HuzBp28LmT-t-MHGc-tMAMMLuht7TCmIctpqpPQHURHZkPrUJ6uVfP37YKOgBgs9PFSMYY--sH3ETTIsPJmm1Mtr1zSuA3ULWT4D_YzHYWbBfdgC7ojkYR0kzQsz_QkMmhBDKQ&h=1b7ZqBKjWTgY6UENyU9FdQ75DyigOAcc-ed5xhZ9Jxs response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637315182985950549","name":"E2ETest637315182985950549","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 954","lastName":"last 630","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"783","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-07-28T13:00:00Z","expirationTime":"2020-07-28T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120072821000713","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-07-28T07:31:50Z","modifiedDate":"2021-06-18T23:49:49Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1B399CD6720%2522%252C%2522max%2522%253A%252205C1B9CD673390%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-07-28T07%253A31%253A50.5636294Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-cDD8AAAAgAw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-07-28T23%253A03%253A14.9255237Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/fea5ebde-e71b-4d6a-a6ff-954da6b6a42d","status":"Succeeded","properties":{"supportTicketCreationWarning":""}}' headers: cache-control: - no-cache content-length: - - '2556' + - '212' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:20:27 GMT + - Mon, 25 Mar 2024 06:32:03 GMT expires: - '-1' pragma: - no-cache - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D3D11355BF13468CAD4A96BA8218917E Ref B: CO6AA3150218019 Ref C: 2024-03-25T06:32:03Z' status: code: 200 message: OK @@ -8687,59 +458,46 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - support tickets list + - support tickets communications create Connection: - keep-alive ParameterSetName: - - --filters + - --debug --ticket-name --communication-name --communication-sender --communication-subject + --communication-body User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-support/6.0.0 Python/3.11.8 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1B399CD6720%2522%252C%2522max%2522%253A%252205C1B9CD673390%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-07-28T07%253A31%253A50.5636294Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-cDD8AAAAgAw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-07-28T23%253A03%253A14.9255237Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001/communications/test_communication_from_cli_000002?api-version=2020-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637314923904137255","name":"E2ETest637314923904137255","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 619","lastName":"last 939","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"124","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-07-28T00:20:11Z","expirationTime":"2020-07-28T16:20:11Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120072821000044","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-07-28T00:20:11Z","modifiedDate":"2021-06-18T23:49:49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637303468525568622","name":"E2ETest637303468525568622","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 395","lastName":"last 519","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"162","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-07-14T18:08:13Z","expirationTime":"2020-07-14T20:08:13Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120071421001897","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-07-14T18:07:46Z","modifiedDate":"2021-06-18T23:50:05Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E5673399CA%2522%252C%2522max%2522%253A%252205C1E5CD673396%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-07-14T18%253A07%253A46.6863227Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BV%252Bz4AAADACg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-07-28T07%253A31%253A50.5636294Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001/communications/test_communication_from_cli_000002","name":"test_communication_from_cli_000002","type":"Microsoft.Support/communications","properties":{"communicationType":"Web","communicationDirection":"Outbound","sender":"nichheda@microsoft.com","subject":"test + subject for communication posted from azur... - TrackingID#2403250010001029","body":"
test
+        body for communication posted from azure python cli
","createdDate":"2024-03-25T06:31:51Z"}}' headers: cache-control: - no-cache content-length: - - '4158' + - '585' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:20:29 GMT + - Mon, 25 Mar 2024 06:32:04 GMT expires: - '-1' pragma: - no-cache - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 0CBA788E5286487D8638F4D033BD827E Ref B: CO6AA3150218019 Ref C: 2024-03-25T06:32:04Z' status: code: 200 message: OK @@ -8751,48 +509,281 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - support tickets list + - support tickets communications list Connection: - keep-alive ParameterSetName: - - --filters + - --ticket-name User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-support/6.0.0 Python/3.11.8 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E5673399CA%2522%252C%2522max%2522%253A%252205C1E5CD673396%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-07-14T18%253A07%253A46.6863227Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BV%252Bz4AAADACg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-07-28T07%253A31%253A50.5636294Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001/communications?api-version=2020-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637303467743138516","name":"E2ETest637303467743138516","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 187","lastName":"last 678","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"837","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-07-14T18:06:55Z","expirationTime":"2020-07-14T20:06:55Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120071421001894","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-07-14T18:06:36Z","modifiedDate":"2021-06-18T23:50:08Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E9673399CA%2522%252C%2522max%2522%253A%252205C1E9CD673398%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-07-14T18%253A06%253A36.0810853Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9I%252BT4AAAAgAg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-07-14T18%253A07%253A46.6863227Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' - headers: - cache-control: - - no-cache - content-length: - - '2560' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff + string: "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001/communications/test_communication_from_cli_000002\"\ + ,\"name\":\"test_communication_from_cli_000002\",\"type\":\"Microsoft.Support/communications\"\ + ,\"properties\":{\"communicationType\":\"Web\",\"communicationDirection\"\ + :\"Outbound\",\"sender\":\"nichheda@microsoft.com\",\"subject\":\"test subject\ + \ for communication posted from azur... - TrackingID#2403250010001029\",\"\ + body\":\"
test body for communication posted from azure python cli
\"\ + ,\"createdDate\":\"2024-03-25T06:31:51Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001/communications/65b8bb3f-71ea-ee11-a203-000d3a1995e0\"\ + ,\"name\":\"65b8bb3f-71ea-ee11-a203-000d3a1995e0\",\"type\":\"Microsoft.Support/communications\"\ + ,\"properties\":{\"communicationType\":\"Web\",\"communicationDirection\"\ + :\"Inbound\",\"sender\":\"support@mail.support.microsoft.com\",\"subject\"\ + :\"\\nCase 2403250010001029\u2009 Your question was successfully submitted\ + \ to Microsoft Support TrackingID#2403250010001029\",\"body\":\"\\n\\\ + n\\n\\n\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\\ + n\\n\\n\\n\\n\\n\\n
\\n\\n\\n\\n\\n\\n\\n
\\n\\n\\n\\n\\n\\n\\n\\\ + n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n
 
\\n
You can contact us again about this incident at any time\ + \ on\\n the Microsoft Azure portal.\\n See the Azure Support FAQ for\\n additional information about Azure Support, including terms\ + \ and conditions.
\\n 
\\nThis\ + \ email is generated from an unmonitored account. Please do not reply.
\\\ + n
\\nThank you,
\\nMicrosoft Azure Support
\\\ + n
 
\\n\\n
\\n\\n\\n\\n\\n\\n\\n\\n\\\ + n\\n\\n\\n
\\n
\\n
Having trouble viewing\ + \ this email? View\\n your request online
\\\ + n
\\n
\\n
\\\ + n\\\"Microsoft\\\"
\\n 
\\n
\\n
Support
\\n
\\\ + n
\\n
 
\\n
Your question was successfully submitted to Microsoft Support\\\ + n using your Azure Support Plan - Internal plan. A Microsoft support professional\ + \ will contact you.
\\n 

\\nPlease\ + \ note: First time is based on Severity and if the case is classified as \u201C\ + 24x7\u201D (\u201CSeverity\\n A\u201D response cases are always 24x7, \u201C\ + Severity B\u201D are optionally 24x7, and \u201CSeverity C\u201D cases are\ + \ business hours only). Learn more about support\\n response\ + \ times.
\\\ + n
 
\\n
Please keep in mind: microsoftsupport.com and microsoft.com\ + \ are both valid email domains used for communications related\\n to your\ + \ support request.
\\n
 
\\\ + n
\\n\\n\\n\\n\\\ + n\\n\\n\\\ + n\\\ + n\\\ + n\\n\\n\\\ + n\\n\\n\\\ + n\\\ + n\\n\\n\\n\\\ + n\\n\\\ + n\\n\\n\\n
\\n
azengcase@microsoft.com
\\\ + n
\\n\\n
\\n\\n\\\ + n\\n\\n\\n
\\nIncident title:\\ntest ticket from python cli test. Do not\ + \ assign and close after a day.
\\nSupport\ + \ request number:\\n2403250010001029
\\nSeverity rating:\\nC
\\nContact\ + \ preference:\\n
\\n
Email
\\\ + n
\\n
\\nName:\\nFoo Bar
\\nEmail\ + \ address:
\\nContact numbers:\\n
\\n
\\\ + n
\\n
\\n
\\n
 
\\n
Additional\ + \ Information
\\n
\\\ + nProduct: Azure/Billing/Cost\\\ + n Management/I have access but cost is not loading for me
\\nAzure Subscription: IBIZA - Test

\\\ + nAzure Subscription ID: 76cb77fa-8b17-4eab-9493-b65dace99813
\\\ + n
 
\\n
\\n
\\nThis message from Microsoft\ + \ is an important part\\n of a program, service, or product that you or your\ + \ company purchased or participates in. Microsoft respects your privacy. Please\ + \ read our Privacy\\n Statement.
\\\ + n 
\\n
\\nOne Microsoft Way, Redmond,\ + \ WA 98052 USA
\\n 
\\n
\\n
 
\\n
\\\ + n
\\n
\\\
\\n
\\\ + n
\\n
\\\ + n
\\n
\\n
\\n
\\n
\\\ + n
\\n
\\n
\\n
\\n
\\n
\\n
\\n\\\ + n\\n\",\"createdDate\":\"2024-03-25T06:31:08Z\"}}]}" + headers: + cache-control: + - no-cache + content-length: + - '25623' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 25 Mar 2024 06:32:07 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: B958DA48D23846598290D79462A6372E Ref B: CO6AA3150219037 Ref C: 2024-03-25T06:32:06Z' status: code: 200 message: OK @@ -8804,48 +795,41 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - support tickets list + - support tickets communications show Connection: - keep-alive ParameterSetName: - - --filters + - --ticket-name --communication-name User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-support/6.0.0 Python/3.11.8 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1E9673399CA%2522%252C%2522max%2522%253A%252205C1E9CD673398%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-07-14T18%253A06%253A36.0810853Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9I%252BT4AAAAgAg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222020-07-14T18%253A07%253A46.6863227Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001/communications/test_communication_from_cli_000002?api-version=2020-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637296755798461987","name":"E2ETest637296755798461987","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 567","lastName":"last 339","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"213","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-07-06T23:40:20Z","expirationTime":"2020-07-07T13:40:20Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120070621002479","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-07-06T23:40:08Z","modifiedDate":"2021-06-18T23:49:48Z"}}],"nextLink":"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1C9CD673398%2522%252C%2522max%2522%253A%252205C1CD673399C8%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-07-06T23%253A40%253A08.1355676Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8R7z4AAAAgDg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-07-14T18%253A06%253A36.0810853Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001/communications/test_communication_from_cli_000002","name":"test_communication_from_cli_000002","type":"Microsoft.Support/communications","properties":{"communicationType":"Web","communicationDirection":"Outbound","sender":"nichheda@microsoft.com","subject":"test + subject for communication posted from azur... - TrackingID#2403250010001029","body":"
test
+        body for communication posted from azure python cli
","createdDate":"2024-03-25T06:31:51Z"}}' headers: cache-control: - no-cache content-length: - - '2551' + - '585' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:20:30 GMT + - Mon, 25 Mar 2024 06:32:10 GMT expires: - '-1' pragma: - no-cache - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 28B0F5A7D4A64A1FBD394AAB80D76143 Ref B: CO6AA3150219031 Ref C: 2024-03-25T06:32:09Z' status: code: 200 message: OK @@ -8863,42 +847,2143 @@ interactions: ParameterSetName: - --filters User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-support/6.0.0 Python/3.11.8 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1C9CD673398%2522%252C%2522max%2522%253A%252205C1CD673399C8%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222020-07-06T23%253A40%253A08.1355676Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8R7z4AAAAgDg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222020-07-14T18%253A06%253A36.0810853Z%255C%2522%2520OR%2520not%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status%20eq%20%27Open%27&api-version=2020-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/E2ETest637287340783418575","name":"E2ETest637287340783418575","type":"Microsoft.Support/supportTickets","properties":{"description":"test - ticket from e2e test. do not assign and do not close. case submission team - will take care of closing it.","problemClassificationId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25","problemClassificationDisplayName":"Test - Support Topic 1","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"first - 61","lastName":"last 726","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"033","preferredTimeZone":"Eastern - Standard Time","country":"CAN","preferredSupportLanguage":"ja-jp"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Infrastructure/providers/Microsoft.Compute/virtualMachines/ADandAADSync"},"serviceLevelAgreement":{"startTime":"2020-06-26T13:00:00Z","expirationTime":"2020-06-26T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"120062621000104","title":"test - ticket from e2e test. do not assign and do not close.","serviceId":"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201","serviceDisplayName":"Test - Product Case Submission - Preview","status":"Open","createdDate":"2020-06-26T02:08:17Z","modifiedDate":"2021-06-18T23:49:58Z"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1604' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:20:31 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff + string: "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001\"\ + ,\"name\":\"test_ticket_from_cli_000001\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"test ticket from python cli test. Do not\ + \ assign and close after a day.\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc/problemClassifications/44114011-6a66-e902-c00f-e419b6b4509f\"\ + ,\"problemClassificationDisplayName\":\"Cost Management / I have access but\ + \ cost is not loading for me\",\"severity\":\"Minimal\",\"require24X7Response\"\ + :false,\"enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"Foo\",\"\ + lastName\":\"Bar\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\"\ + :\"azengcase@microsoft.com\",\"preferredTimeZone\":\"Pacific Standard Time\"\ + ,\"country\":\"USA\",\"preferredSupportLanguage\":\"en-US\"},\"serviceLevelAgreement\"\ + :{\"startTime\":\"2024-03-25T06:31:01Z\",\"expirationTime\":\"2024-03-25T21:00:00Z\"\ + ,\"slaMinutes\":480},\"supportEngineer\":{},\"supportPlanType\":\"Azure Internal\"\ + ,\"supportTicketId\":\"2403250010001029\",\"title\":\"test ticket from python\ + \ cli test. Do not assign and close after a day.\",\"serviceId\":\"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc\"\ + ,\"serviceDisplayName\":\"Billing\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2024-03-24T23:30:55Z\",\"createdDate\":\"2024-03-25T06:31:01Z\",\"modifiedDate\"\ + :\"2024-03-25T06:31:15Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_4lxwxt2rl\"\ + ,\"name\":\"test_ticket_from_cli_4lxwxt2rl\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"test ticket from python cli test. Do not\ + \ assign and close after a day.\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc/problemClassifications/44114011-6a66-e902-c00f-e419b6b4509f\"\ + ,\"problemClassificationDisplayName\":\"Cost Management / I have access but\ + \ cost is not loading for me\",\"severity\":\"Minimal\",\"require24X7Response\"\ + :false,\"enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"Foo\",\"\ + lastName\":\"Bar\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\"\ + :\"azengcase@microsoft.com\",\"preferredTimeZone\":\"Pacific Standard Time\"\ + ,\"country\":\"USA\",\"preferredSupportLanguage\":\"en-US\"},\"serviceLevelAgreement\"\ + :{\"startTime\":\"2024-03-25T06:09:14Z\",\"expirationTime\":\"2024-03-25T21:00:00Z\"\ + ,\"slaMinutes\":480},\"supportEngineer\":{},\"supportPlanType\":\"Azure Internal\"\ + ,\"supportTicketId\":\"2403250010000934\",\"title\":\"test ticket from python\ + \ cli test. Do not assign and close after a day.\",\"serviceId\":\"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc\"\ + ,\"serviceDisplayName\":\"Billing\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2024-03-24T23:09:09Z\",\"createdDate\":\"2024-03-25T06:09:14Z\",\"modifiedDate\"\ + :\"2024-03-25T06:09:56Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/Powershellbugbashtestticket1\"\ + ,\"name\":\"Powershellbugbashtestticket1\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"test ticket\",\"problemClassificationId\"\ + :\"/providers/Microsoft.Support/services/40ef020e-8ae7-8d57-b538-9153c47cee69/problemClassifications/72d14431-fb9e-7a21-0fa8-d3e4ac446e7a\"\ + ,\"problemClassificationDisplayName\":\"Backup and Restore / Automated or\ + \ Managed backup\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"\ + enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"firstName\",\"lastName\"\ + :\"lastName\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\"\ + :\"vimunuku@microsoft.com\",\"preferredTimeZone\":\"Pacific Standard Time\"\ + ,\"country\":\"USA\",\"preferredSupportLanguage\":\"en-US\"},\"technicalTicketDetails\"\ + :{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ACTEST/providers/Microsoft.Compute/virtualMachines/ACTEST\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2024-03-19T20:33:07Z\",\"expirationTime\"\ + :\"2024-03-20T16:34:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"grhuang@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2403190010004435\",\"title\":\"test\",\"serviceId\":\"/providers/Microsoft.Support/services/40ef020e-8ae7-8d57-b538-9153c47cee69\"\ + ,\"serviceDisplayName\":\"SQL Server in VM - Linux\",\"status\":\"Open\",\"\ + createdDate\":\"2024-03-19T20:33:07Z\",\"modifiedDate\":\"2024-03-19T21:03:14Z\"\ + }},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_grhuang_2024_03_04_1\"\ + ,\"name\":\"test_grhuang_2024_03_04_1\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"Test\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25\"\ + ,\"problemClassificationDisplayName\":\"Test Support Topic 1\",\"severity\"\ + :\"Minimal\",\"require24X7Response\":false,\"enrollmentId\":\"\",\"contactDetails\"\ + :{\"firstName\":\"first\",\"lastName\":\"last\",\"preferredContactMethod\"\ + :\"Email\",\"primaryEmailAddress\":\"grhuang@microsoft.com\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"serviceLevelAgreement\":{\"startTime\":\"2024-03-04T21:09:15Z\"\ + ,\"expirationTime\":\"2024-03-05T17:10:00Z\",\"slaMinutes\":480},\"supportEngineer\"\ + :{},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\":\"2403040040013639\"\ + ,\"title\":\"Test\",\"serviceId\":\"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201\"\ + ,\"serviceDisplayName\":\"Test Product Case Submission - Preview\",\"status\"\ + :\"Open\",\"createdDate\":\"2024-03-04T21:09:15Z\",\"modifiedDate\":\"2024-03-05T21:59:02Z\"\ + }},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test1\"\ + ,\"name\":\"test1\",\"type\":\"Microsoft.Support/supportTickets\",\"properties\"\ + :{\"description\":\"Test\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25\"\ + ,\"problemClassificationDisplayName\":\"Test Support Topic 1\",\"severity\"\ + :\"Minimal\",\"require24X7Response\":false,\"enrollmentId\":\"\",\"contactDetails\"\ + :{\"firstName\":\"first\",\"lastName\":\"last\",\"preferredContactMethod\"\ + :\"Email\",\"primaryEmailAddress\":\"grhuang@microsoft.com\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"serviceLevelAgreement\":{\"startTime\":\"2024-03-04T21:01:58Z\"\ + ,\"expirationTime\":\"2024-03-05T17:02:00Z\",\"slaMinutes\":480},\"supportEngineer\"\ + :{},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\":\"2403040040013530\"\ + ,\"title\":\"Test\",\"serviceId\":\"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201\"\ + ,\"serviceDisplayName\":\"Test Product Case Submission - Preview\",\"status\"\ + :\"Open\",\"createdDate\":\"2024-03-04T21:01:58Z\",\"modifiedDate\":\"2024-03-04T21:02:09Z\"\ + }},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-69575ec1-79a1778b-4aa6-490c-8d83-6a0cad985069\"\ + ,\"name\":\"58cf91d7-69575ec1-79a1778b-4aa6-490c-8d83-6a0cad985069\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"This\ + \ support ticket was created specifically to track an Azure chat.\",\"problemClassificationId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / CDN\ + \ Analytics\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\"\ + :\"\",\"contactDetails\":{\"firstName\":\"Kenley\",\"lastName\":\"Shaw\",\"\ + preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"kenleyshaw@microsoft.com\"\ + ,\"preferredTimeZone\":\"Eastern Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/df-SupportRP/providers/microsoft.cdn/profiles/SupportExtensionCdnTest/endpoints/supportextensioncdn\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2024-02-14T17:01:02Z\",\"expirationTime\"\ + :\"2024-02-15T01:01:02Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"kenleyshaw@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2402140040008351\",\"title\":\"Internal Microsoft test case - please close\"\ + ,\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2024-02-14T17:01:02Z\",\"modifiedDate\":\"2024-02-14T17:01:58Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/testticket_grhuang_10092023_2\"\ + ,\"name\":\"testticket_grhuang_10092023_2\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"test\_ticket\_-\_close\_tomorrow\_-\_support\_\ + api\_bugbash\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc/problemClassifications/d0f16bf7-e011-3f3b-1c26-3147f84e0896\"\ + ,\"problemClassificationDisplayName\":\"Assistance with bill / Help understanding\ + \ my invoice (bill)\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"\ + enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"Grace\",\"lastName\"\ + :\"Huang\",\"preferredContactMethod\":\"Phone\",\"primaryEmailAddress\":\"\ + grhuang@microsoft.com\",\"phoneNumber\":\"112115678\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"supportEngineer\":{\"emailAddress\":\"grhuang@microsoft.com\"\ + },\"supportPlanType\":\"Azure Internal\",\"supportTicketId\":\"2401230040015515\"\ + ,\"title\":\"test\_ticket\_-\_close\_tomorrow\_-\_support\_api\_bugbash\"\ + ,\"serviceId\":\"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc\"\ + ,\"serviceDisplayName\":\"Billing\",\"status\":\"Open\",\"createdDate\":\"\ + 2024-01-23T22:22:50Z\",\"modifiedDate\":\"2024-02-07T23:17:07Z\"}},{\"id\"\ + :\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/517f2da6-820ff4e1-3938ad8c-739b-42a6-a7ec-3d067df9214d\"\ + ,\"name\":\"517f2da6-820ff4e1-3938ad8c-739b-42a6-a7ec-3d067df9214d\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"Question:\ + \ Problem Start Date\\nAnswer: Not sure, use current time\\n\\nQuestion: New\ + \ or Existing customer?\\nAnswer: \\n\\nQuestion: Do you have any outstanding\ + \ balance?\\nAnswer: \\n\\nQuestion: Did you request to switch to check or\ + \ wire transfer in the Azure portal?\\nAnswer: \\n\\nQuestion: Order ID (requesting\ + \ for invoice option)\\nAnswer: \\n\\nQuestion: Account Admins Live ID(or\ + \ Org ID) (should be company domain)\\nAnswer: test\\n\\nQuestion: Commerce\ + \ Account ID\\nAnswer: \\n\\nQuestion: Country\\nAnswer: \\n\\nQuestion: TAX\ + \ ID/ VAT ID\\nAnswer: \\n\\nQuestion: Any prior business with Microsoft?\\\ + nAnswer: Other, don't know or not applicable\\n\\nQuestion: Contact Name\\\ + nAnswer: \\n\\nQuestion: Contact Phone\\nAnswer: \\n\\nQuestion: Contact Email\\\ + nAnswer: \\n\\nQuestion: Company details\\nAnswer: test\\n\\nQuestion: Provide\ + \ justification on why you prefer Invoice option over credit card\\nAnswer:\"\ + ,\"problemClassificationId\":\"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc/problemClassifications/820ff4e1-cf84-8e12-ffd3-9d39859eaf36\"\ + ,\"problemClassificationDisplayName\":\"Manage Payment Methods / I have questions\ + \ about invoice pay\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"\ + enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"Atavur Rahaman\",\"\ + lastName\":\"Mohammad\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\"\ + :\"atmohammad@microsoft.com\",\"phoneNumber\":\"0000000000\",\"preferredTimeZone\"\ + :\"Eastern Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"supportEngineer\":{\"emailAddress\":\"atmohammad@microsoft.com\"\ + },\"supportPlanType\":\"Azure Internal\",\"supportTicketId\":\"2401180040011742\"\ + ,\"title\":\"Billing ticket for testing\",\"serviceId\":\"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc\"\ + ,\"serviceDisplayName\":\"Billing\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2024-01-18T18:48:00Z\",\"createdDate\":\"2024-01-18T18:49:07Z\",\"modifiedDate\"\ + :\"2024-02-01T15:13:45Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/6f16735c-0cb121be-3938ad8c-739b-42a6-a7ec-3d067df920a9\"\ + ,\"name\":\"6f16735c-0cb121be-3938ad8c-739b-42a6-a7ec-3d067df920a9\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"Question:\ + \ Start time of most recent occurrence\\nAnswer: Not sure, use current time\\\ + n\\nQuestion: Is the problem occurring right now?\\nAnswer: \\n\\nQuestion:\ + \ How did you detect high memory usage?\\nAnswer: \\n\\nQuestion: Select the\ + \ applications running on your virtual machine\\nAnswer: \\n\\nQuestion: List\ + \ all processes/applications you have identified that cause the high memory\ + \ usage.\\nAnswer: test\\n\\nQuestion: Description\\nAnswer: test\",\"problemClassificationId\"\ + :\"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/0cb121be-61df-48e4-5faa-b34f01c7aa16\"\ + ,\"problemClassificationDisplayName\":\"VM Performance / Memory usage is higher\ + \ than expected\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"\ + enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"Atavur Rahaman\",\"\ + lastName\":\"Mohammad\",\"preferredContactMethod\":\"Phone\",\"primaryEmailAddress\"\ + :\"atmohammad@microsoft.com\",\"phoneNumber\":\"0000000000\",\"preferredTimeZone\"\ + :\"Eastern Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/actest/providers/Microsoft.Compute/virtualMachines/actest\"\ + },\"supportEngineer\":{\"emailAddress\":\"atmohammad@microsoft.com\"},\"supportPlanType\"\ + :\"Azure Internal\",\"supportTicketId\":\"2401180040011177\",\"title\":\"\ + technical ticket for testing\",\"serviceId\":\"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396\"\ + ,\"serviceDisplayName\":\"Virtual Machine running Windows\",\"status\":\"\ + Open\",\"problemStartTime\":\"2024-01-18T18:18:00Z\",\"createdDate\":\"2024-01-18T18:19:10Z\"\ + ,\"modifiedDate\":\"2024-02-01T17:59:34Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2401180040006675\"\ + ,\"name\":\"2401180040006675\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / CDN\ + \ Analytics\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\"\ + :\"\",\"contactDetails\":{\"firstName\":\"Kenley\",\"lastName\":\"Shaw\",\"\ + preferredContactMethod\":\"Phone\",\"primaryEmailAddress\":\"kenleyshaw@microsoft.com\"\ + ,\"phoneNumber\":\"112112\",\"preferredTimeZone\":\"Pacific Standard Time\"\ + ,\"country\":\"USA\",\"preferredSupportLanguage\":\"en-US\"},\"technicalTicketDetails\"\ + :{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/df-SupportRP/providers/microsoft.cdn/profiles/SupportExtensionCdnTest/endpoints/supportextensioncdn\"\ + },\"supportEngineer\":{\"emailAddress\":\"kenleyshaw@microsoft.com\"},\"supportPlanType\"\ + :\"Azure Internal\",\"supportTicketId\":\"2401180040006675\",\"title\":\"\ + internal test case - please disregard and close\",\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2024-01-18T14:49:07Z\",\"modifiedDate\":\"2024-01-23T21:27:05Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/6f16735c-8b618100-01436a63-ee0c-4a0c-a9a3-453da2599154\"\ + ,\"name\":\"6f16735c-8b618100-01436a63-ee0c-4a0c-a9a3-453da2599154\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"Question:\ + \ Start time of most recent occurrence\\nAnswer: Not sure, use current time\\\ + n\\nQuestion: Is the problem occurring right now?\\nAnswer: \\n\\nQuestion:\ + \ How did you detect high CPU usage?\\nAnswer: \\n\\nQuestion: Select the\ + \ applications running on your virtual machine\\nAnswer: \\n\\nQuestion: List\ + \ all processes/applications you have identified that cause the high CPU usage.\\\ + nAnswer: testt\\n\\nQuestion: Description\\nAnswer: test\",\"problemClassificationId\"\ + :\"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/8b618100-f5cd-7ad5-1c69-72aaf37d801d\"\ + ,\"problemClassificationDisplayName\":\"VM Performance / CPU usage is higher\ + \ than expected\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"\ + enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"Atavur Rahaman\",\"\ + lastName\":\"Mohammad\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\"\ + :\"atmohammad@microsoft.com\",\"preferredTimeZone\":\"Eastern Standard Time\"\ + ,\"country\":\"USA\",\"preferredSupportLanguage\":\"en-US\"},\"technicalTicketDetails\"\ + :{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/actest/providers/Microsoft.Compute/virtualMachines/actest\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2024-01-17T21:00:11Z\",\"expirationTime\"\ + :\"2024-01-18T17:01:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"atmohammad@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2401170040013248\",\"title\":\"test\",\"serviceId\":\"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396\"\ + ,\"serviceDisplayName\":\"Virtual Machine running Windows\",\"status\":\"\ + Open\",\"problemStartTime\":\"2024-01-17T20:59:00Z\",\"createdDate\":\"2024-01-17T21:00:11Z\"\ + ,\"modifiedDate\":\"2024-01-18T15:23:22Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-093c5e98-24a7bb4a-2f70-42d5-93dd-9958f2889062\"\ + ,\"name\":\"58cf91d7-093c5e98-24a7bb4a-2f70-42d5-93dd-9958f2889062\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"test\ + \ case\\n\\nProblem start date and time\\nNot sure, use current time\",\"\ + problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/093c5e98-56a4-1af2-7bc4-d8e2d4e9a48b\"\ + ,\"problemClassificationDisplayName\":\"Configuration / Standard Rules Engine\"\ + ,\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\":\"\ + \",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\":\"Takle\",\"preferredContactMethod\"\ + :\"Email\",\"primaryEmailAddress\":\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2024-01-12T18:12:24Z\",\"expirationTime\"\ + :\"2024-01-16T14:13:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2401120010003136\",\"title\":\"[TEST 2] need help with azure cdn\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2024-01-12T18:12:00Z\",\"createdDate\":\"2024-01-12T18:12:24Z\",\"modifiedDate\"\ + :\"2024-01-12T18:13:40Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2401120040009600\"\ + ,\"name\":\"2401120040009600\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / CDN\ + \ Analytics\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\"\ + :\"\",\"contactDetails\":{\"firstName\":\"Kenley\",\"lastName\":\"Shaw\",\"\ + preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"kenleyshaw@microsoft.com\"\ + ,\"preferredTimeZone\":\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/df-SupportRP/providers/microsoft.cdn/profiles/SupportExtensionCdnTest/endpoints/supportextensioncdn\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2024-01-12T18:10:19Z\",\"expirationTime\"\ + :\"2024-01-16T14:11:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"kenleyshaw@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2401120040009600\",\"title\":\"test\",\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2024-01-12T18:10:19Z\",\"modifiedDate\":\"2024-01-12T18:15:33Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2401120040009529\"\ + ,\"name\":\"2401120040009529\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / CDN\ + \ Analytics\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\"\ + :\"\",\"contactDetails\":{\"firstName\":\"Kenley\",\"lastName\":\"Shaw\",\"\ + preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"kenleyshaw@microsoft.com\"\ + ,\"preferredTimeZone\":\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/df-SupportRP/providers/microsoft.cdn/profiles/SupportExtensionCdnTest/endpoints/supportextensioncdn\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2024-01-12T18:06:12Z\",\"expirationTime\"\ + :\"2024-01-16T14:07:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"kenleyshaw@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2401120040009529\",\"title\":\"This is a Microsoft internal test case.\ + \ Please ignore and close.\",\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2024-01-12T18:06:12Z\",\"modifiedDate\":\"2024-01-12T18:06:48Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-27a54e37-7ee57473-c9c9-4350-b0e1-f7aa2479108d\"\ + ,\"name\":\"58cf91d7-27a54e37-7ee57473-c9c9-4350-b0e1-f7aa2479108d\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"test\ + \ case\\n\\nProblem start date and time\\nNot sure, use current time\",\"\ + problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/27a54e37-5930-2bf0-2437-37a3b46343c9\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / CDN\ + \ does not cache content\",\"severity\":\"Minimal\",\"require24X7Response\"\ + :false,\"enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"Aditi\",\"\ + lastName\":\"Takle\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\"\ + :\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\":\"Pacific Standard Time\"\ + ,\"country\":\"USA\",\"preferredSupportLanguage\":\"en-US\"},\"technicalTicketDetails\"\ + :{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2024-01-11T21:44:07Z\",\"expirationTime\"\ + :\"2024-01-12T17:45:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2401110010004121\",\"title\":\"[TEST] help with CDN\",\"serviceId\":\"\ + /providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2024-01-11T21:43:00Z\",\"createdDate\":\"2024-01-11T21:44:07Z\",\"modifiedDate\"\ + :\"2024-02-01T00:14:51Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-bedfb285-09e57ae0-f36b-46d0-a7c3-e720e421e17f\"\ + ,\"name\":\"58cf91d7-bedfb285-09e57ae0-f36b-46d0-a7c3-e720e421e17f\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"This\ + \ support ticket was created specifically to track an Azure chat.\",\"problemClassificationId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/bedfb285-06e6-918c-0851-d180769d7078\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / Buffering\ + \ while streaming\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"\ + enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"Dhruvesh\",\"lastName\"\ + :\"Sheladiya\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\"\ + :\"dsheladiya@microsoft.com\",\"preferredTimeZone\":\"Eastern Standard Time\"\ + ,\"country\":\"USA\",\"preferredSupportLanguage\":\"en-US\"},\"technicalTicketDetails\"\ + :{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-12-07T21:18:07Z\",\"expirationTime\"\ + :\"2023-12-08T17:19:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"kenleyshaw@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2312070040013269\",\"title\":\"CDN buffering\",\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-12-07T21:18:07Z\",\"modifiedDate\":\"2023-12-21T19:23:28Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-69575ec1-6d2f1909-babf-4aa6-9ca2-aee6244760ed\"\ + ,\"name\":\"58cf91d7-69575ec1-6d2f1909-babf-4aa6-9ca2-aee6244760ed\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"test\\\ + n\\nProblem start date and time\\nNot sure, use current time\",\"problemClassificationId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / CDN\ + \ Analytics\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\"\ + :\"\",\"contactDetails\":{\"firstName\":\"Kenley\",\"lastName\":\"Shaw\",\"\ + preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"kenleyshaw@microsoft.com\"\ + ,\"preferredTimeZone\":\"Eastern Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/df-SupportRP/providers/microsoft.cdn/profiles/SupportExtensionCdnTest/endpoints/supportextensioncdn\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-11-29T15:59:10Z\",\"expirationTime\"\ + :\"2023-11-29T23:59:10Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"kenleyshaw@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2311290040007957\",\"title\":\"test for lighthouse scores 2 - please close\"\ + ,\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2023-11-29T15:58:00Z\",\"createdDate\":\"2023-11-29T15:59:10Z\",\"modifiedDate\"\ + :\"2023-12-27T17:09:36Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-69575ec1-6d2f1909-babf-4aa6-9ca2-aee62447606f\"\ + ,\"name\":\"58cf91d7-69575ec1-6d2f1909-babf-4aa6-9ca2-aee62447606f\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"test\\\ + n\\nProblem start date and time\\nNot sure, use current time\",\"problemClassificationId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / CDN\ + \ Analytics\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\"\ + :\"\",\"contactDetails\":{\"firstName\":\"Kenley\",\"lastName\":\"Shaw\",\"\ + preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"kenleyshaw@microsoft.com\"\ + ,\"preferredTimeZone\":\"Eastern Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/df-SupportRP/providers/microsoft.cdn/profiles/SupportExtensionCdnTest/endpoints/supportextensioncdn\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-11-29T15:53:38Z\",\"expirationTime\"\ + :\"2023-11-29T23:53:38Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"kenleyshaw@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2311290040007845\",\"title\":\"test case for lighthouse scores - please\ + \ close\",\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2023-11-29T15:52:00Z\",\"createdDate\":\"2023-11-29T15:53:38Z\",\"modifiedDate\"\ + :\"2023-11-29T15:56:51Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-69575ec1-330f6a9a-d2f5-4513-aa1e-9d38fe50605f\"\ + ,\"name\":\"58cf91d7-69575ec1-330f6a9a-d2f5-4513-aa1e-9d38fe50605f\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"This\ + \ support ticket was created specifically to track an Azure chat.\",\"problemClassificationId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / CDN\ + \ Analytics\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\"\ + :\"\",\"contactDetails\":{\"firstName\":\"Kenley\",\"lastName\":\"Shaw\",\"\ + preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"kenleyshaw@microsoft.com\"\ + ,\"preferredTimeZone\":\"Eastern Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/df-SupportRP/providers/microsoft.cdn/profiles/SupportExtensionCdnTest/endpoints/supportextensioncdn\"\ + },\"supportEngineer\":{\"emailAddress\":\"kenleyshaw@microsoft.com\"},\"supportPlanType\"\ + :\"Azure Internal\",\"supportTicketId\":\"2311100040008546\",\"title\":\"\ + TEST please ingore and close\",\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-11-10T17:01:50Z\",\"modifiedDate\":\"2023-11-10T17:07:43Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/6f16735c-8b618100-2d2b1139-a554-451b-8aba-7add2acad090\"\ + ,\"name\":\"6f16735c-8b618100-2d2b1139-a554-451b-8aba-7add2acad090\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"Question:\ + \ Start time of most recent occurrence\\nAnswer: Not sure, use current time\\\ + n\\nQuestion: Is the problem occurring right now?\\nAnswer: \\n\\nQuestion:\ + \ How did you detect high CPU usage?\\nAnswer: \\n\\nQuestion: Select the\ + \ applications running on your virtual machine\\nAnswer: \\n\\nQuestion: List\ + \ all processes/applications you have identified that cause the high CPU usage.\\\ + nAnswer: test\\n\\nQuestion: Description\\nAnswer: test\",\"problemClassificationId\"\ + :\"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/8b618100-f5cd-7ad5-1c69-72aaf37d801d\"\ + ,\"problemClassificationDisplayName\":\"VM Performance / CPU usage is higher\ + \ than expected\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"\ + enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"Atavur Rahaman\",\"\ + lastName\":\"Mohammad\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\"\ + :\"atmohammad@microsoft.com\",\"preferredTimeZone\":\"Eastern Standard Time\"\ + ,\"country\":\"USA\",\"preferredSupportLanguage\":\"en-US\"},\"technicalTicketDetails\"\ + :{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/actest/providers/Microsoft.Compute/virtualMachines/actest\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-11-08T18:25:25Z\",\"expirationTime\"\ + :\"2023-11-09T14:26:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"atmohammad@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2311080040011458\",\"title\":\"test\",\"serviceId\":\"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396\"\ + ,\"serviceDisplayName\":\"Virtual Machine running Windows\",\"status\":\"\ + Open\",\"problemStartTime\":\"2023-11-08T18:24:00Z\",\"createdDate\":\"2023-11-08T18:25:25Z\"\ + ,\"modifiedDate\":\"2023-11-08T23:55:39Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/b25271d3-286a12a1-ec9708a7-9e30-4b14-bc71-bf61a64041f8\"\ + ,\"name\":\"b25271d3-286a12a1-ec9708a7-9e30-4b14-bc71-bf61a64041f8\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"Question:\ + \ Please select the Virtual Network you are unable to delete\\nAnswer: actest-vnet\\\ + n\\nQuestion: When did the problem begin?\\nAnswer: Not sure, use current\ + \ time\\n\\nQuestion: Please provide details about the errors you receive\ + \ when you try to delete your virtual network\\nAnswer: test\",\"problemClassificationId\"\ + :\"/providers/Microsoft.Support/services/b25271d3-6431-dfbc-5f12-5693326809b3/problemClassifications/286a12a1-a61b-b838-f1fd-50d2a03d3c42\"\ + ,\"problemClassificationDisplayName\":\"Cannot delete Azure Virtual Network\ + \ (VNet) / Cannot delete VNet because of Azure App Service integration\",\"\ + severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\":\"\"\ + ,\"contactDetails\":{\"firstName\":\"Grace2\",\"lastName\":\"Huang2\",\"preferredContactMethod\"\ + :\"Email\",\"primaryEmailAddress\":\"Grace.Huang2@microsoft.com\",\"phoneNumber\"\ + :\"1234567890\",\"preferredTimeZone\":\"SA Pacific Standard Time\",\"country\"\ + :\"AZE\",\"preferredSupportLanguage\":\"es-ES\"},\"technicalTicketDetails\"\ + :{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/actest/providers/Microsoft.Network/virtualNetworks/actest-vnet\"\ + },\"supportEngineer\":{\"emailAddress\":\"grhuang@microsoft.com\"},\"supportPlanType\"\ + :\"Azure Internal\",\"supportTicketId\":\"2311070040011019\",\"title\":\"\ + test please ignore and close\",\"serviceId\":\"/providers/Microsoft.Support/services/b25271d3-6431-dfbc-5f12-5693326809b3\"\ + ,\"serviceDisplayName\":\"Virtual Network\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2023-11-07T18:09:00Z\",\"createdDate\":\"2023-11-07T18:10:03Z\",\"modifiedDate\"\ + :\"2024-02-21T19:21:00Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/devintest_11_3_23_4\"\ + ,\"name\":\"devintest_11_3_23_4\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"Test used for E2E tests, do not assign,\ + \ do not close\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25\"\ + ,\"problemClassificationDisplayName\":\"Test Support Topic 1\",\"severity\"\ + :\"Minimal\",\"require24X7Response\":false,\"enrollmentId\":\"\",\"contactDetails\"\ + :{\"firstName\":\"Devin\",\"lastName\":\"Stoen\",\"preferredContactMethod\"\ + :\"Phone\",\"primaryEmailAddress\":\"devin.stoen10@gmail.com\",\"phoneNumber\"\ + :\"5015487297\",\"preferredTimeZone\":\"Dateline Standard Time\",\"country\"\ + :\"USA\",\"preferredSupportLanguage\":\"en-US\"},\"serviceLevelAgreement\"\ + :{\"startTime\":\"2023-11-03T19:01:01Z\",\"expirationTime\":\"2023-11-06T16:02:00Z\"\ + ,\"slaMinutes\":480},\"supportEngineer\":{},\"supportPlanType\":\"Azure Internal\"\ + ,\"supportTicketId\":\"2311030010002697\",\"title\":\"Test used for E2E tests,\ + \ do not assign, do not close\",\"serviceId\":\"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201\"\ + ,\"serviceDisplayName\":\"Test Product Case Submission - Preview\",\"status\"\ + :\"Open\",\"problemStartTime\":\"2023-01-25T19:00:00Z\",\"createdDate\":\"\ + 2023-11-03T19:01:01Z\",\"modifiedDate\":\"2023-11-03T19:01:21Z\"}},{\"id\"\ + :\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/f3dc5421-5669bc09-32584534-52b7-4c52-b567-113ac2b78077\"\ + ,\"name\":\"f3dc5421-5669bc09-32584534-52b7-4c52-b567-113ac2b78077\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"Question:\ + \ Problem Start Date\\nAnswer: Not sure, use current time\\n\\nQuestion: Select\ + \ the Subscription ID\\nAnswer: IBIZA - Test (76cb77fa-8b17-4eab-9493-b65dace99813)\\\ + n\\nQuestion: Select the Request type\\nAnswer: Other, don't know or not applicable\\\ + n\\nQuestion: Select the Offer type\\nAnswer: Other\\n\\nQuestion: Provide\ + \ the Offer Type\\nAnswer: \\n\\nQuestion: Provide a brief description of\ + \ the issue\\nAnswer: This is a test ticket, please ignore\",\"problemClassificationId\"\ + :\"/providers/Microsoft.Support/services/f3dc5421-79ef-1efa-41a5-42bf3cbb52c6/problemClassifications/5669bc09-f3a6-e210-c628-bf92dab0e8d3\"\ + ,\"problemClassificationDisplayName\":\"Benefits - Offers / Activation or\ + \ extension request\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"\ + enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"Grace\",\"lastName\"\ + :\"Huang\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"\ + Grace.Huang@microsoft.com\",\"phoneNumber\":\"4257046975\",\"preferredTimeZone\"\ + :\"Eastern Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"serviceLevelAgreement\":{\"startTime\":\"2023-10-17T14:24:37Z\"\ + ,\"expirationTime\":\"2023-10-17T22:24:37Z\",\"slaMinutes\":480},\"supportEngineer\"\ + :{\"emailAddress\":\"grhuang@microsoft.com\"},\"supportPlanType\":\"Azure\ + \ Internal\",\"supportTicketId\":\"2310170040006921\",\"title\":\"grace test\ + \ ticket please ignore and close\",\"serviceId\":\"/providers/Microsoft.Support/services/f3dc5421-79ef-1efa-41a5-42bf3cbb52c6\"\ + ,\"serviceDisplayName\":\"Subscription management\",\"status\":\"Open\",\"\ + problemStartTime\":\"2023-10-17T14:24:00Z\",\"createdDate\":\"2023-10-17T14:24:37Z\"\ + ,\"modifiedDate\":\"2023-10-26T20:00:22Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/f3dc5421-03014459-c8a0afbe-af34-425e-80db-38a143a3f06b\"\ + ,\"name\":\"f3dc5421-03014459-c8a0afbe-af34-425e-80db-38a143a3f06b\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"test\\\ + n\\nProblem start date and time\\nNot sure, use current time\",\"problemClassificationId\"\ + :\"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25\"\ + ,\"problemClassificationDisplayName\":\"Test Support Topic 1\",\"severity\"\ + :\"Minimal\",\"require24X7Response\":false,\"enrollmentId\":\"\",\"contactDetails\"\ + :{\"firstName\":\"Grace\",\"lastName\":\"Huang\",\"preferredContactMethod\"\ + :\"Email\",\"primaryEmailAddress\":\"Grace.Huang@microsoft.com\",\"phoneNumber\"\ + :\"4257046975\",\"preferredTimeZone\":\"Eastern Standard Time\",\"country\"\ + :\"USA\",\"preferredSupportLanguage\":\"en-US\"},\"serviceLevelAgreement\"\ + :{\"startTime\":\"2023-10-02T14:56:24Z\",\"expirationTime\":\"2023-10-02T22:56:24Z\"\ + ,\"slaMinutes\":480},\"supportEngineer\":{},\"supportPlanType\":\"Azure Internal\"\ + ,\"supportTicketId\":\"2310020040005350\",\"title\":\"test please ignore and\ + \ close\",\"serviceId\":\"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201\"\ + ,\"serviceDisplayName\":\"Test Product Case Submission - Preview\",\"status\"\ + :\"Open\",\"problemStartTime\":\"2023-10-02T14:54:00Z\",\"createdDate\":\"\ + 2023-10-02T14:56:24Z\",\"modifiedDate\":\"2023-10-18T23:44:08Z\"}},{\"id\"\ + :\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-8b7ff0c4-60469b66-ffc3-47cd-9021-2fba2d9e0b68\"\ + ,\"name\":\"58cf91d7-8b7ff0c4-60469b66-ffc3-47cd-9021-2fba2d9e0b68\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"This\ + \ support ticket was created specifically to track an Azure chat.\",\"problemClassificationId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/8b7ff0c4-0578-29ed-5372-141710cf9824\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / Slow\ + \ transfer\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\"\ + :\"\",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\":\"Takle\",\"\ + preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"Aditi.Takle@microsoft.com\"\ + ,\"preferredTimeZone\":\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-09-22T21:11:52Z\",\"expirationTime\"\ + :\"2023-09-25T17:12:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2309220040012242\",\"title\":\"test chat, please close 2\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-09-22T21:11:52Z\",\"modifiedDate\":\"2024-02-14T22:20:19Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-973d44f9-cf6c3ac0-7a05-4ea5-bb19-5cdbd23e65fb\"\ + ,\"name\":\"58cf91d7-973d44f9-cf6c3ac0-7a05-4ea5-bb19-5cdbd23e65fb\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"This\ + \ support ticket was created specifically to track an Azure chat.\",\"problemClassificationId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/973d44f9-d532-be2e-4772-db84cb0ec00a\"\ + ,\"problemClassificationDisplayName\":\"Other\",\"severity\":\"Minimal\",\"\ + require24X7Response\":false,\"enrollmentId\":\"\",\"contactDetails\":{\"firstName\"\ + :\"Aditi\",\"lastName\":\"Takle\",\"preferredContactMethod\":\"Email\",\"\ + primaryEmailAddress\":\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"serviceLevelAgreement\":{\"startTime\":\"2023-09-22T15:38:21Z\"\ + ,\"expirationTime\":\"2023-09-22T23:38:21Z\",\"slaMinutes\":480},\"supportEngineer\"\ + :{\"emailAddress\":\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure\ + \ Internal\",\"supportTicketId\":\"2309220040007374\",\"title\":\"test chat,\ + \ please close\",\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-09-22T15:38:21Z\",\"modifiedDate\":\"2023-09-22T15:39:39Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-9e4a4be2-92921cbd-a2e2-4f6d-9664-9bfd0725005f\"\ + ,\"name\":\"58cf91d7-9e4a4be2-92921cbd-a2e2-4f6d-9664-9bfd0725005f\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"test\ + \ case, please close\\n\\nProblem start date and time\\nNot sure, use current\ + \ time\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/9e4a4be2-eed0-b5d1-c537-a50fa8987bc2\"\ + ,\"problemClassificationDisplayName\":\"Configuration / HTTPS and SSL configuration\"\ + ,\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\":\"\ + \",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\":\"Takle\",\"preferredContactMethod\"\ + :\"Email\",\"primaryEmailAddress\":\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-09-07T21:39:45Z\",\"expirationTime\"\ + :\"2023-09-08T17:40:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2309070040013211\",\"title\":\"test chat, please close\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2023-09-07T21:37:00Z\",\"createdDate\":\"2023-09-07T21:39:45Z\",\"modifiedDate\"\ + :\"2023-09-07T21:41:05Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-9e4a4be2-fb2dd7a6-8964-40be-9125-933d390d1087\"\ + ,\"name\":\"58cf91d7-9e4a4be2-fb2dd7a6-8964-40be-9125-933d390d1087\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"test\ + \ case, please close\\n\\nProblem start date and time\\nNot sure, use current\ + \ time\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/9e4a4be2-eed0-b5d1-c537-a50fa8987bc2\"\ + ,\"problemClassificationDisplayName\":\"Configuration / HTTPS and SSL configuration\"\ + ,\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\":\"\ + \",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\":\"Takle\",\"preferredContactMethod\"\ + :\"Email\",\"primaryEmailAddress\":\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-09-01T17:13:09Z\",\"expirationTime\"\ + :\"2023-09-05T13:14:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2309010040007966\",\"title\":\"test case, please close\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2023-09-01T17:11:00Z\",\"createdDate\":\"2023-09-01T17:13:09Z\",\"modifiedDate\"\ + :\"2023-09-01T17:17:43Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-6f8f3814-72a9674e-b98a-438d-93f9-bf85cd3aa373\"\ + ,\"name\":\"58cf91d7-6f8f3814-72a9674e-b98a-438d-93f9-bf85cd3aa373\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"This\ + \ support ticket was created specifically to track an Azure chat.\",\"problemClassificationId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/6f8f3814-1ef8-8bc2-f944-7f3c65978dc7\"\ + ,\"problemClassificationDisplayName\":\"Configuration / Custom domain name\ + \ (CName)\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\"\ + :\"\",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\":\"Takle\",\"\ + preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"Aditi.Takle@microsoft.com\"\ + ,\"preferredTimeZone\":\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-08-28T22:43:39Z\",\"expirationTime\"\ + :\"2023-08-29T18:44:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2308280040015652\",\"title\":\"test chat, please close\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-08-28T22:43:39Z\",\"modifiedDate\":\"2023-08-28T22:45:01Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-093c5e98-d9b9cb07-df64-4b88-9439-11626e50f8c5\"\ + ,\"name\":\"58cf91d7-093c5e98-d9b9cb07-df64-4b88-9439-11626e50f8c5\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"This\ + \ support ticket was created specifically to track an Azure chat.\",\"problemClassificationId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/093c5e98-56a4-1af2-7bc4-d8e2d4e9a48b\"\ + ,\"problemClassificationDisplayName\":\"Configuration / Standard Rules Engine\"\ + ,\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\":\"\ + \",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\":\"Takle\",\"preferredContactMethod\"\ + :\"Email\",\"primaryEmailAddress\":\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-08-25T22:26:30Z\",\"expirationTime\"\ + :\"2023-08-28T18:27:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2308250010015206\",\"title\":\"test case, please close\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-08-25T22:26:30Z\",\"modifiedDate\":\"2023-08-25T22:28:37Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-093c5e98-a3c263c7-3f0c-46d7-a8f7-665dc1b61060\"\ + ,\"name\":\"58cf91d7-093c5e98-a3c263c7-3f0c-46d7-a8f7-665dc1b61060\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"test\ + \ case, please close\\n\\nProblem start date and time\\nNot sure, use current\ + \ time\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/093c5e98-56a4-1af2-7bc4-d8e2d4e9a48b\"\ + ,\"problemClassificationDisplayName\":\"Configuration / Standard Rules Engine\"\ + ,\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\":\"\ + \",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\":\"Takle\",\"preferredContactMethod\"\ + :\"Email\",\"primaryEmailAddress\":\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-08-22T22:06:57Z\",\"expirationTime\"\ + :\"2023-08-23T18:07:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2308220010018235\",\"title\":\"test case, please close - embedded chat\ + \ 2\",\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2023-08-22T22:06:00Z\",\"createdDate\":\"2023-08-22T22:06:57Z\",\"modifiedDate\"\ + :\"2023-08-22T22:32:26Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-093c5e98-5ea33e68-6969-4a8d-90c0-db26fb883065\"\ + ,\"name\":\"58cf91d7-093c5e98-5ea33e68-6969-4a8d-90c0-db26fb883065\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"test\ + \ case\\n\\nProblem start date and time\\nNot sure, use current time\",\"\ + problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/093c5e98-56a4-1af2-7bc4-d8e2d4e9a48b\"\ + ,\"problemClassificationDisplayName\":\"Configuration / Standard Rules Engine\"\ + ,\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\":\"\ + \",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\":\"Takle\",\"preferredContactMethod\"\ + :\"Email\",\"primaryEmailAddress\":\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-08-22T21:32:37Z\",\"expirationTime\"\ + :\"2023-08-23T17:33:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2308220010017812\",\"title\":\"test case, please close - embedded chat\"\ + ,\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2023-08-22T21:32:00Z\",\"createdDate\":\"2023-08-22T21:32:37Z\",\"modifiedDate\"\ + :\"2023-08-22T21:33:11Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-093c5e98-5c72add2-a4e1-4678-9930-0076bf2a1896\"\ + ,\"name\":\"58cf91d7-093c5e98-5c72add2-a4e1-4678-9930-0076bf2a1896\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"This\ + \ support ticket was created specifically to track an Azure chat.\",\"problemClassificationId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/093c5e98-56a4-1af2-7bc4-d8e2d4e9a48b\"\ + ,\"problemClassificationDisplayName\":\"Configuration / Standard Rules Engine\"\ + ,\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\":\"\ + \",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\":\"Takle\",\"preferredContactMethod\"\ + :\"Email\",\"primaryEmailAddress\":\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-08-22T18:38:33Z\",\"expirationTime\"\ + :\"2023-08-23T14:39:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2308220010014344\",\"title\":\"test case, please close\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-08-22T18:38:33Z\",\"modifiedDate\":\"2023-08-22T19:36:13Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-69575ec1-06fff934-240f-45eb-b00d-6b9d7181f123\"\ + ,\"name\":\"58cf91d7-69575ec1-06fff934-240f-45eb-b00d-6b9d7181f123\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"This\ + \ support ticket was created specifically to track an Azure chat.\",\"problemClassificationId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / CDN\ + \ Analytics\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\"\ + :\"\",\"contactDetails\":{\"firstName\":\"Kenley\",\"lastName\":\"Shaw\",\"\ + preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"kenleyshaw@microsoft.com\"\ + ,\"preferredTimeZone\":\"Eastern Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/df-SupportRP/providers/microsoft.cdn/profiles/SupportExtensionCdnTest/endpoints/supportextensioncdn\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-08-22T18:07:34Z\",\"expirationTime\"\ + :\"2023-08-23T14:08:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"kenleyshaw@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2308220010013632\",\"title\":\"test case please close\",\"serviceId\":\"\ + /providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-08-22T18:07:34Z\",\"modifiedDate\":\"2023-08-22T18:17:23Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-69575ec1-e65d83e2-0c8a-4c47-ac72-4b946926db94\"\ + ,\"name\":\"58cf91d7-69575ec1-e65d83e2-0c8a-4c47-ac72-4b946926db94\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"This\ + \ support ticket was created specifically to track an Azure chat.\",\"problemClassificationId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / CDN\ + \ Analytics\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\"\ + :\"\",\"contactDetails\":{\"firstName\":\"Kiran\",\"lastName\":\"Korey\",\"\ + preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"kirankorey@microsoft.com\"\ + ,\"preferredTimeZone\":\"Eastern Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-08-21T13:29:29Z\",\"expirationTime\"\ + :\"2023-08-21T21:29:29Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"kirankorey@microsoft.com\"},\"supportPlanType\":\"All support - Included\"\ + ,\"supportTicketId\":\"2308210010006684\",\"title\":\"test\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-08-21T13:29:29Z\",\"modifiedDate\":\"2023-08-21T13:30:25Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-093c5e98-6a28edd3-030b-4af6-a3d5-e68bbf8609a3\"\ + ,\"name\":\"58cf91d7-093c5e98-6a28edd3-030b-4af6-a3d5-e68bbf8609a3\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"This\ + \ support ticket was created specifically to track an Azure chat.\",\"problemClassificationId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/093c5e98-56a4-1af2-7bc4-d8e2d4e9a48b\"\ + ,\"problemClassificationDisplayName\":\"Configuration / Standard Rules Engine\"\ + ,\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\":\"\ + \",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\":\"Takle\",\"preferredContactMethod\"\ + :\"Email\",\"primaryEmailAddress\":\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-08-17T23:30:52Z\",\"expirationTime\"\ + :\"2023-08-18T19:31:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2308170010017757\",\"title\":\"test case, please close 3\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-08-17T23:30:52Z\",\"modifiedDate\":\"2023-08-17T23:41:18Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-9e4a4be2-71099a20-c174-4d61-8326-5798bc28f08a\"\ + ,\"name\":\"58cf91d7-9e4a4be2-71099a20-c174-4d61-8326-5798bc28f08a\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"test\ + \ case\\n\\nProblem start date and time\\nNot sure, use current time\",\"\ + problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/9e4a4be2-eed0-b5d1-c537-a50fa8987bc2\"\ + ,\"problemClassificationDisplayName\":\"Configuration / HTTPS and SSL configuration\"\ + ,\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\":\"\ + \",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\":\"Takle\",\"preferredContactMethod\"\ + :\"Email\",\"primaryEmailAddress\":\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-08-17T23:16:24Z\",\"expirationTime\"\ + :\"2023-08-18T19:17:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2308170010017648\",\"title\":\"test chat please close 2\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2023-08-17T23:15:00Z\",\"createdDate\":\"2023-08-17T23:16:24Z\",\"modifiedDate\"\ + :\"2023-08-17T23:17:07Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-1a331b09-f96f99bc-7309-4fe2-9f1c-bf4cd9ae605b\"\ + ,\"name\":\"58cf91d7-1a331b09-f96f99bc-7309-4fe2-9f1c-bf4cd9ae605b\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"test\ + \ case, please close\\n\\nProblem start date and time\\nNot sure, use current\ + \ time\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/1a331b09-358f-637e-27c8-260c770e3ca7\"\ + ,\"problemClassificationDisplayName\":\"Web Application Firewall (WAF) / Mitigate\ + \ false positives\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"\ + enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\"\ + :\"Takle\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"\ + Aditi.Takle@microsoft.com\",\"preferredTimeZone\":\"Pacific Standard Time\"\ + ,\"country\":\"USA\",\"preferredSupportLanguage\":\"en-US\"},\"technicalTicketDetails\"\ + :{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-08-12T00:02:23Z\",\"expirationTime\"\ + :\"2023-08-14T20:03:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2308120040000002\",\"title\":\"test chat, please close\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2023-08-12T00:01:00Z\",\"createdDate\":\"2023-08-12T00:02:23Z\",\"modifiedDate\"\ + :\"2023-11-08T19:34:06Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-9e4a4be2-6fcb3b0f-228b-4639-af4f-c744c2ea0656\"\ + ,\"name\":\"58cf91d7-9e4a4be2-6fcb3b0f-228b-4639-af4f-c744c2ea0656\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"This\ + \ support ticket was created specifically to track an Azure chat.\",\"problemClassificationId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/9e4a4be2-eed0-b5d1-c537-a50fa8987bc2\"\ + ,\"problemClassificationDisplayName\":\"Configuration / HTTPS and SSL configuration\"\ + ,\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\":\"\ + \",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\":\"Takle\",\"preferredContactMethod\"\ + :\"Email\",\"primaryEmailAddress\":\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-08-11T23:44:37Z\",\"expirationTime\"\ + :\"2023-08-14T19:45:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2308110040011502\",\"title\":\"test case, please close \",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-08-11T23:44:37Z\",\"modifiedDate\":\"2023-08-11T23:46:10Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/6f16735c-0b726570-09e64322-2f6a-46eb-bcdf-17627c14ce12\"\ + ,\"name\":\"6f16735c-0b726570-09e64322-2f6a-46eb-bcdf-17627c14ce12\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"The\ + \ following questions were not presented during the support request creation.\\\ + n\\nQuestion: What is the error you received?\\nAnswer: \\n\\nQuestion: What\ + \ resources are you trying to migrate?\\nAnswer: \\n\\nQuestion: Are you migrating\ + \ the resource in a VNet?\\nAnswer: \\n\\nQuestion: How did you perform the\ + \ migration?\\nAnswer: \\n\\nQuestion: Description\\nAnswer: \\n\\nQuestion:\ + \ When did the problem start?\\nAnswer:\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/0b726570-b04d-be6e-3fab-0e458a65aa90\"\ + ,\"problemClassificationDisplayName\":\"Migration and Move / Move resources\ + \ between storage accounts\",\"severity\":\"Minimal\",\"require24X7Response\"\ + :false,\"enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"Kenley\"\ + ,\"lastName\":\"Shaw\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\"\ + :\"kenleyshaw@microsoft.com\",\"preferredTimeZone\":\"Eastern Standard Time\"\ + ,\"country\":\"USA\",\"preferredSupportLanguage\":\"en-US\"},\"technicalTicketDetails\"\ + :{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ACTEST/providers/Microsoft.Compute/virtualMachines/ACTEST\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-08-11T20:47:34Z\",\"expirationTime\"\ + :\"2023-08-14T16:48:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2308110040010560\",\"title\":\"test case for demo, please disregard and\ + \ close\",\"serviceId\":\"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396\"\ + ,\"serviceDisplayName\":\"Virtual Machine running Windows\",\"status\":\"\ + Open\",\"createdDate\":\"2023-08-11T20:47:34Z\",\"modifiedDate\":\"2023-08-11T20:48:24Z\"\ + }},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-bedfb285-b6b2cab6-c8de-42ed-a437-1f3e686530c5\"\ + ,\"name\":\"58cf91d7-bedfb285-b6b2cab6-c8de-42ed-a437-1f3e686530c5\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"Testing\ + \ embedded chat\\n\\nProblem start date and time\\nNot sure, use current time\"\ + ,\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/bedfb285-06e6-918c-0851-d180769d7078\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / Buffering\ + \ while streaming\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"\ + enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"Dhruvesh\",\"lastName\"\ + :\"Sheladiya\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\"\ + :\"dsheladiya@microsoft.com\",\"preferredTimeZone\":\"Eastern Standard Time\"\ + ,\"country\":\"USA\",\"preferredSupportLanguage\":\"en-US\"},\"technicalTicketDetails\"\ + :{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-08-11T20:40:22Z\",\"expirationTime\"\ + :\"2023-08-14T16:41:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2308110040010488\",\"title\":\"Testing Embedded chat details tab\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2023-08-11T20:37:00Z\",\"createdDate\":\"2023-08-11T20:40:22Z\",\"modifiedDate\"\ + :\"2023-08-11T20:42:20Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-1a331b09-fbe9086c-684a-4d16-b3fc-ceef984b505d\"\ + ,\"name\":\"58cf91d7-1a331b09-fbe9086c-684a-4d16-b3fc-ceef984b505d\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"test\ + \ case, please close\\n\\nProblem start date and time\\nNot sure, use current\ + \ time\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/1a331b09-358f-637e-27c8-260c770e3ca7\"\ + ,\"problemClassificationDisplayName\":\"Web Application Firewall (WAF) / Mitigate\ + \ false positives\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"\ + enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\"\ + :\"Takle\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"\ + Aditi.Takle@microsoft.com\",\"preferredTimeZone\":\"Pacific Standard Time\"\ + ,\"country\":\"USA\",\"preferredSupportLanguage\":\"en-US\"},\"technicalTicketDetails\"\ + :{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-08-11T20:27:30Z\",\"expirationTime\"\ + :\"2023-08-14T16:28:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2308110040010354\",\"title\":\"test case - popout chat\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2023-08-11T20:23:00Z\",\"createdDate\":\"2023-08-11T20:27:30Z\",\"modifiedDate\"\ + :\"2023-08-11T20:29:14Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-bedfb285-617ecf73-d627-4bfd-9298-5950da2170b7\"\ + ,\"name\":\"58cf91d7-bedfb285-617ecf73-d627-4bfd-9298-5950da2170b7\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"Testing\ + \ Embedded Chat\\n\\nProblem start date and time\\nNot sure, use current time\"\ + ,\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/bedfb285-06e6-918c-0851-d180769d7078\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / Buffering\ + \ while streaming\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"\ + enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"Dhruvesh\",\"lastName\"\ + :\"Sheladiya\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\"\ + :\"dsheladiya@microsoft.com\",\"preferredTimeZone\":\"Eastern Standard Time\"\ + ,\"country\":\"USA\",\"preferredSupportLanguage\":\"en-US\"},\"technicalTicketDetails\"\ + :{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-08-11T19:12:50Z\",\"expirationTime\"\ + :\"2023-08-14T15:13:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2308110040009425\",\"title\":\"Testing Embedded Chat Details tab\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2023-08-11T18:56:00Z\",\"createdDate\":\"2023-08-11T19:12:50Z\",\"modifiedDate\"\ + :\"2023-08-11T19:25:13Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2308010010004241\"\ + ,\"name\":\"2308010010004241\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/0b726570-b04d-be6e-3fab-0e458a65aa90\"\ + ,\"problemClassificationDisplayName\":\"Migration and Move / Move resources\ + \ between storage accounts\",\"severity\":\"Minimal\",\"require24X7Response\"\ + :false,\"enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"Aditi\",\"\ + lastName\":\"Takle\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\"\ + :\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\":\"Pacific Standard Time\"\ + ,\"country\":\"USA\",\"preferredSupportLanguage\":\"en-US\"},\"technicalTicketDetails\"\ + :{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/actest/providers/Microsoft.Compute/virtualMachines/actest\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-08-01T23:43:27Z\",\"expirationTime\"\ + :\"2023-08-02T19:44:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2308010010004241\",\"title\":\"test case 2\",\"serviceId\":\"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396\"\ + ,\"serviceDisplayName\":\"Virtual Machine running Windows\",\"status\":\"\ + Open\",\"createdDate\":\"2023-08-01T23:43:27Z\",\"modifiedDate\":\"2023-08-01T23:44:05Z\"\ + }},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-27a54e37-4b9b79c2-1709-4349-af9b-0068ddc1805a\"\ + ,\"name\":\"58cf91d7-27a54e37-4b9b79c2-1709-4349-af9b-0068ddc1805a\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"test\\\ + n\\nProblem start date and time\\nNot sure, use current time\",\"problemClassificationId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/27a54e37-5930-2bf0-2437-37a3b46343c9\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / CDN\ + \ does not cache content\",\"severity\":\"Minimal\",\"require24X7Response\"\ + :false,\"enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"Aditi\",\"\ + lastName\":\"Takle\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\"\ + :\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\":\"Pacific Standard Time\"\ + ,\"country\":\"USA\",\"preferredSupportLanguage\":\"en-US\"},\"technicalTicketDetails\"\ + :{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-07-28T15:22:55Z\",\"expirationTime\"\ + :\"2023-07-28T23:22:55Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2307280040006673\",\"title\":\"test case, please close\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2023-07-28T15:21:00Z\",\"createdDate\":\"2023-07-28T15:22:55Z\",\"modifiedDate\"\ + :\"2023-07-28T15:24:29Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2307130010003385\"\ + ,\"name\":\"2307130010003385\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/d8ac1fb4-2c36-3b91-dcd0-c3ac2f031667\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / Low-definition\ + \ streaming\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\"\ + :\"\",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\":\"Takle\",\"\ + preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"Aditi.Takle@microsoft.com\"\ + ,\"preferredTimeZone\":\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-07-13T20:49:15Z\",\"expirationTime\"\ + :\"2023-07-14T16:50:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2307130010003385\",\"title\":\"test chat, please close\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-07-13T20:49:15Z\",\"modifiedDate\":\"2023-07-13T20:54:11Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-69575ec1-ad5a79df-d217-40a7-9c9d-b628444ea060\"\ + ,\"name\":\"58cf91d7-69575ec1-ad5a79df-d217-40a7-9c9d-b628444ea060\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"test\\\ + n\\nProblem start date and time\\nNot sure, use current time\",\"problemClassificationId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / CDN\ + \ Analytics\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\"\ + :\"\",\"contactDetails\":{\"firstName\":\"Kiran\",\"lastName\":\"Korey\",\"\ + preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"kirankorey@microsoft.com\"\ + ,\"preferredTimeZone\":\"Eastern Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-07-13T19:47:33Z\",\"expirationTime\"\ + :\"2023-07-14T15:48:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"kirankorey@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2307130040010489\",\"title\":\"test\",\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2023-07-13T19:46:00Z\",\"createdDate\":\"2023-07-13T19:47:33Z\",\"modifiedDate\"\ + :\"2023-07-13T19:48:07Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-69575ec1-1b81d284-e399-4cf6-8865-ebcb01eee059\"\ + ,\"name\":\"58cf91d7-69575ec1-1b81d284-e399-4cf6-8865-ebcb01eee059\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"test\\\ + n\\nProblem start date and time\\nNot sure, use current time\",\"problemClassificationId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / CDN\ + \ Analytics\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\"\ + :\"\",\"contactDetails\":{\"firstName\":\"Kiran\",\"lastName\":\"Korey\",\"\ + preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"kirankorey@microsoft.com\"\ + ,\"preferredTimeZone\":\"Eastern Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-07-13T18:06:59Z\",\"expirationTime\"\ + :\"2023-07-14T14:07:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"kirankorey@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2307130040009093\",\"title\":\"test\",\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2023-07-13T18:05:00Z\",\"createdDate\":\"2023-07-13T18:06:59Z\",\"modifiedDate\"\ + :\"2023-07-13T18:07:37Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-69575ec1-231412e8-94a6-4bc7-a04c-2aeb4251005b\"\ + ,\"name\":\"58cf91d7-69575ec1-231412e8-94a6-4bc7-a04c-2aeb4251005b\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"test\\\ + n\\nProblem start date and time\\nNot sure, use current time\",\"problemClassificationId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / CDN\ + \ Analytics\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\"\ + :\"\",\"contactDetails\":{\"firstName\":\"Kiran\",\"lastName\":\"Korey\",\"\ + preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"kirankorey@microsoft.com\"\ + ,\"preferredTimeZone\":\"Eastern Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-07-10T22:59:48Z\",\"expirationTime\"\ + :\"2023-07-11T19:00:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"kirankorey@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2307100040012634\",\"title\":\"Test\",\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2023-07-10T22:59:00Z\",\"createdDate\":\"2023-07-10T22:59:48Z\",\"modifiedDate\"\ + :\"2023-07-10T23:00:26Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-d416b502-be094450-8bf1-4883-b8b2-25d7add6a058\"\ + ,\"name\":\"58cf91d7-d416b502-be094450-8bf1-4883-b8b2-25d7add6a058\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"test\ + \ case\\n\\nProblem start date and time\\nNot sure, use current time\",\"\ + problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/d416b502-466c-d0de-4e45-120ff7206c98\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / File\ + \ does not update\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"\ + enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\"\ + :\"Takle\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"\ + Aditi.Takle@microsoft.com\",\"preferredTimeZone\":\"Pacific Standard Time\"\ + ,\"country\":\"USA\",\"preferredSupportLanguage\":\"en-US\"},\"technicalTicketDetails\"\ + :{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-07-10T22:58:37Z\",\"expirationTime\"\ + :\"2023-07-11T18:59:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2307100040012628\",\"title\":\"test chat, please close\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2023-07-10T22:57:00Z\",\"createdDate\":\"2023-07-10T22:58:37Z\",\"modifiedDate\"\ + :\"2023-07-10T22:59:31Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2307100040012569\"\ + ,\"name\":\"2307100040012569\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / CDN\ + \ Analytics\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\"\ + :\"\",\"contactDetails\":{\"firstName\":\"Kiran\",\"lastName\":\"Korey\",\"\ + preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"kirankorey@microsoft.com\"\ + ,\"preferredTimeZone\":\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-07-10T22:49:36Z\",\"expirationTime\"\ + :\"2023-07-11T18:50:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"kirankorey@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2307100040012569\",\"title\":\"test\",\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-07-10T22:49:36Z\",\"modifiedDate\":\"2023-07-10T22:50:11Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2307100040012551\"\ + ,\"name\":\"2307100040012551\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / CDN\ + \ Analytics\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\"\ + :\"\",\"contactDetails\":{\"firstName\":\"Kiran\",\"lastName\":\"Korey\",\"\ + preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"kirankorey@microsoft.com\"\ + ,\"preferredTimeZone\":\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-07-10T22:47:08Z\",\"expirationTime\"\ + :\"2023-07-11T18:48:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"kirankorey@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2307100040012551\",\"title\":\"test\",\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-07-10T22:47:08Z\",\"modifiedDate\":\"2023-07-10T22:47:45Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-a9e06c70-f5aafdf9-56b0-4d5d-a865-04c12972f05c\"\ + ,\"name\":\"58cf91d7-a9e06c70-f5aafdf9-56b0-4d5d-a865-04c12972f05c\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"test\ + \ case\\n\\nProblem start date and time\\nNot sure, use current time\",\"\ + problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/a9e06c70-838d-9342-823d-12909d10c3a7\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / Other\"\ + ,\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\":\"\ + \",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\":\"Takle\",\"preferredContactMethod\"\ + :\"Email\",\"primaryEmailAddress\":\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-07-05T18:25:22Z\",\"expirationTime\"\ + :\"2023-07-06T14:26:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2307050010002627\",\"title\":\"test chat, please close 2\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2023-07-05T18:24:00Z\",\"createdDate\":\"2023-07-05T18:25:22Z\",\"modifiedDate\"\ + :\"2023-07-05T18:35:16Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/58cf91d7-bedfb285-37d19dfd-0f43-4b56-94a6-17b4234c005c\"\ + ,\"name\":\"58cf91d7-bedfb285-37d19dfd-0f43-4b56-94a6-17b4234c005c\",\"type\"\ + :\"Microsoft.Support/supportTickets\",\"properties\":{\"description\":\"test\ + \ case\\n\\nProblem start date and time\\nNot sure, use current time\",\"\ + problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/bedfb285-06e6-918c-0851-d180769d7078\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / Buffering\ + \ while streaming\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"\ + enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\"\ + :\"Takle\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"\ + Aditi.Takle@microsoft.com\",\"preferredTimeZone\":\"Pacific Standard Time\"\ + ,\"country\":\"USA\",\"preferredSupportLanguage\":\"en-US\"},\"technicalTicketDetails\"\ + :{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-07-05T18:10:41Z\",\"expirationTime\"\ + :\"2023-07-06T14:11:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2307050010002569\",\"title\":\"test chat please close\",\"serviceId\":\"\ + /providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2023-07-05T18:10:00Z\",\"createdDate\":\"2023-07-05T18:10:41Z\",\"modifiedDate\"\ + :\"2023-07-05T18:11:50Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2307050010002420\"\ + ,\"name\":\"2307050010002420\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/a9e06c70-838d-9342-823d-12909d10c3a7\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / Other\"\ + ,\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\":\"\ + \",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\":\"Takle\",\"preferredContactMethod\"\ + :\"Email\",\"primaryEmailAddress\":\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-07-05T17:30:59Z\",\"expirationTime\"\ + :\"2023-07-06T13:31:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2307050010002420\",\"title\":\"test chat, please close\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-07-05T17:30:59Z\",\"modifiedDate\":\"2023-07-05T17:31:57Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2306270010003334\"\ + ,\"name\":\"2306270010003334\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/787373c2-656c-c872-b509-6f3c97a41379\"\ + ,\"problemClassificationDisplayName\":\"Configuration / Verizon Premium Rules\ + \ Engine\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\"\ + :\"\",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\":\"Takle\",\"\ + preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"Aditi.Takle@microsoft.com\"\ + ,\"preferredTimeZone\":\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-06-27T20:24:30Z\",\"expirationTime\"\ + :\"2023-06-28T16:25:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2306270010003334\",\"title\":\"test case, please close\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-06-27T20:24:30Z\",\"modifiedDate\":\"2023-06-27T20:25:38Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2306010010003890\"\ + ,\"name\":\"2306010010003890\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"test case\\n\\nProblem start date and time\\\ + nNot sure, use current time\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/9e4a4be2-eed0-b5d1-c537-a50fa8987bc2\"\ + ,\"problemClassificationDisplayName\":\"Configuration / HTTPS and SSL configuration\"\ + ,\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\":\"\ + \",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\":\"Takle\",\"preferredContactMethod\"\ + :\"Email\",\"primaryEmailAddress\":\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-06-01T20:16:52Z\",\"expirationTime\"\ + :\"2023-06-02T16:17:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2306010010003890\",\"title\":\"test case embedded chat\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2023-06-01T20:16:00Z\",\"createdDate\":\"2023-06-01T20:16:52Z\",\"modifiedDate\"\ + :\"2023-06-01T20:17:39Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2306010010003852\"\ + ,\"name\":\"2306010010003852\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"Question: Start time of most recent occurrence\\\ + nAnswer: Not sure, use current time\\n\\nQuestion: Is the problem occurring\ + \ right now?\\nAnswer: \\n\\nQuestion: How did you detect high CPU usage?\\\ + nAnswer: \\n\\nQuestion: Select the applications running on your virtual machine\\\ + nAnswer: \\n\\nQuestion: List all processes/applications you have identified\ + \ that cause the high CPU usage.\\nAnswer: test\\n\\nQuestion: Description\\\ + nAnswer: test\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/8b618100-f5cd-7ad5-1c69-72aaf37d801d\"\ + ,\"problemClassificationDisplayName\":\"VM Performance / CPU usage is higher\ + \ than expected\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"\ + enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"Atavur Rahaman\",\"\ + lastName\":\"Mohammad\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\"\ + :\"atmohammad@microsoft.com\",\"preferredTimeZone\":\"Eastern Standard Time\"\ + ,\"country\":\"USA\",\"preferredSupportLanguage\":\"en-US\"},\"technicalTicketDetails\"\ + :{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Sam_Test/providers/Microsoft.Compute/virtualMachines/TemiTest\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-06-01T20:08:10Z\",\"expirationTime\"\ + :\"2023-06-02T16:09:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"atmohammad@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2306010010003852\",\"title\":\"test\",\"serviceId\":\"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396\"\ + ,\"serviceDisplayName\":\"Virtual Machine running Windows\",\"status\":\"\ + Open\",\"problemStartTime\":\"2023-06-01T20:07:00Z\",\"createdDate\":\"2023-06-01T20:08:10Z\"\ + ,\"modifiedDate\":\"2023-06-02T19:21:29Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2305310010004868\"\ + ,\"name\":\"2305310010004868\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"test chat please close\\n\\nProblem start\ + \ date and time\\nNot sure, use current time\",\"problemClassificationId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/9e4a4be2-eed0-b5d1-c537-a50fa8987bc2\"\ + ,\"problemClassificationDisplayName\":\"Configuration / HTTPS and SSL configuration\"\ + ,\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\":\"\ + \",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\":\"Takle\",\"preferredContactMethod\"\ + :\"Email\",\"primaryEmailAddress\":\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-05-31T23:16:04Z\",\"expirationTime\"\ + :\"2023-06-01T19:17:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2305310010004868\",\"title\":\"test case, please close 2\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2023-05-31T23:15:00Z\",\"createdDate\":\"2023-05-31T23:16:04Z\",\"modifiedDate\"\ + :\"2023-06-21T22:21:55Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2305310010004859\"\ + ,\"name\":\"2305310010004859\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"test\\n\\nProblem start date and time\\\ + nNot sure, use current time\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/9e4a4be2-eed0-b5d1-c537-a50fa8987bc2\"\ + ,\"problemClassificationDisplayName\":\"Configuration / HTTPS and SSL configuration\"\ + ,\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\":\"\ + \",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\":\"Takle\",\"preferredContactMethod\"\ + :\"Email\",\"primaryEmailAddress\":\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-05-31T23:11:38Z\",\"expirationTime\"\ + :\"2023-06-01T19:12:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2305310010004859\",\"title\":\"test case, please close\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2023-05-31T23:10:00Z\",\"createdDate\":\"2023-05-31T23:11:38Z\",\"modifiedDate\"\ + :\"2023-05-31T23:12:20Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2305300010004677\"\ + ,\"name\":\"2305300010004677\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"test case please close\\n\\nProblem start\ + \ date and time\\nNot sure, use current time\",\"problemClassificationId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/093c5e98-56a4-1af2-7bc4-d8e2d4e9a48b\"\ + ,\"problemClassificationDisplayName\":\"Configuration / Standard Rules Engine\"\ + ,\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\":\"\ + \",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\":\"Takle\",\"preferredContactMethod\"\ + :\"Email\",\"primaryEmailAddress\":\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-05-30T23:43:57Z\",\"expirationTime\"\ + :\"2023-05-31T19:44:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2305300010004677\",\"title\":\"test case please close 2\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2023-05-30T23:43:00Z\",\"createdDate\":\"2023-05-30T23:43:57Z\",\"modifiedDate\"\ + :\"2023-05-30T23:44:39Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2305180010002555\"\ + ,\"name\":\"2305180010002555\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/1890289e-747c-7ef6-b4f5-b1dbb0bead28/problemClassifications/2a80d71f-a026-8dc4-8ef2-d5d4568a2619\"\ + ,\"problemClassificationDisplayName\":\"Configuration and Management / Backup\ + \ and Restore\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"\ + enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"Kenley\",\"lastName\"\ + :\"Shaw\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"\ + kenleyshaw@microsoft.com\",\"preferredTimeZone\":\"Pacific Standard Time\"\ + ,\"country\":\"USA\",\"preferredSupportLanguage\":\"en-US\"},\"technicalTicketDetails\"\ + :{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azsupportrp-dev-leoclient/providers/Microsoft.Web/sites/azsupportdevleoclient2\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-05-18T16:58:47Z\",\"expirationTime\"\ + :\"2023-05-19T00:58:47Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2305180010002555\",\"title\":\"test chat - web apps\",\"serviceId\":\"\ + /providers/Microsoft.Support/services/1890289e-747c-7ef6-b4f5-b1dbb0bead28\"\ + ,\"serviceDisplayName\":\"Web App (Windows)\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-05-18T16:58:47Z\",\"modifiedDate\":\"2023-05-18T17:00:20Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2305150010003501\"\ + ,\"name\":\"2305150010003501\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"test case, please close\\n\\nProblem start\ + \ date and time\\nNot sure, use current time\",\"problemClassificationId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/093c5e98-56a4-1af2-7bc4-d8e2d4e9a48b\"\ + ,\"problemClassificationDisplayName\":\"Configuration / Standard Rules Engine\"\ + ,\"severity\":\"Critical\",\"require24X7Response\":true,\"enrollmentId\":\"\ + \",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\":\"Takle\",\"preferredContactMethod\"\ + :\"Phone\",\"primaryEmailAddress\":\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-05-15T20:48:04Z\",\"expirationTime\"\ + :\"2023-05-15T22:48:04Z\",\"slaMinutes\":120},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2305150010003501\",\"title\":\"test case, please close\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2023-05-15T20:47:00Z\",\"createdDate\":\"2023-05-15T20:48:04Z\",\"modifiedDate\"\ + :\"2023-05-15T20:48:53Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2304260010001468\"\ + ,\"name\":\"2304260010001468\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"Question: Problem Start Date\\nAnswer:\ + \ Wed, Apr 26, 2023, 12:00 AM (UTC-05:00) Eastern Time (US & Canada)\\n\\\ + nQuestion: Please provide details about your issue\\nAnswer: test\",\"problemClassificationId\"\ + :\"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc/problemClassifications/0c04be9f-8434-be1f-8a08-a6a25a730844\"\ + ,\"problemClassificationDisplayName\":\"Pricing / Help me discover the service\ + \ prices\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\"\ + :\"\",\"contactDetails\":{\"firstName\":\"Jonathan\",\"lastName\":\"Najjar\"\ + ,\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"jnajjar@microsoft.com\"\ + ,\"preferredTimeZone\":\"Eastern Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"serviceLevelAgreement\":{\"startTime\":\"2023-04-26T18:55:31Z\"\ + ,\"expirationTime\":\"2023-04-27T14:56:00Z\",\"slaMinutes\":480},\"supportEngineer\"\ + :{\"emailAddress\":\"grajakumar@microsoft.com\"},\"supportPlanType\":\"Azure\ + \ Internal\",\"supportTicketId\":\"2304260010001468\",\"title\":\"Test Ticket\"\ + ,\"serviceId\":\"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc\"\ + ,\"serviceDisplayName\":\"Billing\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2023-04-26T04:00:00Z\",\"createdDate\":\"2023-04-26T18:55:31Z\",\"modifiedDate\"\ + :\"2023-04-26T23:41:58Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2304240040008413\"\ + ,\"name\":\"2304240040008413\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/9e4a4be2-eed0-b5d1-c537-a50fa8987bc2\"\ + ,\"problemClassificationDisplayName\":\"Configuration / HTTPS and SSL configuration\"\ + ,\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\":\"\ + \",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\":\"Takle\",\"preferredContactMethod\"\ + :\"Email\",\"primaryEmailAddress\":\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-04-24T18:16:33Z\",\"expirationTime\"\ + :\"2023-04-25T14:17:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2304240040008413\",\"title\":\"test case, please close\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-04-24T18:16:33Z\",\"modifiedDate\":\"2023-04-24T18:17:11Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2304200010000045\"\ + ,\"name\":\"2304200010000045\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"\",\"problemClassificationDisplayName\"\ + :\"\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\"\ + :\"\",\"contactDetails\":{\"firstName\":\"Abhinab\",\"lastName\":\"Mohanty\"\ + ,\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"amohanty@microsoft.com\"\ + ,\"preferredTimeZone\":\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"serviceLevelAgreement\":{\"startTime\":\"2023-04-20T00:49:53Z\"\ + ,\"expirationTime\":\"2023-04-20T20:50:00Z\",\"slaMinutes\":480},\"supportEngineer\"\ + :{\"emailAddress\":\"dmanikonda@microsoft.com\"},\"supportPlanType\":\"Azure\ + \ Internal\",\"supportTicketId\":\"2304200010000045\",\"title\":\"Testing\ + \ agent end\",\"serviceId\":\"\",\"serviceDisplayName\":\"\",\"status\":\"\ + Open\",\"createdDate\":\"2023-04-20T00:49:53Z\",\"modifiedDate\":\"2023-06-25T18:07:53Z\"\ + }},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2304190040010229\"\ + ,\"name\":\"2304190040010229\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/89ec5842-bafe-1923-90b2-0c0ca89ed6e2\"\ + ,\"problemClassificationDisplayName\":\"Management Portal / CDN option is\ + \ not available in portal\",\"severity\":\"Minimal\",\"require24X7Response\"\ + :false,\"enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"Abhinab\"\ + ,\"lastName\":\"Mohanty\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\"\ + :\"amohanty@microsoft.com\",\"preferredTimeZone\":\"Pacific Standard Time\"\ + ,\"country\":\"USA\",\"preferredSupportLanguage\":\"en-US\"},\"serviceLevelAgreement\"\ + :{\"startTime\":\"2023-04-19T17:27:04Z\",\"expirationTime\":\"2023-04-20T13:28:00Z\"\ + ,\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\":\"amohanty@microsoft.com\"\ + },\"supportPlanType\":\"Azure Internal\",\"supportTicketId\":\"2304190040010229\"\ + ,\"title\":\"Testing Post Survey\",\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-04-19T17:27:04Z\",\"modifiedDate\":\"2023-04-19T17:27:36Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2304190040000158\"\ + ,\"name\":\"2304190040000158\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/89ec5842-bafe-1923-90b2-0c0ca89ed6e2\"\ + ,\"problemClassificationDisplayName\":\"Management Portal / CDN option is\ + \ not available in portal\",\"severity\":\"Minimal\",\"require24X7Response\"\ + :false,\"enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"Abhinab\"\ + ,\"lastName\":\"Mohanty\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\"\ + :\"amohanty@microsoft.com\",\"preferredTimeZone\":\"Pacific Standard Time\"\ + ,\"country\":\"USA\",\"preferredSupportLanguage\":\"en-US\"},\"serviceLevelAgreement\"\ + :{\"startTime\":\"2023-04-19T00:30:24Z\",\"expirationTime\":\"2023-04-19T20:31:00Z\"\ + ,\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\":\"amohanty@microsoft.com\"\ + },\"supportPlanType\":\"Azure Internal\",\"supportTicketId\":\"2304190040000158\"\ + ,\"title\":\"Test chat\",\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-04-19T00:30:24Z\",\"modifiedDate\":\"2023-04-19T00:31:29Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2304180040013335\"\ + ,\"name\":\"2304180040013335\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"test\\n\\nProblem start date and time\\\ + nTue, Apr 18, 2023, 12:00 AM (UTC-08:00) Pacific Time (US & Canada)\",\"problemClassificationId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/89ec5842-bafe-1923-90b2-0c0ca89ed6e2\"\ + ,\"problemClassificationDisplayName\":\"Management Portal / CDN option is\ + \ not available in portal\",\"severity\":\"Minimal\",\"require24X7Response\"\ + :false,\"enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"Dasarsh\"\ + ,\"lastName\":\"Manikonda\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\"\ + :\"dmanikonda@microsoft.com\",\"phoneNumber\":\"1111111111\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"BGD\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"serviceLevelAgreement\":{\"startTime\":\"2023-04-18T22:18:20Z\"\ + ,\"expirationTime\":\"2023-04-19T11:00:00Z\",\"slaMinutes\":480},\"supportEngineer\"\ + :{\"emailAddress\":\"amohanty@microsoft.com\"},\"supportPlanType\":\"Azure\ + \ Internal\",\"supportTicketId\":\"2304180040013335\",\"title\":\"test\",\"\ + serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2023-04-18T07:00:00Z\",\"createdDate\":\"2023-04-18T22:18:20Z\",\"modifiedDate\"\ + :\"2023-04-18T23:31:26Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2304180040013323\"\ + ,\"name\":\"2304180040013323\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/89ec5842-bafe-1923-90b2-0c0ca89ed6e2\"\ + ,\"problemClassificationDisplayName\":\"Management Portal / CDN option is\ + \ not available in portal\",\"severity\":\"Minimal\",\"require24X7Response\"\ + :false,\"enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"Abhinab\"\ + ,\"lastName\":\"Mohanty\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\"\ + :\"amohanty@microsoft.com\",\"preferredTimeZone\":\"Pacific Standard Time\"\ + ,\"country\":\"USA\",\"preferredSupportLanguage\":\"en-US\"},\"serviceLevelAgreement\"\ + :{\"startTime\":\"2023-04-18T22:16:34Z\",\"expirationTime\":\"2023-04-19T18:17:00Z\"\ + ,\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\":\"amohanty@microsoft.com\"\ + },\"supportPlanType\":\"Azure Internal\",\"supportTicketId\":\"2304180040013323\"\ + ,\"title\":\"Testing PostChat\",\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-04-18T22:16:34Z\",\"modifiedDate\":\"2023-04-18T22:17:07Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2304130040010013\"\ + ,\"name\":\"2304130040010013\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/1890289e-747c-7ef6-b4f5-b1dbb0bead28/problemClassifications/8d321911-7a78-2cc7-5ff3-a8f78480bb21\"\ + ,\"problemClassificationDisplayName\":\"Availability, Performance, and Application\ + \ Issues / Web app slow\",\"severity\":\"Minimal\",\"require24X7Response\"\ + :false,\"enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"Aditi\",\"\ + lastName\":\"Takle\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\"\ + :\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\":\"Pacific Standard Time\"\ + ,\"country\":\"USA\",\"preferredSupportLanguage\":\"en-US\"},\"technicalTicketDetails\"\ + :{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acisextensionsresourcegroup/providers/Microsoft.Web/sites/testcloudservice\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-04-13T22:43:21Z\",\"expirationTime\"\ + :\"2023-04-14T18:44:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2304130040010013\",\"title\":\"test case, please close 3\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/1890289e-747c-7ef6-b4f5-b1dbb0bead28\"\ + ,\"serviceDisplayName\":\"Web App (Windows)\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-04-13T22:43:21Z\",\"modifiedDate\":\"2023-04-13T22:44:07Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2304130040009503\"\ + ,\"name\":\"2304130040009503\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/9e4a4be2-eed0-b5d1-c537-a50fa8987bc2\"\ + ,\"problemClassificationDisplayName\":\"Configuration / HTTPS and SSL configuration\"\ + ,\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\":\"\ + \",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\":\"Takle\",\"preferredContactMethod\"\ + :\"Email\",\"primaryEmailAddress\":\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-04-13T21:13:36Z\",\"expirationTime\"\ + :\"2023-04-14T17:14:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2304130040009503\",\"title\":\"test case, please close 2\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-04-13T21:13:36Z\",\"modifiedDate\":\"2023-04-13T21:14:17Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2304130010002752\"\ + ,\"name\":\"2304130010002752\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"test case\\n\\nProblem start date and time\\\ + nNot sure, use current time\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/27704313-0bc4-85b0-1843-f8cb99ce066b\"\ + ,\"problemClassificationDisplayName\":\"Migrating Front Door Classic to Front\ + \ Door Standard or Premium\",\"severity\":\"Minimal\",\"require24X7Response\"\ + :false,\"enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"Aditi\",\"\ + lastName\":\"Takle\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\"\ + :\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\":\"Eastern Standard Time\"\ + ,\"country\":\"USA\",\"preferredSupportLanguage\":\"en-US\"},\"technicalTicketDetails\"\ + :{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-04-13T21:11:00Z\",\"expirationTime\"\ + :\"2023-04-14T17:11:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2304130010002752\",\"title\":\"test case, please close \",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2023-04-13T21:09:00Z\",\"createdDate\":\"2023-04-13T21:11:00Z\",\"modifiedDate\"\ + :\"2023-04-13T21:17:13Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2304120040007353\"\ + ,\"name\":\"2304120040007353\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/1890289e-747c-7ef6-b4f5-b1dbb0bead28/problemClassifications/8d321911-7a78-2cc7-5ff3-a8f78480bb21\"\ + ,\"problemClassificationDisplayName\":\"Availability, Performance, and Application\ + \ Issues / Web app slow\",\"severity\":\"Minimal\",\"require24X7Response\"\ + :false,\"enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"Aditi\",\"\ + lastName\":\"Takle\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\"\ + :\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\":\"Pacific Standard Time\"\ + ,\"country\":\"USA\",\"preferredSupportLanguage\":\"en-US\"},\"technicalTicketDetails\"\ + :{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azsupportrp-dev-leoclient/providers/Microsoft.Web/sites/azsupportdevleoclient2\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-04-12T16:50:01Z\",\"expirationTime\"\ + :\"2023-04-13T00:50:01Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2304120040007353\",\"title\":\"test case, please close\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/1890289e-747c-7ef6-b4f5-b1dbb0bead28\"\ + ,\"serviceDisplayName\":\"Web App (Windows)\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-04-12T16:50:01Z\",\"modifiedDate\":\"2023-05-01T17:15:33Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2304100040005917\"\ + ,\"name\":\"2304100040005917\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/093c5e98-56a4-1af2-7bc4-d8e2d4e9a48b\"\ + ,\"problemClassificationDisplayName\":\"Configuration / Standard Rules Engine\"\ + ,\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\":\"\ + \",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\":\"Takle\",\"preferredContactMethod\"\ + :\"Email\",\"primaryEmailAddress\":\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-04-10T18:01:57Z\",\"expirationTime\"\ + :\"2023-04-11T14:02:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2304100040005917\",\"title\":\"test case, please close\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-04-10T18:01:57Z\",\"modifiedDate\":\"2023-04-10T18:02:35Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2303150010003853\"\ + ,\"name\":\"2303150010003853\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/6f8f3814-1ef8-8bc2-f944-7f3c65978dc7\"\ + ,\"problemClassificationDisplayName\":\"Configuration / Custom domain name\ + \ (CName)\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\"\ + :\"\",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\":\"Takle\",\"\ + preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"Aditi.Takle@microsoft.com\"\ + ,\"preferredTimeZone\":\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-03-15T23:49:38Z\",\"expirationTime\"\ + :\"2023-03-16T19:50:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2303150010003853\",\"title\":\"test case please close 2\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-03-15T23:49:38Z\",\"modifiedDate\":\"2023-03-15T23:49:58Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2303150010003849\"\ + ,\"name\":\"2303150010003849\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"test case\\n\\nProblem start date and time\\\ + nNot sure, use current time\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/093c5e98-56a4-1af2-7bc4-d8e2d4e9a48b\"\ + ,\"problemClassificationDisplayName\":\"Configuration / Standard Rules Engine\"\ + ,\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\":\"\ + \",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\":\"Takle\",\"preferredContactMethod\"\ + :\"Email\",\"primaryEmailAddress\":\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-03-15T23:46:12Z\",\"expirationTime\"\ + :\"2023-03-16T19:47:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2303150010003849\",\"title\":\"test case\",\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2023-03-15T23:46:00Z\",\"createdDate\":\"2023-03-15T23:46:12Z\",\"modifiedDate\"\ + :\"2023-03-15T23:46:47Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2303030010002940\"\ + ,\"name\":\"2303030010002940\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/89ec5842-bafe-1923-90b2-0c0ca89ed6e2\"\ + ,\"problemClassificationDisplayName\":\"Management Portal / CDN option is\ + \ not available in portal\",\"severity\":\"Minimal\",\"require24X7Response\"\ + :false,\"enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"Abhinab\"\ + ,\"lastName\":\"Mohanty\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\"\ + :\"amohanty@microsoft.com\",\"preferredTimeZone\":\"Pacific Standard Time\"\ + ,\"country\":\"USA\",\"preferredSupportLanguage\":\"en-US\"},\"serviceLevelAgreement\"\ + :{\"startTime\":\"2023-03-03T18:53:41Z\",\"expirationTime\":\"2023-03-06T14:54:00Z\"\ + ,\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\":\"amohanty@microsoft.com\"\ + },\"supportPlanType\":\"Azure Internal\",\"supportTicketId\":\"2303030010002940\"\ + ,\"title\":\"Testing PostChat Load Survey Prod\",\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-03-03T18:53:41Z\",\"modifiedDate\":\"2023-03-03T18:56:18Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2303030010002647\"\ + ,\"name\":\"2303030010002647\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/89ec5842-bafe-1923-90b2-0c0ca89ed6e2\"\ + ,\"problemClassificationDisplayName\":\"Management Portal / CDN option is\ + \ not available in portal\",\"severity\":\"Minimal\",\"require24X7Response\"\ + :false,\"enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"Abhinab\"\ + ,\"lastName\":\"Mohanty\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\"\ + :\"amohanty@microsoft.com\",\"preferredTimeZone\":\"Pacific Standard Time\"\ + ,\"country\":\"USA\",\"preferredSupportLanguage\":\"en-US\"},\"serviceLevelAgreement\"\ + :{\"startTime\":\"2023-03-03T17:21:26Z\",\"expirationTime\":\"2023-03-04T01:21:26Z\"\ + ,\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\":\"amohanty@microsoft.com\"\ + },\"supportPlanType\":\"Azure Internal\",\"supportTicketId\":\"2303030010002647\"\ + ,\"title\":\"Testing Postchat again\",\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-03-03T17:21:26Z\",\"modifiedDate\":\"2023-03-03T17:22:29Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2303020010003696\"\ + ,\"name\":\"2303020010003696\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/9e4a4be2-eed0-b5d1-c537-a50fa8987bc2\"\ + ,\"problemClassificationDisplayName\":\"Configuration / HTTPS and SSL configuration\"\ + ,\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\":\"\ + \",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\":\"Takle\",\"preferredContactMethod\"\ + :\"Email\",\"primaryEmailAddress\":\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-03-02T20:40:36Z\",\"expirationTime\"\ + :\"2023-03-03T16:41:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2303020010003696\",\"title\":\"test case, please close\",\"serviceId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-03-02T20:40:36Z\",\"modifiedDate\":\"2023-03-02T20:41:36Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2303020010003682\"\ + ,\"name\":\"2303020010003682\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"test\\n\\nProblem start date and time\\\ + nNot sure, use current time\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/093c5e98-56a4-1af2-7bc4-d8e2d4e9a48b\"\ + ,\"problemClassificationDisplayName\":\"Configuration / Standard Rules Engine\"\ + ,\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\":\"\ + \",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\":\"Takle\",\"preferredContactMethod\"\ + :\"Email\",\"primaryEmailAddress\":\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-03-02T20:36:34Z\",\"expirationTime\"\ + :\"2023-03-03T16:37:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2303020010003682\",\"title\":\"test case\",\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2023-03-02T20:36:00Z\",\"createdDate\":\"2023-03-02T20:36:34Z\",\"modifiedDate\"\ + :\"2023-03-06T20:58:03Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2303020040007406\"\ + ,\"name\":\"2303020040007406\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / CDN\ + \ Analytics\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\"\ + :\"\",\"contactDetails\":{\"firstName\":\"Kenley\",\"lastName\":\"Shaw\",\"\ + preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"kenleyshaw@microsoft.com\"\ + ,\"preferredTimeZone\":\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/df-SupportRP/providers/microsoft.cdn/profiles/SupportExtensionCdnTest/endpoints/supportextensioncdn\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-03-02T18:50:56Z\",\"expirationTime\"\ + :\"2023-03-03T14:51:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"kenleyshaw@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2303020040007406\",\"title\":\"test\",\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-03-02T18:50:56Z\",\"modifiedDate\":\"2023-03-02T18:53:14Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2303010040008991\"\ + ,\"name\":\"2303010040008991\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / CDN\ + \ Analytics\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\"\ + :\"\",\"contactDetails\":{\"firstName\":\"test\",\"lastName\":\"Shaw\",\"\ + preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"kenleyshaw@microsoft.com\"\ + ,\"preferredTimeZone\":\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/df-SupportRP/providers/microsoft.cdn/profiles/SupportExtensionCdnTest\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-03-01T21:52:31Z\",\"expirationTime\"\ + :\"2023-03-02T17:53:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"kenleyshaw@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2303010040008991\",\"title\":\"test\",\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-03-01T21:52:31Z\",\"modifiedDate\":\"2023-05-17T20:16:44Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2302240040008057\"\ + ,\"name\":\"2302240040008057\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/973d44f9-d532-be2e-4772-db84cb0ec00a\"\ + ,\"problemClassificationDisplayName\":\"Other\",\"severity\":\"Minimal\",\"\ + require24X7Response\":false,\"enrollmentId\":\"\",\"contactDetails\":{\"firstName\"\ + :\"James\",\"lastName\":\"Shaw\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\"\ + :\"jamesshaw@microsoft.com\",\"preferredTimeZone\":\"Pacific Standard Time\"\ + ,\"country\":\"USA\",\"preferredSupportLanguage\":\"en-US\"},\"serviceLevelAgreement\"\ + :{\"startTime\":\"2023-02-24T22:34:37Z\",\"expirationTime\":\"2023-02-27T18:35:00Z\"\ + ,\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\":\"adtakle@microsoft.com\"\ + },\"supportPlanType\":\"Azure Internal\",\"supportTicketId\":\"2302240040008057\"\ + ,\"title\":\"test -- jamesshaw\",\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-02-24T22:34:37Z\",\"modifiedDate\":\"2023-02-24T23:31:11Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2302230010002615\"\ + ,\"name\":\"2302230010002615\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/9e4a4be2-eed0-b5d1-c537-a50fa8987bc2\"\ + ,\"problemClassificationDisplayName\":\"Configuration / HTTPS and SSL configuration\"\ + ,\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\":\"\ + \",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\":\"Takle\",\"preferredContactMethod\"\ + :\"Email\",\"primaryEmailAddress\":\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-02-23T21:30:48Z\",\"expirationTime\"\ + :\"2023-02-24T17:31:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2302230010002615\",\"title\":\"test case\",\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-02-23T21:30:48Z\",\"modifiedDate\":\"2023-02-24T22:25:05Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2302140010002625\"\ + ,\"name\":\"2302140010002625\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"testcase\\n\\nProblem start date and time\\\ + nNot sure, use current time\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/9e4a4be2-eed0-b5d1-c537-a50fa8987bc2\"\ + ,\"problemClassificationDisplayName\":\"Configuration / HTTPS and SSL configuration\"\ + ,\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\":\"\ + \",\"contactDetails\":{\"firstName\":\"Aditi\",\"lastName\":\"Takle\",\"preferredContactMethod\"\ + :\"Email\",\"primaryEmailAddress\":\"Aditi.Takle@microsoft.com\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-02-14T21:50:15Z\",\"expirationTime\"\ + :\"2023-02-15T17:51:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"adtakle@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2302140010002625\",\"title\":\"test case\",\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2023-02-14T21:49:00Z\",\"createdDate\":\"2023-02-14T21:50:15Z\",\"modifiedDate\"\ + :\"2023-02-14T21:50:47Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2302070040006934\"\ + ,\"name\":\"2302070040006934\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / CDN\ + \ Analytics\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\"\ + :\"\",\"contactDetails\":{\"firstName\":\"Kenley\",\"lastName\":\"Shaw\",\"\ + preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"kenleyshaw@microsoft.com\"\ + ,\"preferredTimeZone\":\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/df-SupportRP/providers/microsoft.cdn/profiles/SupportExtensionCdnTest/endpoints/supportextensioncdn\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-02-07T16:06:57Z\",\"expirationTime\"\ + :\"2023-02-08T00:06:57Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"kenleyshaw@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2302070040006934\",\"title\":\"test case please close\",\"serviceId\":\"\ + /providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-02-07T16:06:57Z\",\"modifiedDate\":\"2023-02-07T16:07:18Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2302060010002086\"\ + ,\"name\":\"2302060010002086\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / CDN\ + \ Analytics\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\"\ + :\"\",\"contactDetails\":{\"firstName\":\"Kenley\",\"lastName\":\"Shaw\",\"\ + preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"kenleyshaw@microsoft.com\"\ + ,\"preferredTimeZone\":\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/livechat-lcw-cdn/providers/microsoft.cdn/profiles/LivechatwidgetCdn\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-02-06T19:22:52Z\",\"expirationTime\"\ + :\"2023-02-07T15:23:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"kenleyshaw@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2302060010002086\",\"title\":\"test case please close\",\"serviceId\":\"\ + /providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-02-06T19:22:52Z\",\"modifiedDate\":\"2023-02-06T19:23:18Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test02032023_1\"\ + ,\"name\":\"test02032023_1\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"test\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25\"\ + ,\"problemClassificationDisplayName\":\"Test Support Topic 1\",\"severity\"\ + :\"Minimal\",\"require24X7Response\":false,\"enrollmentId\":\"\",\"contactDetails\"\ + :{\"firstName\":\"bhavin\",\"lastName\":\"shah\",\"preferredContactMethod\"\ + :\"Email\",\"primaryEmailAddress\":\"bhshah@microsoft.com\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"serviceLevelAgreement\":{\"startTime\":\"2023-02-03T20:55:11Z\"\ + ,\"expirationTime\":\"2023-02-06T16:56:00Z\",\"slaMinutes\":480},\"supportEngineer\"\ + :{},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\":\"2302030040007475\"\ + ,\"title\":\"test\",\"serviceId\":\"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201\"\ + ,\"serviceDisplayName\":\"Test Product Case Submission - Preview\",\"status\"\ + :\"Open\",\"createdDate\":\"2023-02-03T20:55:11Z\",\"modifiedDate\":\"2023-02-03T20:55:19Z\"\ + }},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test02032023\"\ + ,\"name\":\"test02032023\",\"type\":\"Microsoft.Support/supportTickets\",\"\ + properties\":{\"description\":\"test\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201/problemClassifications/03014459-4572-f8f0-32b0-88833f234f25\"\ + ,\"problemClassificationDisplayName\":\"Test Support Topic 1\",\"severity\"\ + :\"Minimal\",\"require24X7Response\":false,\"enrollmentId\":\"\",\"contactDetails\"\ + :{\"firstName\":\"bhavin\",\"lastName\":\"shah\",\"preferredContactMethod\"\ + :\"Email\",\"primaryEmailAddress\":\"bhshah@microsoft.com\",\"preferredTimeZone\"\ + :\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"serviceLevelAgreement\":{\"startTime\":\"2023-02-03T17:45:55Z\"\ + ,\"expirationTime\":\"2023-02-04T01:45:55Z\",\"slaMinutes\":480},\"supportEngineer\"\ + :{},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\":\"2302030040006259\"\ + ,\"title\":\"test\",\"serviceId\":\"/providers/Microsoft.Support/services/376afb21-6bd3-91aa-fd58-39fd84d8c201\"\ + ,\"serviceDisplayName\":\"Test Product Case Submission - Preview\",\"status\"\ + :\"Open\",\"createdDate\":\"2023-02-03T17:45:55Z\",\"modifiedDate\":\"2023-02-03T19:04:05Z\"\ + }},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2302030010000083\"\ + ,\"name\":\"2302030010000083\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"Test chat\\n\\nProblem start date and time\\\ + nThu, Feb 2, 2023, 12:00 AM (UTC-08:00) Pacific Time (US & Canada)\",\"problemClassificationId\"\ + :\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/3405127b-23f1-f9ff-e29c-8bfd260411f8\"\ + ,\"problemClassificationDisplayName\":\"Management Portal / Error message\ + \ from portal\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"\ + enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"austin.prince@microsoft.com\"\ + ,\"lastName\":\"Price\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\"\ + :\"austin.prince@microsoft.com\",\"preferredTimeZone\":\"Pacific Standard\ + \ Time\",\"country\":\"AUT\",\"preferredSupportLanguage\":\"en-US\"},\"serviceLevelAgreement\"\ + :{\"startTime\":\"2023-02-03T00:41:42Z\",\"expirationTime\":\"2023-02-03T15:00:00Z\"\ + ,\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\":\"auprince@microsoft.com\"\ + },\"supportPlanType\":\"Azure Internal\",\"supportTicketId\":\"2302030010000083\"\ + ,\"title\":\"Test Case\",\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"problemStartTime\"\ + :\"2023-02-02T08:00:00Z\",\"createdDate\":\"2023-02-03T00:41:42Z\",\"modifiedDate\"\ + :\"2023-02-03T01:05:16Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2302010040007811\"\ + ,\"name\":\"2302010040007811\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/bedfb285-06e6-918c-0851-d180769d7078\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / Buffering\ + \ while streaming\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"\ + enrollmentId\":\"\",\"contactDetails\":{\"firstName\":\"Dhruvesh\",\"lastName\"\ + :\"Sheladiya\",\"preferredContactMethod\":\"Email\",\"primaryEmailAddress\"\ + :\"dsheladiya@microsoft.com\",\"preferredTimeZone\":\"Pacific Standard Time\"\ + ,\"country\":\"USA\",\"preferredSupportLanguage\":\"en-US\"},\"technicalTicketDetails\"\ + :{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-02-01T20:20:14Z\",\"expirationTime\"\ + :\"2023-02-02T16:21:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"dsheladiya@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2302010040007811\",\"title\":\"Testing chat\",\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-02-01T20:20:14Z\",\"modifiedDate\":\"2023-02-01T20:20:43Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2301310040010237\"\ + ,\"name\":\"2301310040010237\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / CDN\ + \ Analytics\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\"\ + :\"\",\"contactDetails\":{\"firstName\":\"Kenley\",\"lastName\":\"Shaw\",\"\ + preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"kenleyshaw@microsoft.com\"\ + ,\"preferredTimeZone\":\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/df-SupportRP/providers/microsoft.cdn/profiles/SupportExtensionCdnTest/endpoints/supportextensioncdn\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-01-31T23:54:40Z\",\"expirationTime\"\ + :\"2023-02-01T19:55:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"kenleyshaw@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2301310040010237\",\"title\":\"test case pls close\",\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-01-31T23:54:40Z\",\"modifiedDate\":\"2023-08-07T16:12:37Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2301310040009684\"\ + ,\"name\":\"2301310040009684\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / CDN\ + \ Analytics\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\"\ + :\"\",\"contactDetails\":{\"firstName\":\"Kenley\",\"lastName\":\"Shaw\",\"\ + preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"kenleyshaw@microsoft.com\"\ + ,\"preferredTimeZone\":\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/df-SupportRP/providers/microsoft.cdn/profiles/SupportExtensionCdnTest/endpoints/supportextensioncdn\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-01-31T21:59:28Z\",\"expirationTime\"\ + :\"2023-02-01T18:00:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"kenleyshaw@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2301310040009684\",\"title\":\"test case please close\",\"serviceId\":\"\ + /providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-01-31T21:59:28Z\",\"modifiedDate\":\"2024-01-03T07:06:21Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2301300040009577\"\ + ,\"name\":\"2301300040009577\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / CDN\ + \ Analytics\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\"\ + :\"\",\"contactDetails\":{\"firstName\":\"Kenley\",\"lastName\":\"Shaw\",\"\ + preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"kenleyshaw@microsoft.com\"\ + ,\"preferredTimeZone\":\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/df-SupportRP/providers/microsoft.cdn/profiles/SupportExtensionCdnTest/endpoints/supportextensioncdn\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-01-30T23:40:20Z\",\"expirationTime\"\ + :\"2023-01-31T19:41:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"kenleyshaw@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2301300040009577\",\"title\":\"test case please close\",\"serviceId\":\"\ + /providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-01-30T23:40:20Z\",\"modifiedDate\":\"2023-01-30T23:40:40Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2301300040009429\"\ + ,\"name\":\"2301300040009429\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / CDN\ + \ Analytics\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\"\ + :\"\",\"contactDetails\":{\"firstName\":\"Kenley\",\"lastName\":\"Shaw\",\"\ + preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"kenleyshaw@microsoft.com\"\ + ,\"preferredTimeZone\":\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/df-SupportRP/providers/microsoft.cdn/profiles/SupportExtensionCdnTest/endpoints/supportextensioncdn\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-01-30T23:05:36Z\",\"expirationTime\"\ + :\"2023-01-31T19:06:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"kenleyshaw@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2301300040009429\",\"title\":\"test case please close\",\"serviceId\":\"\ + /providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-01-30T23:05:36Z\",\"modifiedDate\":\"2023-01-30T23:05:55Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2301300040009350\"\ + ,\"name\":\"2301300040009350\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / CDN\ + \ Analytics\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\"\ + :\"\",\"contactDetails\":{\"firstName\":\"Kenley\",\"lastName\":\"Shaw\",\"\ + preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"kenleyshaw@microsoft.com\"\ + ,\"preferredTimeZone\":\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/df-SupportRP/providers/microsoft.cdn/profiles/SupportExtensionCdnTest/endpoints/supportextensioncdn\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-01-30T22:46:14Z\",\"expirationTime\"\ + :\"2023-01-31T18:47:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"kenleyshaw@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2301300040009350\",\"title\":\"test case please close\",\"serviceId\":\"\ + /providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-01-30T22:46:14Z\",\"modifiedDate\":\"2023-01-30T22:56:11Z\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2301300040009206\"\ + ,\"name\":\"2301300040009206\",\"type\":\"Microsoft.Support/supportTickets\"\ + ,\"properties\":{\"description\":\"This support ticket was created specifically\ + \ to track an Azure chat\",\"problemClassificationId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85\"\ + ,\"problemClassificationDisplayName\":\"Availability and Performance / CDN\ + \ Analytics\",\"severity\":\"Minimal\",\"require24X7Response\":false,\"enrollmentId\"\ + :\"\",\"contactDetails\":{\"firstName\":\"Kenley\",\"lastName\":\"Shaw\",\"\ + preferredContactMethod\":\"Email\",\"primaryEmailAddress\":\"kenleyshaw@microsoft.com\"\ + ,\"preferredTimeZone\":\"Pacific Standard Time\",\"country\":\"USA\",\"preferredSupportLanguage\"\ + :\"en-US\"},\"technicalTicketDetails\":{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/df-SupportRP/providers/microsoft.cdn/profiles/SupportExtensionCdnTest/endpoints/supportextensioncdn\"\ + },\"serviceLevelAgreement\":{\"startTime\":\"2023-01-30T22:19:52Z\",\"expirationTime\"\ + :\"2023-01-31T18:20:00Z\",\"slaMinutes\":480},\"supportEngineer\":{\"emailAddress\"\ + :\"kenleyshaw@microsoft.com\"},\"supportPlanType\":\"Azure Internal\",\"supportTicketId\"\ + :\"2301300040009206\",\"title\":\"test case\",\"serviceId\":\"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\"\ + ,\"serviceDisplayName\":\"Azure CDN\",\"status\":\"Open\",\"createdDate\"\ + :\"2023-01-30T22:19:52Z\",\"modifiedDate\":\"2023-01-30T22:20:11Z\"}}],\"\ + nextLink\":\"https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1D1CD673394%2522%252C%2522max%2522%253A%252205C1D399CD6730%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222023-01-30T22%253A19%253A52Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8BT0EAAADAAQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222023-01-30T23%253A05%253A36Z%255C%2522%2520OR%2520NOT%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D\"\ + }" + headers: + cache-control: + - no-cache + content-length: + - '152757' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 25 Mar 2024 06:32:14 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: FB7EF8E6ADE147D6859F47D26D86C38D Ref B: CO6AA3150220025 Ref C: 2024-03-25T06:32:11Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - support tickets list + Connection: + - keep-alive + ParameterSetName: + - --filters + User-Agent: + - AZURECLI/2.56.0 azsdk-python-mgmt-support/6.0.0 Python/3.11.8 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets?$top=100&$filter=status+eq+%27Open%27&api-version=2020-04-01&$skipToken=%255B%257B%2522compositeToken%2522%253A%257B%2522token%2522%253Anull%252C%2522range%2522%253A%257B%2522min%2522%253A%252205C1D1CD673394%2522%252C%2522max%2522%253A%252205C1D399CD6730%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222023-01-30T22%253A19%253A52Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8BT0EAAADAAQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222023-01-30T23%253A05%253A36Z%255C%2522%2520OR%2520NOT%2520IS_DEFINED%2528c.CreatedOn%2529%2520OR%2520IS_NULL%2528c.CreatedOn%2529%2520OR%2520IS_BOOLEAN%2528c.CreatedOn%2529%2520OR%2520IS_NUMBER%2528c.CreatedOn%2529%2520%2529%2522%257D%255D + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2301300040009155","name":"2301300040009155","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85","problemClassificationDisplayName":"Availability + and Performance / CDN Analytics","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Kenley","lastName":"Shaw","preferredContactMethod":"Email","primaryEmailAddress":"kenleyshaw@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/df-SupportRP/providers/microsoft.cdn/profiles/SupportExtensionCdnTest/endpoints/supportextensioncdn"},"serviceLevelAgreement":{"startTime":"2023-01-30T22:10:34Z","expirationTime":"2023-01-31T18:11:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"kenleyshaw@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2301300040009155","title":"test case please close","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2023-01-30T22:10:34Z","modifiedDate":"2023-01-30T22:11:02Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2301260040006575","name":"2301260040006575","type":"Microsoft.Support/supportTickets","properties":{"description":"test + case 3\n\nProblem start date and time\nNot sure, use current time","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/74c3d62a-410c-7691-a07b-cbcbd191dbac","problemClassificationDisplayName":"Web + Application Firewall (WAF) / Analyze allowed or blocked traffic","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Aditi","lastName":"Takle","preferredContactMethod":"Email","primaryEmailAddress":"Aditi.Takle@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2023-01-26T20:25:52Z","expirationTime":"2023-01-27T16:26:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"sakjai@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2301260040006575","title":"test case 3","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","problemStartTime":"2023-01-26T20:25:00Z","createdDate":"2023-01-26T20:25:52Z","modifiedDate":"2023-01-26T20:27:22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2301260040006550","name":"2301260040006550","type":"Microsoft.Support/supportTickets","properties":{"description":"test + case 2\n\nProblem start date and time\nNot sure, use current time","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/27704313-0bc4-85b0-1843-f8cb99ce066b","problemClassificationDisplayName":"Migrating + Front Door Classic to Front Door Standard or Premium","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Aditi","lastName":"Takle","preferredContactMethod":"Email","primaryEmailAddress":"Aditi.Takle@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2023-01-26T20:23:35Z","expirationTime":"2023-01-27T16:24:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"sakjai@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2301260040006550","title":"test case 2","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","problemStartTime":"2023-01-26T20:23:00Z","createdDate":"2023-01-26T20:23:35Z","modifiedDate":"2023-02-04T01:57:39Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2301260040006490","name":"2301260040006490","type":"Microsoft.Support/supportTickets","properties":{"description":"test + case\n\nProblem start date and time\nNot sure, use current time","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/8b7ff0c4-0578-29ed-5372-141710cf9824","problemClassificationDisplayName":"Availability + and Performance / Slow transfer","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Aditi","lastName":"Takle","preferredContactMethod":"Email","primaryEmailAddress":"Aditi.Takle@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2023-01-26T20:16:05Z","expirationTime":"2023-01-27T16:17:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"sakjai@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2301260040006490","title":"test case","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","problemStartTime":"2023-01-26T20:15:00Z","createdDate":"2023-01-26T20:16:05Z","modifiedDate":"2023-01-26T20:20:57Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2301250010002388","name":"2301250010002388","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85","problemClassificationDisplayName":"Availability + and Performance / CDN Analytics","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Kiran","lastName":"Korey","preferredContactMethod":"Email","primaryEmailAddress":"kirankorey@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2023-01-25T18:30:00Z","expirationTime":"2023-01-26T14:30:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"adtakle@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2301250010002388","title":"test","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2023-01-25T18:30:00Z","modifiedDate":"2023-01-25T18:30:33Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2301230040007676","name":"2301230040007676","type":"Microsoft.Support/supportTickets","properties":{"description":"test + case\n\nProblem start date and time\nNot sure, use current time","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/787373c2-656c-c872-b509-6f3c97a41379","problemClassificationDisplayName":"Configuration + / Verizon Premium Rules Engine","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Aditi","lastName":"Takle","preferredContactMethod":"Email","primaryEmailAddress":"Aditi.Takle@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2023-01-23T21:12:34Z","expirationTime":"2023-01-24T17:13:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"adtakle@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2301230040007676","title":"test case please close","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","problemStartTime":"2023-01-23T21:12:00Z","createdDate":"2023-01-23T21:12:34Z","modifiedDate":"2023-01-23T21:29:05Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2301230010002000","name":"2301230010002000","type":"Microsoft.Support/supportTickets","properties":{"description":"test + case\n\nProblem start date and time\nNot sure, use current time","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/787373c2-656c-c872-b509-6f3c97a41379","problemClassificationDisplayName":"Configuration + / Verizon Premium Rules Engine","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Aditi","lastName":"Takle","preferredContactMethod":"Email","primaryEmailAddress":"Aditi.Takle@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2023-01-23T20:54:10Z","expirationTime":"2023-01-24T16:55:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"adtakle@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2301230010002000","title":"test case, please + close","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","problemStartTime":"2023-01-23T20:53:00Z","createdDate":"2023-01-23T20:54:10Z","modifiedDate":"2023-01-23T20:54:39Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2301200040006865","name":"2301200040006865","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/bedfb285-06e6-918c-0851-d180769d7078","problemClassificationDisplayName":"Availability + and Performance / Buffering while streaming","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Saroj","lastName":"Pradhan","preferredContactMethod":"Email","primaryEmailAddress":"v-sarop@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2023-01-20T20:10:57Z","expirationTime":"2023-01-23T16:11:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"auprince@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2301200040006865","title":"Agent timeout test","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2023-01-20T20:10:57Z","modifiedDate":"2023-01-20T20:51:20Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2301200040006745","name":"2301200040006745","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/bedfb285-06e6-918c-0851-d180769d7078","problemClassificationDisplayName":"Availability + and Performance / Buffering while streaming","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Saroj","lastName":"Pradhan","preferredContactMethod":"Email","primaryEmailAddress":"v-sarop@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2023-01-20T19:51:22Z","expirationTime":"2023-01-23T15:52:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"auprince@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2301200040006745","title":"Agent timeout issue + test chat","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2023-01-20T19:51:22Z","modifiedDate":"2023-01-20T19:59:16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2301190010003275","name":"2301190010003275","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/787373c2-656c-c872-b509-6f3c97a41379","problemClassificationDisplayName":"Configuration + / Verizon Premium Rules Engine","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Aditi","lastName":"Takle","preferredContactMethod":"Email","primaryEmailAddress":"Aditi.Takle@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2023-01-19T20:31:36Z","expirationTime":"2023-01-20T16:32:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"adtakle@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2301190010003275","title":"test case, please + close","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2023-01-19T20:31:36Z","modifiedDate":"2023-01-19T23:07:16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2301180010003265","name":"2301180010003265","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/787373c2-656c-c872-b509-6f3c97a41379","problemClassificationDisplayName":"Configuration + / Verizon Premium Rules Engine","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Aditi","lastName":"Takle","preferredContactMethod":"Email","primaryEmailAddress":"Aditi.Takle@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2023-01-18T19:37:49Z","expirationTime":"2023-01-19T15:38:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"adtakle@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2301180010003265","title":"test case, please + close","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2023-01-18T19:37:49Z","modifiedDate":"2023-01-18T21:23:30Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2301120010003101","name":"2301120010003101","type":"Microsoft.Support/supportTickets","properties":{"description":"test\n\nProblem + start date and time\nNot sure, use current time","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/787373c2-656c-c872-b509-6f3c97a41379","problemClassificationDisplayName":"Configuration + / Verizon Premium Rules Engine","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Aditi","lastName":"Takle","preferredContactMethod":"Email","primaryEmailAddress":"Aditi.Takle@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2023-01-12T18:09:21Z","expirationTime":"2023-01-13T14:10:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"adtakle@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2301120010003101","title":"test case, please + close","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","problemStartTime":"2023-01-12T18:09:00Z","createdDate":"2023-01-12T18:09:21Z","modifiedDate":"2023-01-12T18:10:03Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2301100010003341","name":"2301100010003341","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/787373c2-656c-c872-b509-6f3c97a41379","problemClassificationDisplayName":"Configuration + / Verizon Premium Rules Engine","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Aditi","lastName":"Takle","preferredContactMethod":"Email","primaryEmailAddress":"Aditi.Takle@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2023-01-10T23:56:34Z","expirationTime":"2023-01-11T19:57:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"adtakle@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2301100010003341","title":"test case, please + close","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2023-01-10T23:56:34Z","modifiedDate":"2023-01-10T23:57:10Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2301060010001960","name":"2301060010001960","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/bedfb285-06e6-918c-0851-d180769d7078","problemClassificationDisplayName":"Availability + and Performance / Buffering while streaming","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Hayk","lastName":"Margaryan","preferredContactMethod":"Email","primaryEmailAddress":"hmargaryan@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2023-01-06T20:57:17Z","expirationTime":"2023-01-09T16:58:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"adtakle@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2301060010001960","title":"Test","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2023-01-06T20:57:17Z","modifiedDate":"2023-01-06T21:00:21Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/final_test_ticket_please_work","name":"final_test_ticket_please_work","type":"Microsoft.Support/supportTickets","properties":{"description":"This + is an automated test ticket created from API","problemClassificationId":"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/de79f709-5c28-19b7-4268-4e1270837208","problemClassificationDisplayName":"Cannot + connect to my VM / I need guidance with serial console access","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Carlos","lastName":"Berdugo","preferredContactMethod":"Email","primaryEmailAddress":"carlosber@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Sam_Test/providers/Microsoft.Compute/virtualMachines/TemiTest"},"serviceLevelAgreement":{"startTime":"2022-12-14T01:33:31Z","expirationTime":"2022-12-14T17:34:00Z","slaMinutes":240},"supportEngineer":{"emailAddress":"carlosber@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2212140040000412","title":"test ticket","serviceId":"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc","serviceDisplayName":"Virtual + Machine running Linux","status":"Open","createdDate":"2022-12-14T01:33:31Z","modifiedDate":"2022-12-14T01:39:15Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2212130010002072","name":"2212130010002072","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/b63a35c7-82de-17af-246b-63364b67c89f","problemClassificationDisplayName":"Configuration + / Streaming configuration","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Aditi","lastName":"Takle","preferredContactMethod":"Email","primaryEmailAddress":"Aditi.Takle@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-12-13T19:33:59Z","expirationTime":"2022-12-14T15:34:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"adtakle@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2212130010002072","title":"test case, please + close","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-12-13T19:33:59Z","modifiedDate":"2022-12-13T19:34:30Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2212120010001730","name":"2212120010001730","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/bedfb285-06e6-918c-0851-d180769d7078","problemClassificationDisplayName":"Availability + and Performance / Buffering while streaming","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"test","lastName":"user","preferredContactMethod":"Email","primaryEmailAddress":"testuser@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-12-12T20:47:25Z","expirationTime":"2022-12-13T16:48:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"adtakle@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2212120010001730","title":"test","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-12-12T20:47:25Z","modifiedDate":"2022-12-12T20:48:01Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2212080010002589","name":"2212080010002589","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/bedfb285-06e6-918c-0851-d180769d7078","problemClassificationDisplayName":"Availability + and Performance / Buffering while streaming","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Dhruvesh","lastName":"Sheladiya","preferredContactMethod":"Email","primaryEmailAddress":"dsheladiya@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-12-08T20:07:37Z","expirationTime":"2022-12-09T16:08:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"dsheladiya@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2212080010002589","title":"Testing","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-12-08T20:07:37Z","modifiedDate":"2022-12-13T04:22:43Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2212060010001425","name":"2212060010001425","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/bedfb285-06e6-918c-0851-d180769d7078","problemClassificationDisplayName":"Availability + and Performance / Buffering while streaming","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Elishuwon","lastName":"Mitchell","preferredContactMethod":"Email","primaryEmailAddress":"elimitchell@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-12-06T16:13:38Z","expirationTime":"2022-12-07T00:13:38Z","slaMinutes":480},"supportEngineer":{"emailAddress":"dsheladiya@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2212060010001425","title":"testing deployment","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-12-06T16:13:38Z","modifiedDate":"2022-12-07T20:00:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2212050040008324","name":"2212050040008324","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/bedfb285-06e6-918c-0851-d180769d7078","problemClassificationDisplayName":"Availability + and Performance / Buffering while streaming","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Dhruvesh","lastName":"Sheladiya","preferredContactMethod":"Email","primaryEmailAddress":"dsheladiya@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-12-05T21:31:49Z","expirationTime":"2022-12-06T17:32:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"dsheladiya@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2212050040008324","title":"Testing local storage + bug","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-12-05T21:31:49Z","modifiedDate":"2022-12-05T21:32:11Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2212050010002987","name":"2212050010002987","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/bedfb285-06e6-918c-0851-d180769d7078","problemClassificationDisplayName":"Availability + and Performance / Buffering while streaming","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Dhruvesh","lastName":"Sheladiya","preferredContactMethod":"Email","primaryEmailAddress":"dsheladiya@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-12-05T21:20:07Z","expirationTime":"2022-12-06T17:21:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"dsheladiya@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2212050010002987","title":"Testing localstorage + bug","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-12-05T21:20:07Z","modifiedDate":"2022-12-05T21:21:52Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2211300040008852","name":"2211300040008852","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/bedfb285-06e6-918c-0851-d180769d7078","problemClassificationDisplayName":"Availability + and Performance / Buffering while streaming","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Dhruvesh","lastName":"Sheladiya","preferredContactMethod":"Email","primaryEmailAddress":"dsheladiya@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-11-30T23:05:24Z","expirationTime":"2022-12-01T19:06:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"dsheladiya@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2211300040008852","title":"Testing livechat","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-11-30T23:05:24Z","modifiedDate":"2022-11-30T23:05:50Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2211300010002825","name":"2211300010002825","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85","problemClassificationDisplayName":"Availability + and Performance / CDN Analytics","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Kiran","lastName":"Korey","preferredContactMethod":"Email","primaryEmailAddress":"kirankorey@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-11-30T19:25:42Z","expirationTime":"2022-12-01T15:26:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"kirankorey@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2211300010002825","title":"AzureSupport","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-11-30T19:25:42Z","modifiedDate":"2022-11-30T19:26:33Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2211300010002793","name":"2211300010002793","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/bedfb285-06e6-918c-0851-d180769d7078","problemClassificationDisplayName":"Availability + and Performance / Buffering while streaming","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Elishuwon","lastName":"Mitchell","preferredContactMethod":"Email","primaryEmailAddress":"elimitchell@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-11-30T19:17:53Z","expirationTime":"2022-12-01T15:18:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"dsheladiya@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2211300010002793","title":"test","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-11-30T19:17:53Z","modifiedDate":"2022-11-30T19:18:22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2211300010002791","name":"2211300010002791","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85","problemClassificationDisplayName":"Availability + and Performance / CDN Analytics","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Kiran","lastName":"Korey","preferredContactMethod":"Email","primaryEmailAddress":"kirankorey@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-11-30T19:17:38Z","expirationTime":"2022-12-01T15:18:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"dsheladiya@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2211300010002791","title":"test","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-11-30T19:17:38Z","modifiedDate":"2022-11-30T19:19:14Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2211300010002789","name":"2211300010002789","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85","problemClassificationDisplayName":"Availability + and Performance / CDN Analytics","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Kenley + Shaw","lastName":"","preferredContactMethod":"Email","primaryEmailAddress":"kenleyshaw@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-11-30T19:16:07Z","expirationTime":"2022-12-01T15:17:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"kenleyshaw@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2211300010002789","title":"testing 2","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-11-30T19:16:07Z","modifiedDate":"2022-11-30T19:16:29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2211300010002776","name":"2211300010002776","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85","problemClassificationDisplayName":"Availability + and Performance / CDN Analytics","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Kenley + Shaw","lastName":"","preferredContactMethod":"Email","primaryEmailAddress":"kenleyshaw@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-11-30T19:13:28Z","expirationTime":"2022-12-01T15:14:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"dsheladiya@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2211300010002776","title":"test","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-11-30T19:13:28Z","modifiedDate":"2022-11-30T19:14:02Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2211300010002774","name":"2211300010002774","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/bedfb285-06e6-918c-0851-d180769d7078","problemClassificationDisplayName":"Availability + and Performance / Buffering while streaming","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Elishuwon","lastName":"Mitchell","preferredContactMethod":"Email","primaryEmailAddress":"elimitchell@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-11-30T19:13:14Z","expirationTime":"2022-12-01T15:14:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"kirankorey@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2211300010002774","title":"test","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-11-30T19:13:14Z","modifiedDate":"2022-11-30T19:13:49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2211300010002751","name":"2211300010002751","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85","problemClassificationDisplayName":"Availability + and Performance / CDN Analytics","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Kenley + Shaw","lastName":"","preferredContactMethod":"Email","primaryEmailAddress":"kenleyshaw@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ashuredhat/providers/microsoft.cdn/profiles/TestCDNStandard"},"serviceLevelAgreement":{"startTime":"2022-11-30T19:08:36Z","expirationTime":"2022-12-01T15:09:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"kenleyshaw@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2211300010002751","title":"test","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-11-30T19:08:36Z","modifiedDate":"2022-11-30T19:09:23Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2211300010000724","name":"2211300010000724","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/bedfb285-06e6-918c-0851-d180769d7078","problemClassificationDisplayName":"Availability + and Performance / Buffering while streaming","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Dhruvesh","lastName":"Sheladiya","preferredContactMethod":"Email","primaryEmailAddress":"dsheladiya@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-11-30T06:05:11Z","expirationTime":"2022-11-30T22:00:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"dsheladiya@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2211300010000724","title":"Testing ppe","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-11-30T06:05:11Z","modifiedDate":"2022-11-30T06:07:01Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2211300040001816","name":"2211300040001816","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/9e4a4be2-eed0-b5d1-c537-a50fa8987bc2","problemClassificationDisplayName":"Configuration + / HTTPS and SSL configuration","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Dhruvesh","lastName":"Sheladiya","preferredContactMethod":"Email","primaryEmailAddress":"dsheladiya@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-11-30T05:56:58Z","expirationTime":"2022-11-30T22:00:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"dsheladiya@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2211300040001816","title":"Testing livechat using + oc","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-11-30T05:56:58Z","modifiedDate":"2022-11-30T05:58:03Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2211290010003296","name":"2211290010003296","type":"Microsoft.Support/supportTickets","properties":{"description":"This + is a test case. please ignore\n\nProblem start date and time\nNot sure, use + current time","problemClassificationId":"/providers/Microsoft.Support/services/88f7fa12-ffd2-e080-ab1f-16aa954adbfb/problemClassifications/3eb381ab-5866-0b86-8937-abe15894e8fc","problemClassificationDisplayName":"Configuration + and setup of Nexus Platform / Cluster","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Yanyan","lastName":"Lu","preferredContactMethod":"Email","primaryEmailAddress":"yanylu@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2022-11-29T23:59:19Z","expirationTime":"2022-11-30T16:01:00Z","slaMinutes":240},"supportEngineer":{"emailAddress":"v-nasi@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2211290010003296","title":"test with Rock Creek + changes","serviceId":"/providers/Microsoft.Support/services/88f7fa12-ffd2-e080-ab1f-16aa954adbfb","serviceDisplayName":"Azure + Operator Nexus","status":"Open","problemStartTime":"2022-11-29T23:57:00Z","createdDate":"2022-11-29T23:59:19Z","modifiedDate":"2022-11-30T05:03:24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2211280040008555","name":"2211280040008555","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/1890289e-747c-7ef6-b4f5-b1dbb0bead28/problemClassifications/b7106007-ad1e-eece-0d48-4508b0db3d2b","problemClassificationDisplayName":"Availability, + Performance, and Application Issues / Web app down or reporting errors","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Kiran","lastName":"Korey","preferredContactMethod":"Email","primaryEmailAddress":"kirankorey@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmc/providers/Microsoft.Web/sites/asmctest"},"serviceLevelAgreement":{"startTime":"2022-11-28T22:59:16Z","expirationTime":"2022-11-29T19:00:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"kirankorey@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2211280040008555","title":"azuresupportrp","serviceId":"/providers/Microsoft.Support/services/1890289e-747c-7ef6-b4f5-b1dbb0bead28","serviceDisplayName":"Web + App (Windows)","status":"Open","createdDate":"2022-11-28T22:59:16Z","modifiedDate":"2022-11-28T22:59:48Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2211280040008313","name":"2211280040008313","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/1890289e-747c-7ef6-b4f5-b1dbb0bead28/problemClassifications/7ea8c2bb-ecdb-c4f6-c56f-8244facb7e76","problemClassificationDisplayName":"Availability, + Performance, and Application Issues / Outbound connections from my app are + failing","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Kiran","lastName":"Korey","preferredContactMethod":"Email","primaryEmailAddress":"kirankorey@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asmc/providers/Microsoft.Web/sites/asmctest"},"serviceLevelAgreement":{"startTime":"2022-11-28T22:07:53Z","expirationTime":"2022-11-29T18:08:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"kirankorey@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2211280040008313","title":"test","serviceId":"/providers/Microsoft.Support/services/1890289e-747c-7ef6-b4f5-b1dbb0bead28","serviceDisplayName":"Web + App (Windows)","status":"Open","createdDate":"2022-11-28T22:07:53Z","modifiedDate":"2022-11-28T22:08:25Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2211280040005771","name":"2211280040005771","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/bedfb285-06e6-918c-0851-d180769d7078","problemClassificationDisplayName":"Availability + and Performance / Buffering while streaming","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Dhruvesh","lastName":"Sheladiya","preferredContactMethod":"Email","primaryEmailAddress":"dsheladiya@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-11-28T15:59:41Z","expirationTime":"2022-11-28T23:59:41Z","slaMinutes":480},"supportEngineer":{"emailAddress":"dsheladiya@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2211280040005771","title":"Testing OC","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-11-28T15:59:41Z","modifiedDate":"2022-11-28T16:00:14Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2211280040005207","name":"2211280040005207","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/bedfb285-06e6-918c-0851-d180769d7078","problemClassificationDisplayName":"Availability + and Performance / Buffering while streaming","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Dhruvesh","lastName":"Sheladiya","preferredContactMethod":"Email","primaryEmailAddress":"dsheladiya@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-11-28T15:03:23Z","expirationTime":"2022-11-28T23:03:23Z","slaMinutes":480},"supportEngineer":{"emailAddress":"dsheladiya@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2211280040005207","title":"Testing","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-11-28T15:03:23Z","modifiedDate":"2022-11-28T15:03:57Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2211160010001983","name":"2211160010001983","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/ed0ce7dd-2976-1692-02b0-8faabcc7a322","problemClassificationDisplayName":"Availability + and Performance / CDN URL does not respond","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Da","lastName":"Ziang","preferredContactMethod":"Email","primaryEmailAddress":"daziang@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-11-16T17:48:27Z","expirationTime":"2022-11-17T01:48:27Z","slaMinutes":480},"supportEngineer":{"emailAddress":"adtakle@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2211160010001983","title":"dropping availability","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-11-16T17:48:27Z","modifiedDate":"2022-11-16T17:49:15Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2211150010002934","name":"2211150010002934","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/bedfb285-06e6-918c-0851-d180769d7078","problemClassificationDisplayName":"Availability + and Performance / Buffering while streaming","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Dhruvesh","lastName":"Sheladiya","preferredContactMethod":"Email","primaryEmailAddress":"dsheladiya@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-11-15T22:31:18Z","expirationTime":"2022-11-16T18:32:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"dsheladiya@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2211150010002934","title":"Testing third last","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-11-15T22:31:18Z","modifiedDate":"2022-11-15T22:31:47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2211150040009246","name":"2211150040009246","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/bedfb285-06e6-918c-0851-d180769d7078","problemClassificationDisplayName":"Availability + and Performance / Buffering while streaming","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Dhruvesh","lastName":"Sheladiya","preferredContactMethod":"Email","primaryEmailAddress":"dsheladiya@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-11-15T22:17:57Z","expirationTime":"2022-11-16T18:18:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"dsheladiya@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2211150040009246","title":"test","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-11-15T22:17:57Z","modifiedDate":"2022-11-15T22:26:33Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2211150010002846","name":"2211150010002846","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/bedfb285-06e6-918c-0851-d180769d7078","problemClassificationDisplayName":"Availability + and Performance / Buffering while streaming","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Dhruvesh","lastName":"Sheladiya","preferredContactMethod":"Email","primaryEmailAddress":"dsheladiya@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-11-15T21:46:25Z","expirationTime":"2022-11-16T17:47:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"adtakle@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2211150010002846","title":"Test","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-11-15T21:46:25Z","modifiedDate":"2022-11-15T21:49:16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2211150010002834","name":"2211150010002834","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/69575ec1-bdce-053e-277a-db2611184a85","problemClassificationDisplayName":"Availability + and Performance / CDN Analytics","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Kiran","lastName":"Korey","preferredContactMethod":"Email","primaryEmailAddress":"kirankorey@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-11-15T21:42:08Z","expirationTime":"2022-11-16T17:43:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"kirankorey@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2211150010002834","title":"Test","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-11-15T21:42:08Z","modifiedDate":"2022-11-15T21:43:26Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2211150010002216","name":"2211150010002216","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/bedfb285-06e6-918c-0851-d180769d7078","problemClassificationDisplayName":"Availability + and Performance / Buffering while streaming","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Dhruvesh","lastName":"Sheladiya","preferredContactMethod":"Email","primaryEmailAddress":"dsheladiya@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-11-15T17:40:36Z","expirationTime":"2022-11-16T01:40:36Z","slaMinutes":480},"supportEngineer":{"emailAddress":"dsheladiya@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2211150010002216","title":"Testing the cdn changes","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-11-15T17:40:36Z","modifiedDate":"2022-11-15T17:41:07Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2211140010002194","name":"2211140010002194","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/787373c2-656c-c872-b509-6f3c97a41379","problemClassificationDisplayName":"Configuration + / Verizon Premium Rules Engine","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Aditi","lastName":"Takle","preferredContactMethod":"Email","primaryEmailAddress":"Aditi.Takle@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-11-14T18:19:32Z","expirationTime":"2022-11-15T14:20:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"adtakle@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2211140010002194","title":"test case, please + close","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-11-14T18:19:32Z","modifiedDate":"2022-11-14T18:20:57Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2211080040006670","name":"2211080040006670","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/bedfb285-06e6-918c-0851-d180769d7078","problemClassificationDisplayName":"Availability + and Performance / Buffering while streaming","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Dhruvesh","lastName":"Sheladiya","preferredContactMethod":"Email","primaryEmailAddress":"dsheladiya@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-11-08T17:30:31Z","expirationTime":"2022-11-09T01:30:31Z","slaMinutes":480},"supportEngineer":{"emailAddress":"dsheladiya@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2211080040006670","title":"Testing OC chat","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-11-08T17:30:31Z","modifiedDate":"2022-11-08T17:31:51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2211060040000543","name":"2211060040000543","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/bedfb285-06e6-918c-0851-d180769d7078","problemClassificationDisplayName":"Availability + and Performance / Buffering while streaming","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Dhruvesh","lastName":"Sheladiya","preferredContactMethod":"Email","primaryEmailAddress":"dsheladiya@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-11-06T19:05:13Z","expirationTime":"2022-11-07T22:00:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"dsheladiya@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2211060040000543","title":"New Azure Support + Chat Experience","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-11-06T19:05:13Z","modifiedDate":"2022-11-06T19:06:04Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2211060040000534","name":"2211060040000534","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/bedfb285-06e6-918c-0851-d180769d7078","problemClassificationDisplayName":"Availability + and Performance / Buffering while streaming","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Dhruvesh","lastName":"Sheladiya","preferredContactMethod":"Email","primaryEmailAddress":"dsheladiya@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-11-06T18:53:57Z","expirationTime":"2022-11-07T22:00:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"dsheladiya@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2211060040000534","title":"Testing New Chat Experience","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-11-06T18:53:57Z","modifiedDate":"2023-03-07T16:00:27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2211020010003326","name":"2211020010003326","type":"Microsoft.Support/supportTickets","properties":{"description":"Question: + Start time of most recent occurrence\nAnswer: Not sure, use current time\n\nQuestion: + Is the problem occurring right now?\nAnswer: \n\nQuestion: How did you detect + high memory usage?\nAnswer: \n\nQuestion: Select the applications running + on your virtual machine\nAnswer: \n\nQuestion: List all processes/applications + you have identified that cause the high memory usage.\nAnswer: test\n\nQuestion: + Description\nAnswer: test","problemClassificationId":"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/0cb121be-61df-48e4-5faa-b34f01c7aa16","problemClassificationDisplayName":"VM + Performance / Memory usage is higher than expected","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Atavur + Rahaman","lastName":"Mohammad","preferredContactMethod":"Email","primaryEmailAddress":"atmohammad@microsoft.com","preferredTimeZone":"Eastern + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Sam_Test/providers/Microsoft.Compute/virtualMachines/TemiTest"},"serviceLevelAgreement":{"startTime":"2022-11-02T20:43:11Z","expirationTime":"2022-11-03T16:44:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"atmohammad@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2211020010003326","title":"test","serviceId":"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396","serviceDisplayName":"Virtual + Machine running Windows","status":"Open","problemStartTime":"2022-11-02T20:42:00Z","createdDate":"2022-11-02T20:43:11Z","modifiedDate":"2022-11-03T13:19:32Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2211010010003787","name":"2211010010003787","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/787373c2-656c-c872-b509-6f3c97a41379","problemClassificationDisplayName":"Configuration + / Verizon Premium Rules Engine","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Aditi","lastName":"Takle","preferredContactMethod":"Email","primaryEmailAddress":"Aditi.Takle@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-11-01T22:00:19Z","expirationTime":"2022-11-02T18:01:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"adtakle@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2211010010003787","title":"test case, please + close","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-11-01T22:00:19Z","modifiedDate":"2022-11-03T22:31:02Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2210280010003169","name":"2210280010003169","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/787373c2-656c-c872-b509-6f3c97a41379","problemClassificationDisplayName":"Configuration + / Verizon Premium Rules Engine","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"test","lastName":"user","preferredContactMethod":"Email","primaryEmailAddress":"testuser@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/livechat-lcw-cdn/providers/Microsoft.Cdn/profiles/livechatfrontdoor"},"serviceLevelAgreement":{"startTime":"2022-10-28T22:31:19Z","expirationTime":"2022-10-31T18:32:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"adtakle@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2210280010003169","title":"test","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-10-28T22:31:19Z","modifiedDate":"2022-10-28T22:32:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2210270010000103","name":"2210270010000103","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/787373c2-656c-c872-b509-6f3c97a41379","problemClassificationDisplayName":"Configuration + / Verizon Premium Rules Engine","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Aditi","lastName":"Takle","preferredContactMethod":"Email","primaryEmailAddress":"Aditi.Takle@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-10-27T00:52:58Z","expirationTime":"2022-10-27T20:53:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"adtakle@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2210270010000103","title":"test case, please + close","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-10-27T00:52:58Z","modifiedDate":"2022-10-27T00:53:46Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2210260040008348","name":"2210260040008348","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/bedfb285-06e6-918c-0851-d180769d7078","problemClassificationDisplayName":"Availability + and Performance / Buffering while streaming","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Dhruvesh","lastName":"Sheladiya","preferredContactMethod":"Email","primaryEmailAddress":"dsheladiya@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-10-26T18:49:30Z","expirationTime":"2022-10-27T14:50:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"dsheladiya@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2210260040008348","title":"Testing livechat in + mpac","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-10-26T18:49:30Z","modifiedDate":"2022-10-26T18:50:30Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2210250010004180","name":"2210250010004180","type":"Microsoft.Support/supportTickets","properties":{"description":"test + case\n\nProblem start date and time\nNot sure, use current time","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/6f8f3814-1ef8-8bc2-f944-7f3c65978dc7","problemClassificationDisplayName":"Configuration + / Custom domain name (CName)","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Aditi","lastName":"Takle","preferredContactMethod":"Email","primaryEmailAddress":"Aditi.Takle@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-10-25T20:00:51Z","expirationTime":"2022-10-26T16:01:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"adtakle@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2210250010004180","title":"test case","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","problemStartTime":"2022-10-25T20:00:00Z","createdDate":"2022-10-25T20:00:51Z","modifiedDate":"2022-10-25T20:16:31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2210250010003914","name":"2210250010003914","type":"Microsoft.Support/supportTickets","properties":{"description":"test + case\n\nProblem start date and time\nNot sure, use current time","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/6f8f3814-1ef8-8bc2-f944-7f3c65978dc7","problemClassificationDisplayName":"Configuration + / Custom domain name (CName)","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Aditi","lastName":"Takle","preferredContactMethod":"Email","primaryEmailAddress":"Aditi.Takle@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-10-25T18:30:28Z","expirationTime":"2022-10-26T14:31:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"adtakle@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2210250010003914","title":"test case, please + close","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","problemStartTime":"2022-10-25T18:29:00Z","createdDate":"2022-10-25T18:30:28Z","modifiedDate":"2022-10-25T19:43:07Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2210190010003159","name":"2210190010003159","type":"Microsoft.Support/supportTickets","properties":{"description":"test + case\n\nProblem start date and time\nNot sure, use current time","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/a9e06c70-838d-9342-823d-12909d10c3a7","problemClassificationDisplayName":"Availability + and Performance / Other","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Aditi","lastName":"Takle","preferredContactMethod":"Email","primaryEmailAddress":"Aditi.Takle@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-10-19T19:51:23Z","expirationTime":"2022-10-20T15:52:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"adtakle@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2210190010003159","title":"test case, please + close","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","problemStartTime":"2022-10-19T19:51:00Z","createdDate":"2022-10-19T19:51:23Z","modifiedDate":"2022-10-19T20:11:02Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2210180010004034","name":"2210180010004034","type":"Microsoft.Support/supportTickets","properties":{"description":"test + case, please close\n\nProblem start date and time\nNot sure, use current time","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/787373c2-656c-c872-b509-6f3c97a41379","problemClassificationDisplayName":"Configuration + / Verizon Premium Rules Engine","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Aditi","lastName":"Takle","preferredContactMethod":"Email","primaryEmailAddress":"Aditi.Takle@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-10-18T21:39:43Z","expirationTime":"2022-10-19T17:40:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"adtakle@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2210180010004034","title":"test case, please + close","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","problemStartTime":"2022-10-18T21:39:00Z","createdDate":"2022-10-18T21:39:43Z","modifiedDate":"2022-10-18T21:40:02Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2210180010003941","name":"2210180010003941","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/787373c2-656c-c872-b509-6f3c97a41379","problemClassificationDisplayName":"Configuration + / Verizon Premium Rules Engine","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Aditi","lastName":"Takle","preferredContactMethod":"Email","primaryEmailAddress":"Aditi.Takle@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-10-18T20:59:50Z","expirationTime":"2022-10-19T17:00:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"adtakle@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2210180010003941","title":"test case, please + close","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-10-18T20:59:50Z","modifiedDate":"2022-10-18T21:04:21Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2210130010003411","name":"2210130010003411","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/9e4a4be2-eed0-b5d1-c537-a50fa8987bc2","problemClassificationDisplayName":"Configuration + / HTTPS and SSL configuration","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Aditi","lastName":"Takle","preferredContactMethod":"Email","primaryEmailAddress":"Aditi.Takle@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-10-13T23:22:46Z","expirationTime":"2022-10-14T19:23:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"adtakle@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2210130010003411","title":"test case, please + close","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-10-13T23:22:46Z","modifiedDate":"2022-10-13T23:27:55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2210130010003015","name":"2210130010003015","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/f325e249-4f10-e5bd-28f6-a466704826da","problemClassificationDisplayName":"Cannot + connect to my VM / I need to reset my password","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Waner","lastName":"Deng","preferredContactMethod":"Email","primaryEmailAddress":"wanerdeng@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2022-10-13T20:31:33Z","expirationTime":"2022-10-14T00:31:33Z","slaMinutes":240},"supportEngineer":{"emailAddress":"dsheladiya@microsoft.com"},"supportPlanType":"Premier","supportTicketId":"2210130010003015","title":"Testing + chat ","serviceId":"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396","serviceDisplayName":"Virtual + Machine running Windows","status":"Open","createdDate":"2022-10-13T20:31:33Z","modifiedDate":"2022-11-09T20:24:29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2210120010002722","name":"2210120010002722","type":"Microsoft.Support/supportTickets","properties":{"description":"test + case\n\nProblem start date and time\nNot sure, use current time","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/787373c2-656c-c872-b509-6f3c97a41379","problemClassificationDisplayName":"Configuration + / Verizon Premium Rules Engine","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Aditi","lastName":"Takle","preferredContactMethod":"Email","primaryEmailAddress":"Aditi.Takle@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-10-12T16:37:42Z","expirationTime":"2022-10-13T00:37:42Z","slaMinutes":480},"supportEngineer":{"emailAddress":"adtakle@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2210120010002722","title":"test case, please + close","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","problemStartTime":"2022-10-12T16:36:00Z","createdDate":"2022-10-12T16:37:42Z","modifiedDate":"2022-10-13T16:04:09Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2210050010002176","name":"2210050010002176","type":"Microsoft.Support/supportTickets","properties":{"description":"Question: + Start time of most recent occurrence\nAnswer: Not sure, use current time\n\nQuestion: + Is the problem occurring right now?\nAnswer: \n\nQuestion: How did you detect + high CPU usage?\nAnswer: \n\nQuestion: Select the applications running on + your virtual machine\nAnswer: \n\nQuestion: List all processes/applications + you have identified that cause the high CPU usage.\nAnswer: test\n\nQuestion: + Description\nAnswer: test","problemClassificationId":"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/8b618100-f5cd-7ad5-1c69-72aaf37d801d","problemClassificationDisplayName":"VM + Performance / CPU usage is higher than expected","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Atavur + Rahaman","lastName":"Mohammad","preferredContactMethod":"Email","primaryEmailAddress":"atmohammad@microsoft.com","preferredTimeZone":"Eastern + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Sam_Test/providers/Microsoft.Compute/virtualMachines/TemiTest"},"serviceLevelAgreement":{"startTime":"2022-10-05T14:15:24Z","expirationTime":"2022-10-05T22:15:24Z","slaMinutes":240},"supportEngineer":{"emailAddress":"atmohammad@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2210050010002176","title":"test","serviceId":"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396","serviceDisplayName":"Virtual + Machine running Windows","status":"Open","problemStartTime":"2022-10-05T14:15:00Z","createdDate":"2022-10-05T14:15:24Z","modifiedDate":"2022-10-05T23:05:24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2210040040008956","name":"2210040040008956","type":"Microsoft.Support/supportTickets","properties":{"description":"This + support ticket was created specifically to track an Azure chat","problemClassificationId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9/problemClassifications/bedfb285-06e6-918c-0851-d180769d7078","problemClassificationDisplayName":"Availability + and Performance / Buffering while streaming","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Dhruvesh","lastName":"Sheladiya","preferredContactMethod":"Email","primaryEmailAddress":"dsheladiya@microsoft.com","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"technicalTicketDetails":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Akanksha-test/providers/microsoft.cdn/profiles/testcdnverizon"},"serviceLevelAgreement":{"startTime":"2022-10-04T22:16:45Z","expirationTime":"2022-10-05T18:17:00Z","slaMinutes":480},"supportEngineer":{"emailAddress":"dsheladiya@microsoft.com"},"supportPlanType":"Azure + Internal","supportTicketId":"2210040040008956","title":"Testing New LCW","serviceId":"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9","serviceDisplayName":"Azure + CDN","status":"Open","createdDate":"2022-10-04T22:16:45Z","modifiedDate":"2022-10-04T22:18:23Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '92523' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 25 Mar 2024 06:32:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 8E8A944A8119460A95352910A3C40644 Ref B: CO6AA3150220025 Ref C: 2024-03-25T06:32:14Z' status: code: 200 message: OK @@ -8921,7 +3006,7 @@ interactions: ParameterSetName: - --ticket-name --severity --contact-method --contact-phone-number User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-support/6.0.0 Python/3.11.8 (Windows-10-10.0.22631-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001?api-version=2020-04-01 response: @@ -8929,33 +3014,32 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001","name":"test_ticket_from_cli_000001","type":"Microsoft.Support/supportTickets","properties":{"description":"test ticket from python cli test. Do not assign and close after a day.","problemClassificationId":"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc/problemClassifications/44114011-6a66-e902-c00f-e419b6b4509f","problemClassificationDisplayName":"Cost Management / I have access but cost is not loading for me","severity":"Moderate","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Foo","lastName":"Bar","preferredContactMethod":"Phone","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"123-456-7890","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-08-03T22:18:28Z","expirationTime":"2021-08-04T00:20:44Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108030010002669","title":"test - ticket from python cli test. Do not assign and close after a day.","serviceId":"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc","serviceDisplayName":"Billing","status":"Open","problemStartTime":"2021-08-03T15:18:13Z","createdDate":"2021-08-03T22:18:28Z","modifiedDate":"2021-08-03T22:20:39Z"}}' + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2024-03-25T06:31:01Z","expirationTime":"2024-03-25T21:00:00Z","slaMinutes":480},"supportEngineer":{},"supportPlanType":"Azure + Internal","supportTicketId":"2403250010001029","title":"test ticket from python + cli test. Do not assign and close after a day.","serviceId":"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc","serviceDisplayName":"Billing","status":"Open","problemStartTime":"2024-03-24T23:30:55Z","createdDate":"2024-03-25T06:31:01Z","modifiedDate":"2024-03-25T06:32:23Z"}}' headers: cache-control: - no-cache content-length: - - '1446' + - '1447' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:20:44 GMT + - Mon, 25 Mar 2024 06:32:23 GMT expires: - '-1' pragma: - no-cache - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: FE179AED3D9E4A328591F2D5B97EE381 Ref B: CO6AA3150220053 Ref C: 2024-03-25T06:32:19Z' status: code: 200 message: OK @@ -8977,7 +3061,7 @@ interactions: ParameterSetName: - --ticket-name --severity --contact-method User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-support/6.0.0 Python/3.11.8 (Windows-10-10.0.22631-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001?api-version=2020-04-01 response: @@ -8985,33 +3069,32 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001","name":"test_ticket_from_cli_000001","type":"Microsoft.Support/supportTickets","properties":{"description":"test ticket from python cli test. Do not assign and close after a day.","problemClassificationId":"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc/problemClassifications/44114011-6a66-e902-c00f-e419b6b4509f","problemClassificationDisplayName":"Cost Management / I have access but cost is not loading for me","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Foo","lastName":"Bar","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"123-456-7890","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-08-03T22:18:28Z","expirationTime":"2021-08-04T14:21:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108030010002669","title":"test - ticket from python cli test. Do not assign and close after a day.","serviceId":"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc","serviceDisplayName":"Billing","status":"Open","problemStartTime":"2021-08-03T15:18:13Z","createdDate":"2021-08-03T22:18:28Z","modifiedDate":"2021-08-03T22:20:52Z"}}' + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2024-03-25T06:31:01Z","expirationTime":"2024-03-25T21:00:00Z","slaMinutes":480},"supportEngineer":{},"supportPlanType":"Azure + Internal","supportTicketId":"2403250010001029","title":"test ticket from python + cli test. Do not assign and close after a day.","serviceId":"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc","serviceDisplayName":"Billing","status":"Open","problemStartTime":"2024-03-24T23:30:55Z","createdDate":"2024-03-25T06:31:01Z","modifiedDate":"2024-03-25T06:32:23Z"}}' headers: cache-control: - no-cache content-length: - - '1445' + - '1446' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:20:55 GMT + - Mon, 25 Mar 2024 06:32:28 GMT expires: - '-1' pragma: - no-cache - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 733A375E6C06400E9BF8F1B86479AC57 Ref B: CO6AA3150217033 Ref C: 2024-03-25T06:32:25Z' status: code: 200 message: OK @@ -9033,7 +3116,7 @@ interactions: ParameterSetName: - --ticket-name --status User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-support/6.0.0 Python/3.11.8 (Windows-10-10.0.22631-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001?api-version=2020-04-01 response: @@ -9041,33 +3124,32 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001","name":"test_ticket_from_cli_000001","type":"Microsoft.Support/supportTickets","properties":{"description":"test ticket from python cli test. Do not assign and close after a day.","problemClassificationId":"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc/problemClassifications/44114011-6a66-e902-c00f-e419b6b4509f","problemClassificationDisplayName":"Cost Management / I have access but cost is not loading for me","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Foo","lastName":"Bar","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"123-456-7890","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-08-03T22:18:28Z","expirationTime":"2021-08-04T14:21:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108030010002669","title":"test - ticket from python cli test. Do not assign and close after a day.","serviceId":"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc","serviceDisplayName":"Billing","status":"closed","problemStartTime":"2021-08-03T15:18:13Z","createdDate":"2021-08-03T22:18:28Z","modifiedDate":"2021-08-03T22:21:00Z"}}' + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2024-03-25T06:31:01Z","expirationTime":"2024-03-25T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Azure + Internal","supportTicketId":"2403250010001029","title":"test ticket from python + cli test. Do not assign and close after a day.","serviceId":"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc","serviceDisplayName":"Billing","status":"closed","problemStartTime":"2024-03-24T23:30:55Z","createdDate":"2024-03-25T06:31:01Z","modifiedDate":"2024-03-25T06:32:32Z"}}' headers: cache-control: - no-cache content-length: - - '1447' + - '1448' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:21:03 GMT + - Mon, 25 Mar 2024 06:32:32 GMT expires: - '-1' pragma: - no-cache - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 1A05AAB4D9A2403FB6849E116912C363 Ref B: CO6AA3150219047 Ref C: 2024-03-25T06:32:30Z' status: code: 200 message: OK @@ -9085,7 +3167,7 @@ interactions: ParameterSetName: - --ticket-name User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-support/6.0.0 Python/3.11.8 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001?api-version=2020-04-01 response: @@ -9093,31 +3175,30 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001","name":"test_ticket_from_cli_000001","type":"Microsoft.Support/supportTickets","properties":{"description":"test ticket from python cli test. Do not assign and close after a day.","problemClassificationId":"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc/problemClassifications/44114011-6a66-e902-c00f-e419b6b4509f","problemClassificationDisplayName":"Cost Management / I have access but cost is not loading for me","severity":"Minimal","require24X7Response":false,"enrollmentId":"","contactDetails":{"firstName":"Foo","lastName":"Bar","preferredContactMethod":"Email","primaryEmailAddress":"azengcase@microsoft.com","phoneNumber":"123-456-7890","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-08-03T22:18:28Z","expirationTime":"2021-08-04T14:21:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108030010002669","title":"test - ticket from python cli test. Do not assign and close after a day.","serviceId":"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc","serviceDisplayName":"Billing","status":"Closed","problemStartTime":"2021-08-03T15:18:13Z","createdDate":"2021-08-03T22:18:28Z","modifiedDate":"2021-08-03T22:21:00Z"}}' + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2024-03-25T06:31:01Z","expirationTime":"2024-03-25T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Azure + Internal","supportTicketId":"2403250010001029","title":"test ticket from python + cli test. Do not assign and close after a day.","serviceId":"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc","serviceDisplayName":"Billing","status":"Closed","problemStartTime":"2024-03-24T23:30:55Z","createdDate":"2024-03-25T06:31:01Z","modifiedDate":"2024-03-25T06:32:32Z"}}' headers: cache-control: - no-cache content-length: - - '1447' + - '1448' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:21:04 GMT + - Mon, 25 Mar 2024 06:32:35 GMT expires: - '-1' pragma: - no-cache - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 2F929330C1A44671AFB92EBDF3D6B60F Ref B: CO6AA3150220053 Ref C: 2024-03-25T06:32:35Z' status: code: 200 message: OK diff --git a/src/support/azext_support/tests/latest/recordings/test_support_tickets_create_validations.yaml b/src/support/azext_support/tests/latest/recordings/test_support_tickets_create_validations.yaml index f889ef0cd51..6a5e01045c5 100644 --- a/src/support/azext_support/tests/latest/recordings/test_support_tickets_create_validations.yaml +++ b/src/support/azext_support/tests/latest/recordings/test_support_tickets_create_validations.yaml @@ -19,7 +19,7 @@ interactions: --contact-email --contact-first-name --contact-language --contact-last-name --contact-method --contact-timezone --problem-classification User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.56.0 azsdk-python-mgmt-support/6.0.0 Python/3.11.8 (Windows-10-10.0.22631-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/checkNameAvailability?api-version=2020-04-01 response: @@ -27,7 +27,7 @@ interactions: string: '{"message":"Name 12345 is invalid. The name cannot include: ''<'', ''>'', ''%'', ''&'', '':'', '''', ''?'', ''/'' or any control characters. It cannot be all digits and cannot start with ''tmp-''. The max length is - 260 characters.","nameAvailable":false,"reason":"Invalid"}' + 255 characters.","nameAvailable":false,"reason":"Invalid"}' headers: cache-control: - no-cache @@ -36,23 +36,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 18:53:55 GMT + - Mon, 25 Mar 2024 06:30:56 GMT expires: - '-1' pragma: - no-cache - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 24D45F7FB24843A6B9AA06F73F7F7AEF Ref B: CO6AA3150218039 Ref C: 2024-03-25T06:30:56Z' status: code: 200 message: OK diff --git a/src/support/azext_support/tests/latest/test_support_scenario.py b/src/support/azext_support/tests/latest/test_support_scenario.py index fb70ea682da..c97539cb5f1 100644 --- a/src/support/azext_support/tests/latest/test_support_scenario.py +++ b/src/support/azext_support/tests/latest/test_support_scenario.py @@ -113,6 +113,7 @@ def test_support_tickets_create_validations(self): rsp = self.cmd(cmd, expect_failure=True) self._validate_failure_rsp(rsp, 1) + @AllowLargeResponse(size_kb=9999) def test_support_tickets(self): random_guid = "12345678-1234-1234-1234-123412341234" test_ticket_name = self.create_random_name(prefix='test_ticket_from_cli_', length=30) diff --git a/src/support/setup.py b/src/support/setup.py index a1201c33873..f85cafcc4d7 100644 --- a/src/support/setup.py +++ b/src/support/setup.py @@ -15,7 +15,7 @@ logger.warn("Wheel is not available, disabling bdist_wheel hook") # HISTORY.md entry. -VERSION = '1.0.3' +VERSION = '1.0.4' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers