From c26aa8d559511faa31c1e76497075ef23bd6c513 Mon Sep 17 00:00:00 2001 From: Rudra Sharma Date: Mon, 2 Aug 2021 13:43:52 -0700 Subject: [PATCH 01/12] Track 2 --- src/support/HISTORY.md | 4 + src/support/azext_support/__init__.py | 4 +- src/support/azext_support/_utils.py | 4 +- src/support/azext_support/_validators.py | 8 +- src/support/azext_support/custom.py | 8 +- .../azext_support/vendored_sdks/__init__.py | 18 +- .../vendored_sdks/_configuration.py | 81 +- .../vendored_sdks/_metadata.json | 65 ++ .../vendored_sdks/_microsoft_support.py | 81 +- .../vendored_sdks/{version.py => _version.py} | 10 +- .../vendored_sdks/aio/__init__.py | 10 + .../vendored_sdks/aio/_configuration.py | 67 ++ .../vendored_sdks/aio/_microsoft_support.py | 84 +++ .../vendored_sdks/aio/operations/__init__.py | 21 + .../operations/_communications_operations.py | 384 ++++++++++ .../aio/operations/_operations.py | 105 +++ .../_problem_classifications_operations.py | 173 +++++ .../aio/operations/_services_operations.py | 165 +++++ .../operations/_support_tickets_operations.py | 453 ++++++++++++ .../vendored_sdks/models/__init__.py | 91 +-- .../models/_microsoft_support_enums.py | 82 ++- .../vendored_sdks/models/_models.py | 627 +++++++++------- .../vendored_sdks/models/_models_py3.py | 695 +++++++++++------- .../vendored_sdks/models/_paged_models.py | 79 -- .../vendored_sdks/operations/__init__.py | 7 +- .../operations/_communications_operations.py | 493 +++++++------ .../vendored_sdks/operations/_operations.py | 122 +-- .../_problem_classifications_operations.py | 209 +++--- .../operations/_services_operations.py | 209 +++--- .../operations/_support_tickets_operations.py | 624 ++++++++-------- .../azext_support/vendored_sdks/py.typed | 1 + src/support/setup.py | 2 +- 32 files changed, 3408 insertions(+), 1578 deletions(-) create mode 100644 src/support/azext_support/vendored_sdks/_metadata.json rename src/support/azext_support/vendored_sdks/{version.py => _version.py} (84%) create mode 100644 src/support/azext_support/vendored_sdks/aio/__init__.py create mode 100644 src/support/azext_support/vendored_sdks/aio/_configuration.py create mode 100644 src/support/azext_support/vendored_sdks/aio/_microsoft_support.py create mode 100644 src/support/azext_support/vendored_sdks/aio/operations/__init__.py create mode 100644 src/support/azext_support/vendored_sdks/aio/operations/_communications_operations.py create mode 100644 src/support/azext_support/vendored_sdks/aio/operations/_operations.py create mode 100644 src/support/azext_support/vendored_sdks/aio/operations/_problem_classifications_operations.py create mode 100644 src/support/azext_support/vendored_sdks/aio/operations/_services_operations.py create mode 100644 src/support/azext_support/vendored_sdks/aio/operations/_support_tickets_operations.py delete mode 100644 src/support/azext_support/vendored_sdks/models/_paged_models.py create mode 100644 src/support/azext_support/vendored_sdks/py.typed diff --git a/src/support/HISTORY.md b/src/support/HISTORY.md index 15c1bc95099..0e9738b59ff 100644 --- a/src/support/HISTORY.md +++ b/src/support/HISTORY.md @@ -1,6 +1,10 @@ Release History =============== +1.0.3 +----- +* Migrate to track 2 SDK + 1.0.2 ----- * Removed custom error message in lieu of error message coming from backend. diff --git a/src/support/azext_support/__init__.py b/src/support/azext_support/__init__.py index 088b4035247..6bf99b581e4 100644 --- a/src/support/azext_support/__init__.py +++ b/src/support/azext_support/__init__.py @@ -16,8 +16,8 @@ def __init__(self, cli_ctx=None): support_custom = CliCommandType( operations_tmpl='azext_support.custom#{}', client_factory=cf_support) - super(SupportCommandsLoader, self).__init__(cli_ctx=cli_ctx, - custom_command_type=support_custom) + super().__init__(cli_ctx=cli_ctx, + custom_command_type=support_custom) def load_command_table(self, args): from azext_support.commands import load_command_table diff --git a/src/support/azext_support/_utils.py b/src/support/azext_support/_utils.py index e80553c9ac6..b13df024134 100644 --- a/src/support/azext_support/_utils.py +++ b/src/support/azext_support/_utils.py @@ -48,8 +48,8 @@ def get_bearer_token(cmd, tenant_id): try: logger.debug("Retrieving access token for tenant %s", tenant_id) creds, _, _ = client.get_raw_token(tenant=tenant_id) - except CLIError: + except CLIError as cli_error: raise CLIError("Can't find authorization for {0}. ".format(tenant_id) + - "Run \'az login -t --allow-no-subscriptions\' and try again.") + "Run \'az login -t --allow-no-subscriptions\' and try again.") from cli_error return "Bearer " + creds[1] diff --git a/src/support/azext_support/_validators.py b/src/support/azext_support/_validators.py index 693d22885aa..092a9e4e571 100644 --- a/src/support/azext_support/_validators.py +++ b/src/support/azext_support/_validators.py @@ -41,15 +41,17 @@ def validate_communication_create(cmd, namespace): def _validate_communication_name(cmd, ticket_name, communication_name): client = cf_communications(cmd.cli_ctx) - rsp = client.check_name_availability(support_ticket_name=ticket_name, name=communication_name, - type="Microsoft.Support/communications") + check_name_availability_input = {"name": communication_name, "type": "Microsoft.Support/communications"} + rsp = client.check_name_availability(support_ticket_name=ticket_name, + check_name_availability_input=check_name_availability_input) if not rsp.name_available: raise CLIError(rsp.message) def _validate_ticket_name(cmd, ticket_name): client = cf_support_tickets(cmd.cli_ctx) - rsp = client.check_name_availability(name=ticket_name, type="Microsoft.Support/supportTickets") + check_name_availability_input = {"name": ticket_name, "type": "Microsoft.Support/supportTickets"} + rsp = client.check_name_availability(check_name_availability_input=check_name_availability_input) if not rsp.name_available: raise CLIError(rsp.message) diff --git a/src/support/azext_support/custom.py b/src/support/azext_support/custom.py index afef2af7fb5..08e594223f9 100644 --- a/src/support/azext_support/custom.py +++ b/src/support/azext_support/custom.py @@ -139,8 +139,8 @@ def create_support_tickets(cmd, client, if partner_tenant_id is not None: custom_headers["x-ms-authorization-auxiliary"] = get_bearer_token(cmd, partner_tenant_id) - return client.create(support_ticket_name=ticket_name, create_support_ticket_parameters=body, - custom_headers=custom_headers) + return client.begin_create(support_ticket_name=ticket_name, create_support_ticket_parameters=body, + custom_headers=custom_headers) def create_support_tickets_communications(cmd, client, @@ -154,5 +154,5 @@ def create_support_tickets_communications(cmd, client, body["subject"] = communication_subject body["body"] = communication_body - return client.create(support_ticket_name=ticket_name, communication_name=communication_name, - create_communication_parameters=body) + return client.begin_create(support_ticket_name=ticket_name, communication_name=communication_name, + create_communication_parameters=body) diff --git a/src/support/azext_support/vendored_sdks/__init__.py b/src/support/azext_support/vendored_sdks/__init__.py index 64979af674b..a6bda323baf 100644 --- a/src/support/azext_support/vendored_sdks/__init__.py +++ b/src/support/azext_support/vendored_sdks/__init__.py @@ -1,19 +1,19 @@ # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# +# Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -from ._configuration import MicrosoftSupportConfiguration from ._microsoft_support import MicrosoftSupport -__all__ = ['MicrosoftSupport', 'MicrosoftSupportConfiguration'] - -from .version import VERSION +from ._version import VERSION __version__ = VERSION +__all__ = ['MicrosoftSupport'] +try: + from ._patch import patch_sdk # type: ignore + patch_sdk() +except ImportError: + pass diff --git a/src/support/azext_support/vendored_sdks/_configuration.py b/src/support/azext_support/vendored_sdks/_configuration.py index 4ff32b9dff0..c9949d76401 100644 --- a/src/support/azext_support/vendored_sdks/_configuration.py +++ b/src/support/azext_support/vendored_sdks/_configuration.py @@ -1,48 +1,71 @@ # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# +# Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -from msrestazure import AzureConfiguration -from .version import VERSION +from typing import TYPE_CHECKING +from azure.core.configuration import Configuration +from azure.core.pipeline import policies +from azure.mgmt.core.policies import ARMHttpLoggingPolicy + +from ._version import VERSION + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from typing import Any + + from azure.core.credentials import TokenCredential + + +class MicrosoftSupportConfiguration(Configuration): + """Configuration for MicrosoftSupport. -class MicrosoftSupportConfiguration(AzureConfiguration): - """Configuration for MicrosoftSupport Note that all parameters used to create this instance are saved as instance attributes. - :param credentials: Credentials needed for the client to connect to Azure. - :type credentials: :mod:`A msrestazure Credentials - object` - :param subscription_id: Azure subscription id + :param credential: Credential needed for the client to connect to Azure. + :type credential: ~azure.core.credentials.TokenCredential + :param subscription_id: Azure subscription Id. :type subscription_id: str - :param str base_url: Service URL """ def __init__( - self, credentials, subscription_id, base_url=None): - - if credentials is None: - raise ValueError("Parameter 'credentials' must not be None.") + self, + credential, # type: "TokenCredential" + subscription_id, # type: str + **kwargs # type: Any + ): + # type: (...) -> None + if credential is None: + raise ValueError("Parameter 'credential' must not be None.") if subscription_id is None: raise ValueError("Parameter 'subscription_id' must not be None.") - if not base_url: - base_url = 'https://management.azure.com' - - super(MicrosoftSupportConfiguration, self).__init__(base_url) - - # Starting Autorest.Python 4.0.64, make connection pool activated by default - self.keep_alive = True + super(MicrosoftSupportConfiguration, self).__init__(**kwargs) - self.add_user_agent('azure-mgmt-support/{}'.format(VERSION)) - self.add_user_agent('Azure-SDK-For-Python') - - self.credentials = credentials + self.credential = credential self.subscription_id = subscription_id + self.api_version = "2020-04-01" + self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default']) + kwargs.setdefault('sdk_moniker', 'mgmt-support/{}'.format(VERSION)) + self._configure(**kwargs) + + def _configure( + self, + **kwargs # type: Any + ): + # type: (...) -> None + self.user_agent_policy = kwargs.get('user_agent_policy') or policies.UserAgentPolicy(**kwargs) + self.headers_policy = kwargs.get('headers_policy') or policies.HeadersPolicy(**kwargs) + self.proxy_policy = kwargs.get('proxy_policy') or policies.ProxyPolicy(**kwargs) + self.logging_policy = kwargs.get('logging_policy') or policies.NetworkTraceLoggingPolicy(**kwargs) + self.http_logging_policy = kwargs.get('http_logging_policy') or ARMHttpLoggingPolicy(**kwargs) + self.retry_policy = kwargs.get('retry_policy') or policies.RetryPolicy(**kwargs) + self.custom_hook_policy = kwargs.get('custom_hook_policy') or policies.CustomHookPolicy(**kwargs) + self.redirect_policy = kwargs.get('redirect_policy') or policies.RedirectPolicy(**kwargs) + self.authentication_policy = kwargs.get('authentication_policy') + if self.credential and not self.authentication_policy: + self.authentication_policy = policies.BearerTokenCredentialPolicy(self.credential, *self.credential_scopes, **kwargs) diff --git a/src/support/azext_support/vendored_sdks/_metadata.json b/src/support/azext_support/vendored_sdks/_metadata.json new file mode 100644 index 00000000000..7e8b87be45d --- /dev/null +++ b/src/support/azext_support/vendored_sdks/_metadata.json @@ -0,0 +1,65 @@ +{ + "chosen_version": "2020-04-01", + "total_api_version_list": ["2020-04-01"], + "client": { + "name": "MicrosoftSupport", + "filename": "_microsoft_support", + "description": "Microsoft Azure Support Resource Provider.", + "base_url": "\u0027https://management.azure.com\u0027", + "custom_base_url": null, + "azure_arm": true, + "has_lro_operations": true, + "client_side_validation": false + }, + "global_parameters": { + "sync": { + "credential": { + "signature": "credential, # type: \"TokenCredential\"", + "description": "Credential needed for the client to connect to Azure.", + "docstring_type": "~azure.core.credentials.TokenCredential", + "required": true + }, + "subscription_id": { + "signature": "subscription_id, # type: str", + "description": "Azure subscription Id.", + "docstring_type": "str", + "required": true + } + }, + "async": { + "credential": { + "signature": "credential, # type: \"AsyncTokenCredential\"", + "description": "Credential needed for the client to connect to Azure.", + "docstring_type": "~azure.core.credentials_async.AsyncTokenCredential", + "required": true + }, + "subscription_id": { + "signature": "subscription_id, # type: str", + "description": "Azure subscription Id.", + "docstring_type": "str", + "required": true + } + }, + "constant": { + }, + "call": "credential, subscription_id" + }, + "config": { + "credential": true, + "credential_scopes": ["https://management.azure.com/.default"], + "credential_default_policy_type": "BearerTokenCredentialPolicy", + "credential_default_policy_type_has_async_version": true, + "credential_key_header_name": null + }, + "operation_groups": { + "operations": "Operations", + "services": "ServicesOperations", + "problem_classifications": "ProblemClassificationsOperations", + "support_tickets": "SupportTicketsOperations", + "communications": "CommunicationsOperations" + }, + "operation_mixins": { + }, + "sync_imports": "None", + "async_imports": "None" +} \ No newline at end of file diff --git a/src/support/azext_support/vendored_sdks/_microsoft_support.py b/src/support/azext_support/vendored_sdks/_microsoft_support.py index 0078a66cd9d..e723ab9dd50 100644 --- a/src/support/azext_support/vendored_sdks/_microsoft_support.py +++ b/src/support/azext_support/vendored_sdks/_microsoft_support.py @@ -1,16 +1,21 @@ # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# +# Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -from msrest.service_client import SDKClient -from msrest import Serializer, Deserializer +from typing import TYPE_CHECKING + +from azure.mgmt.core import ARMPipelineClient +from msrest import Deserializer, Serializer + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from typing import Any, Optional + + from azure.core.credentials import TokenCredential from ._configuration import MicrosoftSupportConfiguration from .operations import Operations @@ -21,49 +26,65 @@ from . import models -class MicrosoftSupport(SDKClient): +class MicrosoftSupport(object): """Microsoft Azure Support Resource Provider. - :ivar config: Configuration for client. - :vartype config: MicrosoftSupportConfiguration - :ivar operations: Operations operations :vartype operations: azure.mgmt.support.operations.Operations - :ivar services: Services operations + :ivar services: ServicesOperations operations :vartype services: azure.mgmt.support.operations.ServicesOperations - :ivar problem_classifications: ProblemClassifications operations + :ivar problem_classifications: ProblemClassificationsOperations operations :vartype problem_classifications: azure.mgmt.support.operations.ProblemClassificationsOperations - :ivar support_tickets: SupportTickets operations + :ivar support_tickets: SupportTicketsOperations operations :vartype support_tickets: azure.mgmt.support.operations.SupportTicketsOperations - :ivar communications: Communications operations + :ivar communications: CommunicationsOperations operations :vartype communications: azure.mgmt.support.operations.CommunicationsOperations - - :param credentials: Credentials needed for the client to connect to Azure. - :type credentials: :mod:`A msrestazure Credentials - object` - :param subscription_id: Azure subscription id + :param credential: Credential needed for the client to connect to Azure. + :type credential: ~azure.core.credentials.TokenCredential + :param subscription_id: Azure subscription Id. :type subscription_id: str :param str base_url: Service URL + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. """ def __init__( - self, credentials, subscription_id, base_url=None): - - self.config = MicrosoftSupportConfiguration(credentials, subscription_id, base_url) - super(MicrosoftSupport, self).__init__(self.config.credentials, self.config) + self, + credential, # type: "TokenCredential" + subscription_id, # type: str + base_url=None, # type: Optional[str] + **kwargs # type: Any + ): + # type: (...) -> None + if not base_url: + base_url = 'https://management.azure.com' + self._config = MicrosoftSupportConfiguration(credential, subscription_id, **kwargs) + self._client = ARMPipelineClient(base_url=base_url, config=self._config, **kwargs) client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} - self.api_version = '2020-04-01' self._serialize = Serializer(client_models) + self._serialize.client_side_validation = False self._deserialize = Deserializer(client_models) self.operations = Operations( - self._client, self.config, self._serialize, self._deserialize) + self._client, self._config, self._serialize, self._deserialize) self.services = ServicesOperations( - self._client, self.config, self._serialize, self._deserialize) + self._client, self._config, self._serialize, self._deserialize) self.problem_classifications = ProblemClassificationsOperations( - self._client, self.config, self._serialize, self._deserialize) + self._client, self._config, self._serialize, self._deserialize) self.support_tickets = SupportTicketsOperations( - self._client, self.config, self._serialize, self._deserialize) + self._client, self._config, self._serialize, self._deserialize) self.communications = CommunicationsOperations( - self._client, self.config, self._serialize, self._deserialize) + self._client, self._config, self._serialize, self._deserialize) + + def close(self): + # type: () -> None + self._client.close() + + def __enter__(self): + # type: () -> MicrosoftSupport + self._client.__enter__() + return self + + def __exit__(self, *exc_details): + # type: (Any) -> None + self._client.__exit__(*exc_details) diff --git a/src/support/azext_support/vendored_sdks/version.py b/src/support/azext_support/vendored_sdks/_version.py similarity index 84% rename from src/support/azext_support/vendored_sdks/version.py rename to src/support/azext_support/vendored_sdks/_version.py index a39916c162c..caf312bd2d0 100644 --- a/src/support/azext_support/vendored_sdks/version.py +++ b/src/support/azext_support/vendored_sdks/_version.py @@ -1,13 +1,9 @@ # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# +# Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -VERSION = "1.0.0" - +VERSION = "6.0.0" diff --git a/src/support/azext_support/vendored_sdks/aio/__init__.py b/src/support/azext_support/vendored_sdks/aio/__init__.py new file mode 100644 index 00000000000..72e51539a15 --- /dev/null +++ b/src/support/azext_support/vendored_sdks/aio/__init__.py @@ -0,0 +1,10 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from ._microsoft_support import MicrosoftSupport +__all__ = ['MicrosoftSupport'] diff --git a/src/support/azext_support/vendored_sdks/aio/_configuration.py b/src/support/azext_support/vendored_sdks/aio/_configuration.py new file mode 100644 index 00000000000..8982ea2f383 --- /dev/null +++ b/src/support/azext_support/vendored_sdks/aio/_configuration.py @@ -0,0 +1,67 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from typing import Any, TYPE_CHECKING + +from azure.core.configuration import Configuration +from azure.core.pipeline import policies +from azure.mgmt.core.policies import ARMHttpLoggingPolicy + +from .._version import VERSION + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from azure.core.credentials_async import AsyncTokenCredential + + +class MicrosoftSupportConfiguration(Configuration): + """Configuration for MicrosoftSupport. + + Note that all parameters used to create this instance are saved as instance + attributes. + + :param credential: Credential needed for the client to connect to Azure. + :type credential: ~azure.core.credentials_async.AsyncTokenCredential + :param subscription_id: Azure subscription Id. + :type subscription_id: str + """ + + def __init__( + self, + credential: "AsyncTokenCredential", + subscription_id: str, + **kwargs: Any + ) -> None: + if credential is None: + raise ValueError("Parameter 'credential' must not be None.") + if subscription_id is None: + raise ValueError("Parameter 'subscription_id' must not be None.") + super(MicrosoftSupportConfiguration, self).__init__(**kwargs) + + self.credential = credential + self.subscription_id = subscription_id + self.api_version = "2020-04-01" + self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default']) + kwargs.setdefault('sdk_moniker', 'mgmt-support/{}'.format(VERSION)) + self._configure(**kwargs) + + def _configure( + self, + **kwargs: Any + ) -> None: + self.user_agent_policy = kwargs.get('user_agent_policy') or policies.UserAgentPolicy(**kwargs) + self.headers_policy = kwargs.get('headers_policy') or policies.HeadersPolicy(**kwargs) + self.proxy_policy = kwargs.get('proxy_policy') or policies.ProxyPolicy(**kwargs) + self.logging_policy = kwargs.get('logging_policy') or policies.NetworkTraceLoggingPolicy(**kwargs) + self.http_logging_policy = kwargs.get('http_logging_policy') or ARMHttpLoggingPolicy(**kwargs) + self.retry_policy = kwargs.get('retry_policy') or policies.AsyncRetryPolicy(**kwargs) + self.custom_hook_policy = kwargs.get('custom_hook_policy') or policies.CustomHookPolicy(**kwargs) + self.redirect_policy = kwargs.get('redirect_policy') or policies.AsyncRedirectPolicy(**kwargs) + self.authentication_policy = kwargs.get('authentication_policy') + if self.credential and not self.authentication_policy: + self.authentication_policy = policies.AsyncBearerTokenCredentialPolicy(self.credential, *self.credential_scopes, **kwargs) diff --git a/src/support/azext_support/vendored_sdks/aio/_microsoft_support.py b/src/support/azext_support/vendored_sdks/aio/_microsoft_support.py new file mode 100644 index 00000000000..46929739a71 --- /dev/null +++ b/src/support/azext_support/vendored_sdks/aio/_microsoft_support.py @@ -0,0 +1,84 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from typing import Any, Optional, TYPE_CHECKING + +from azure.mgmt.core import AsyncARMPipelineClient +from msrest import Deserializer, Serializer + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from azure.core.credentials_async import AsyncTokenCredential + +from ._configuration import MicrosoftSupportConfiguration +from .operations import Operations +from .operations import ServicesOperations +from .operations import ProblemClassificationsOperations +from .operations import SupportTicketsOperations +from .operations import CommunicationsOperations +from .. import models + + +class MicrosoftSupport(object): + """Microsoft Azure Support Resource Provider. + + :ivar operations: Operations operations + :vartype operations: azure.mgmt.support.aio.operations.Operations + :ivar services: ServicesOperations operations + :vartype services: azure.mgmt.support.aio.operations.ServicesOperations + :ivar problem_classifications: ProblemClassificationsOperations operations + :vartype problem_classifications: azure.mgmt.support.aio.operations.ProblemClassificationsOperations + :ivar support_tickets: SupportTicketsOperations operations + :vartype support_tickets: azure.mgmt.support.aio.operations.SupportTicketsOperations + :ivar communications: CommunicationsOperations operations + :vartype communications: azure.mgmt.support.aio.operations.CommunicationsOperations + :param credential: Credential needed for the client to connect to Azure. + :type credential: ~azure.core.credentials_async.AsyncTokenCredential + :param subscription_id: Azure subscription Id. + :type subscription_id: str + :param str base_url: Service URL + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + """ + + def __init__( + self, + credential: "AsyncTokenCredential", + subscription_id: str, + base_url: Optional[str] = None, + **kwargs: Any + ) -> None: + if not base_url: + base_url = 'https://management.azure.com' + self._config = MicrosoftSupportConfiguration(credential, subscription_id, **kwargs) + self._client = AsyncARMPipelineClient(base_url=base_url, config=self._config, **kwargs) + + client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} + self._serialize = Serializer(client_models) + self._serialize.client_side_validation = False + self._deserialize = Deserializer(client_models) + + self.operations = Operations( + self._client, self._config, self._serialize, self._deserialize) + self.services = ServicesOperations( + self._client, self._config, self._serialize, self._deserialize) + self.problem_classifications = ProblemClassificationsOperations( + self._client, self._config, self._serialize, self._deserialize) + self.support_tickets = SupportTicketsOperations( + self._client, self._config, self._serialize, self._deserialize) + self.communications = CommunicationsOperations( + self._client, self._config, self._serialize, self._deserialize) + + async def close(self) -> None: + await self._client.close() + + async def __aenter__(self) -> "MicrosoftSupport": + await self._client.__aenter__() + return self + + async def __aexit__(self, *exc_details) -> None: + await self._client.__aexit__(*exc_details) diff --git a/src/support/azext_support/vendored_sdks/aio/operations/__init__.py b/src/support/azext_support/vendored_sdks/aio/operations/__init__.py new file mode 100644 index 00000000000..74df2821173 --- /dev/null +++ b/src/support/azext_support/vendored_sdks/aio/operations/__init__.py @@ -0,0 +1,21 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from ._operations import Operations +from ._services_operations import ServicesOperations +from ._problem_classifications_operations import ProblemClassificationsOperations +from ._support_tickets_operations import SupportTicketsOperations +from ._communications_operations import CommunicationsOperations + +__all__ = [ + 'Operations', + 'ServicesOperations', + 'ProblemClassificationsOperations', + 'SupportTicketsOperations', + 'CommunicationsOperations', +] diff --git a/src/support/azext_support/vendored_sdks/aio/operations/_communications_operations.py b/src/support/azext_support/vendored_sdks/aio/operations/_communications_operations.py new file mode 100644 index 00000000000..afd580234b3 --- /dev/null +++ b/src/support/azext_support/vendored_sdks/aio/operations/_communications_operations.py @@ -0,0 +1,384 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, AsyncIterable, Callable, Dict, Generic, Optional, TypeVar, Union +import warnings + +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse, HttpRequest +from azure.core.polling import AsyncLROPoller, AsyncNoPolling, AsyncPollingMethod +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling + +from ... import models as _models + +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + +class CommunicationsOperations: + """CommunicationsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.support.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def check_name_availability( + self, + support_ticket_name: str, + check_name_availability_input: "_models.CheckNameAvailabilityInput", + **kwargs + ) -> "_models.CheckNameAvailabilityOutput": + """Check the availability of a resource name. This API should be used to check the uniqueness of + the name for adding a new communication to the support ticket. + + :param support_ticket_name: Support ticket name. + :type support_ticket_name: str + :param check_name_availability_input: Input to check. + :type check_name_availability_input: ~azure.mgmt.support.models.CheckNameAvailabilityInput + :keyword callable cls: A custom type or function that will be passed the direct response + :return: CheckNameAvailabilityOutput, or the result of cls(response) + :rtype: ~azure.mgmt.support.models.CheckNameAvailabilityOutput + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.CheckNameAvailabilityOutput"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-04-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self.check_name_availability.metadata['url'] # type: ignore + path_format_arguments = { + 'supportTicketName': self._serialize.url("support_ticket_name", support_ticket_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(check_name_availability_input, 'CheckNameAvailabilityInput') + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(_models.ExceptionResponse, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('CheckNameAvailabilityOutput', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + check_name_availability.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}/checkNameAvailability'} # type: ignore + + def list( + self, + support_ticket_name: str, + top: Optional[int] = None, + filter: Optional[str] = None, + **kwargs + ) -> AsyncIterable["_models.CommunicationsListResult"]: + """Lists all communications (attachments not included) for a support ticket. :code:`
`
+ You can also filter support ticket communications by *CreatedDate* or *CommunicationType* using + the $filter parameter. The only type of communication supported today is *Web*. Output will be + a paged result with *nextLink*\ , using which you can retrieve the next set of Communication + results. :code:`
`:code:`
`Support ticket data is available for 18 months after ticket + creation. If a ticket was created more than 18 months ago, a request for data might cause an + error. + + :param support_ticket_name: Support ticket name. + :type support_ticket_name: str + :param top: The number of values to return in the collection. Default is 10 and max is 10. + :type top: int + :param filter: The filter to apply on the operation. You can filter by communicationType and + createdDate properties. CommunicationType supports Equals ('eq') operator and createdDate + supports Greater Than ('gt') and Greater Than or Equals ('ge') operators. You may combine the + CommunicationType and CreatedDate filters by Logical And ('and') operator. + :type filter: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either CommunicationsListResult or the result of cls(response) + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.support.models.CommunicationsListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.CommunicationsListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-04-01" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list.metadata['url'] # type: ignore + path_format_arguments = { + 'supportTicketName': self._serialize.url("support_ticket_name", support_ticket_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + if top is not None: + query_parameters['$top'] = self._serialize.query("top", top, 'int') + if filter is not None: + query_parameters['$filter'] = self._serialize.query("filter", filter, 'str') + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize('CommunicationsListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + error = self._deserialize(_models.ExceptionResponse, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}/communications'} # type: ignore + + async def get( + self, + support_ticket_name: str, + communication_name: str, + **kwargs + ) -> "_models.CommunicationDetails": + """Returns communication details for a support ticket. + + :param support_ticket_name: Support ticket name. + :type support_ticket_name: str + :param communication_name: Communication name. + :type communication_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: CommunicationDetails, or the result of cls(response) + :rtype: ~azure.mgmt.support.models.CommunicationDetails + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.CommunicationDetails"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-04-01" + accept = "application/json" + + # Construct URL + url = self.get.metadata['url'] # type: ignore + path_format_arguments = { + 'supportTicketName': self._serialize.url("support_ticket_name", support_ticket_name, 'str'), + 'communicationName': self._serialize.url("communication_name", communication_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(_models.ExceptionResponse, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('CommunicationDetails', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}/communications/{communicationName}'} # type: ignore + + async def _create_initial( + self, + support_ticket_name: str, + communication_name: str, + create_communication_parameters: "_models.CommunicationDetails", + **kwargs + ) -> Optional["_models.CommunicationDetails"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.CommunicationDetails"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-04-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._create_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'supportTicketName': self._serialize.url("support_ticket_name", support_ticket_name, 'str'), + 'communicationName': self._serialize.url("communication_name", communication_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(create_communication_parameters, 'CommunicationDetails') + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(_models.ExceptionResponse, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('CommunicationDetails', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + _create_initial.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}/communications/{communicationName}'} # type: ignore + + async def begin_create( + self, + support_ticket_name: str, + communication_name: str, + create_communication_parameters: "_models.CommunicationDetails", + **kwargs + ) -> AsyncLROPoller["_models.CommunicationDetails"]: + """Adds a new customer communication to an Azure support ticket. + + :param support_ticket_name: Support ticket name. + :type support_ticket_name: str + :param communication_name: Communication name. + :type communication_name: str + :param create_communication_parameters: Communication object. + :type create_communication_parameters: ~azure.mgmt.support.models.CommunicationDetails + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either CommunicationDetails or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.support.models.CommunicationDetails] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.CommunicationDetails"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_initial( + support_ticket_name=support_ticket_name, + communication_name=communication_name, + create_communication_parameters=create_communication_parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('CommunicationDetails', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + path_format_arguments = { + 'supportTicketName': self._serialize.url("support_ticket_name", support_ticket_name, 'str'), + 'communicationName': self._serialize.url("communication_name", communication_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_create.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}/communications/{communicationName}'} # type: ignore diff --git a/src/support/azext_support/vendored_sdks/aio/operations/_operations.py b/src/support/azext_support/vendored_sdks/aio/operations/_operations.py new file mode 100644 index 00000000000..5fae6d0ab68 --- /dev/null +++ b/src/support/azext_support/vendored_sdks/aio/operations/_operations.py @@ -0,0 +1,105 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, AsyncIterable, Callable, Dict, Generic, Optional, TypeVar +import warnings + +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse, HttpRequest +from azure.mgmt.core.exceptions import ARMErrorFormat + +from ... import models as _models + +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + +class Operations: + """Operations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.support.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def list( + self, + **kwargs + ) -> AsyncIterable["_models.OperationsListResult"]: + """This lists all the available Microsoft Support REST API operations. + + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either OperationsListResult or the result of cls(response) + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.support.models.OperationsListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.OperationsListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-04-01" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list.metadata['url'] # type: ignore + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize('OperationsListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + error = self._deserialize(_models.ExceptionResponse, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': '/providers/Microsoft.Support/operations'} # type: ignore diff --git a/src/support/azext_support/vendored_sdks/aio/operations/_problem_classifications_operations.py b/src/support/azext_support/vendored_sdks/aio/operations/_problem_classifications_operations.py new file mode 100644 index 00000000000..7730a3b18df --- /dev/null +++ b/src/support/azext_support/vendored_sdks/aio/operations/_problem_classifications_operations.py @@ -0,0 +1,173 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, AsyncIterable, Callable, Dict, Generic, Optional, TypeVar +import warnings + +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse, HttpRequest +from azure.mgmt.core.exceptions import ARMErrorFormat + +from ... import models as _models + +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + +class ProblemClassificationsOperations: + """ProblemClassificationsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.support.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def list( + self, + service_name: str, + **kwargs + ) -> AsyncIterable["_models.ProblemClassificationsListResult"]: + """Lists all the problem classifications (categories) available for a specific Azure service. + Always use the service and problem classifications obtained programmatically. This practice + ensures that you always have the most recent set of service and problem classification Ids. + + :param service_name: Name of the Azure service for which the problem classifications need to be + retrieved. + :type service_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ProblemClassificationsListResult or the result of cls(response) + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.support.models.ProblemClassificationsListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ProblemClassificationsListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-04-01" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list.metadata['url'] # type: ignore + path_format_arguments = { + 'serviceName': self._serialize.url("service_name", service_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize('ProblemClassificationsListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + error = self._deserialize(_models.ExceptionResponse, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': '/providers/Microsoft.Support/services/{serviceName}/problemClassifications'} # type: ignore + + async def get( + self, + service_name: str, + problem_classification_name: str, + **kwargs + ) -> "_models.ProblemClassification": + """Get problem classification details for a specific Azure service. + + :param service_name: Name of the Azure service available for support. + :type service_name: str + :param problem_classification_name: Name of problem classification. + :type problem_classification_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ProblemClassification, or the result of cls(response) + :rtype: ~azure.mgmt.support.models.ProblemClassification + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ProblemClassification"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-04-01" + accept = "application/json" + + # Construct URL + url = self.get.metadata['url'] # type: ignore + path_format_arguments = { + 'serviceName': self._serialize.url("service_name", service_name, 'str'), + 'problemClassificationName': self._serialize.url("problem_classification_name", problem_classification_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(_models.ExceptionResponse, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ProblemClassification', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get.metadata = {'url': '/providers/Microsoft.Support/services/{serviceName}/problemClassifications/{problemClassificationName}'} # type: ignore diff --git a/src/support/azext_support/vendored_sdks/aio/operations/_services_operations.py b/src/support/azext_support/vendored_sdks/aio/operations/_services_operations.py new file mode 100644 index 00000000000..441180b97da --- /dev/null +++ b/src/support/azext_support/vendored_sdks/aio/operations/_services_operations.py @@ -0,0 +1,165 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, AsyncIterable, Callable, Dict, Generic, Optional, TypeVar +import warnings + +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse, HttpRequest +from azure.mgmt.core.exceptions import ARMErrorFormat + +from ... import models as _models + +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + +class ServicesOperations: + """ServicesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.support.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def list( + self, + **kwargs + ) -> AsyncIterable["_models.ServicesListResult"]: + """Lists all the Azure services available for support ticket creation. For **Technical** issues, + select the Service Id that maps to the Azure service/product as displayed in the **Services** + drop-down list on the Azure portal's `New support request + `_ page. + Always use the service and its corresponding problem classification(s) obtained + programmatically for support ticket creation. This practice ensures that you always have the + most recent set of service and problem classification Ids. + + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ServicesListResult or the result of cls(response) + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.support.models.ServicesListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ServicesListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-04-01" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list.metadata['url'] # type: ignore + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize('ServicesListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + error = self._deserialize(_models.ExceptionResponse, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': '/providers/Microsoft.Support/services'} # type: ignore + + async def get( + self, + service_name: str, + **kwargs + ) -> "_models.Service": + """Gets a specific Azure service for support ticket creation. + + :param service_name: Name of the Azure service. + :type service_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Service, or the result of cls(response) + :rtype: ~azure.mgmt.support.models.Service + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.Service"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-04-01" + accept = "application/json" + + # Construct URL + url = self.get.metadata['url'] # type: ignore + path_format_arguments = { + 'serviceName': self._serialize.url("service_name", service_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(_models.ExceptionResponse, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('Service', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get.metadata = {'url': '/providers/Microsoft.Support/services/{serviceName}'} # type: ignore diff --git a/src/support/azext_support/vendored_sdks/aio/operations/_support_tickets_operations.py b/src/support/azext_support/vendored_sdks/aio/operations/_support_tickets_operations.py new file mode 100644 index 00000000000..47079757bd3 --- /dev/null +++ b/src/support/azext_support/vendored_sdks/aio/operations/_support_tickets_operations.py @@ -0,0 +1,453 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, AsyncIterable, Callable, Dict, Generic, Optional, TypeVar, Union +import warnings + +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse, HttpRequest +from azure.core.polling import AsyncLROPoller, AsyncNoPolling, AsyncPollingMethod +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling + +from ... import models as _models + +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + +class SupportTicketsOperations: + """SupportTicketsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.support.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def check_name_availability( + self, + check_name_availability_input: "_models.CheckNameAvailabilityInput", + **kwargs + ) -> "_models.CheckNameAvailabilityOutput": + """Check the availability of a resource name. This API should be used to check the uniqueness of + the name for support ticket creation for the selected subscription. + + :param check_name_availability_input: Input to check. + :type check_name_availability_input: ~azure.mgmt.support.models.CheckNameAvailabilityInput + :keyword callable cls: A custom type or function that will be passed the direct response + :return: CheckNameAvailabilityOutput, or the result of cls(response) + :rtype: ~azure.mgmt.support.models.CheckNameAvailabilityOutput + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.CheckNameAvailabilityOutput"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-04-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self.check_name_availability.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(check_name_availability_input, 'CheckNameAvailabilityInput') + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(_models.ExceptionResponse, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('CheckNameAvailabilityOutput', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + check_name_availability.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Support/checkNameAvailability'} # type: ignore + + def list( + self, + top: Optional[int] = None, + filter: Optional[str] = None, + **kwargs + ) -> AsyncIterable["_models.SupportTicketsListResult"]: + """Lists all the support tickets for an Azure subscription. You can also filter the support + tickets by *Status* or *CreatedDate* using the $filter parameter. Output will be a paged result + with *nextLink*\ , using which you can retrieve the next set of support tickets. + :code:`
`:code:`
`Support ticket data is available for 18 months after ticket creation. + If a ticket was created more than 18 months ago, a request for data might cause an error. + + :param top: The number of values to return in the collection. Default is 25 and max is 100. + :type top: int + :param filter: The filter to apply on the operation. We support 'odata v4.0' filter semantics. + `Learn more `_. *Status* + filter can only be used with Equals ('eq') operator. For *CreatedDate* filter, the supported + operators are Greater Than ('gt') and Greater Than or Equals ('ge'). When using both filters, + combine them using the logical 'AND'. + :type filter: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either SupportTicketsListResult or the result of cls(response) + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.support.models.SupportTicketsListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.SupportTicketsListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-04-01" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + if top is not None: + query_parameters['$top'] = self._serialize.query("top", top, 'int') + if filter is not None: + query_parameters['$filter'] = self._serialize.query("filter", filter, 'str') + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize('SupportTicketsListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + error = self._deserialize(_models.ExceptionResponse, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets'} # type: ignore + + async def get( + self, + support_ticket_name: str, + **kwargs + ) -> "_models.SupportTicketDetails": + """Get ticket details for an Azure subscription. Support ticket data is available for 18 months + after ticket creation. If a ticket was created more than 18 months ago, a request for data + might cause an error. + + :param support_ticket_name: Support ticket name. + :type support_ticket_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: SupportTicketDetails, or the result of cls(response) + :rtype: ~azure.mgmt.support.models.SupportTicketDetails + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.SupportTicketDetails"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-04-01" + accept = "application/json" + + # Construct URL + url = self.get.metadata['url'] # type: ignore + path_format_arguments = { + 'supportTicketName': self._serialize.url("support_ticket_name", support_ticket_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(_models.ExceptionResponse, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('SupportTicketDetails', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}'} # type: ignore + + async def update( + self, + support_ticket_name: str, + update_support_ticket: "_models.UpdateSupportTicket", + **kwargs + ) -> "_models.SupportTicketDetails": + """This API allows you to update the severity level, ticket status, and your contact information + in the support ticket.:code:`
`:code:`
`Note: The severity levels cannot be changed if + a support ticket is actively being worked upon by an Azure support engineer. In such a case, + contact your support engineer to request severity update by adding a new communication using + the Communications API.:code:`
`:code:`
`Changing the ticket status to *closed* is + allowed only on an unassigned case. When an engineer is actively working on the ticket, send + your ticket closure request by sending a note to your engineer. + + :param support_ticket_name: Support ticket name. + :type support_ticket_name: str + :param update_support_ticket: UpdateSupportTicket object. + :type update_support_ticket: ~azure.mgmt.support.models.UpdateSupportTicket + :keyword callable cls: A custom type or function that will be passed the direct response + :return: SupportTicketDetails, or the result of cls(response) + :rtype: ~azure.mgmt.support.models.SupportTicketDetails + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.SupportTicketDetails"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-04-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self.update.metadata['url'] # type: ignore + path_format_arguments = { + 'supportTicketName': self._serialize.url("support_ticket_name", support_ticket_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(update_support_ticket, 'UpdateSupportTicket') + body_content_kwargs['content'] = body_content + request = self._client.patch(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(_models.ExceptionResponse, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('SupportTicketDetails', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + update.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}'} # type: ignore + + async def _create_initial( + self, + support_ticket_name: str, + create_support_ticket_parameters: "_models.SupportTicketDetails", + **kwargs + ) -> Optional["_models.SupportTicketDetails"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.SupportTicketDetails"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-04-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._create_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'supportTicketName': self._serialize.url("support_ticket_name", support_ticket_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(create_support_ticket_parameters, 'SupportTicketDetails') + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(_models.ExceptionResponse, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('SupportTicketDetails', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + _create_initial.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}'} # type: ignore + + async def begin_create( + self, + support_ticket_name: str, + create_support_ticket_parameters: "_models.SupportTicketDetails", + **kwargs + ) -> AsyncLROPoller["_models.SupportTicketDetails"]: + """Creates a new support ticket for Subscription and Service limits (Quota), Technical, Billing, + and Subscription Management issues for the specified subscription. Learn the `prerequisites + `_ required to create a support + ticket.:code:`
`:code:`
`Always call the Services and ProblemClassifications API to get + the most recent set of services and problem categories required for support ticket + creation.:code:`
`:code:`
`Adding attachments is not currently supported via the API. + To add a file to an existing support ticket, visit the `Manage support ticket + `_ + page in the Azure portal, select the support ticket, and use the file upload control to add a + new file.:code:`
`:code:`
`Providing consent to share diagnostic information with Azure + support is currently not supported via the API. The Azure support engineer working on your + ticket will reach out to you for consent if your issue requires gathering diagnostic + information from your Azure resources.:code:`
`:code:`
`\ **Creating a support ticket + for on-behalf-of**\ : Include *x-ms-authorization-auxiliary* header to provide an auxiliary + token as per `documentation `_. The primary token will be from the tenant for + whom a support ticket is being raised against the subscription, i.e. Cloud solution provider + (CSP) customer tenant. The auxiliary token will be from the Cloud solution provider (CSP) + partner tenant. + + :param support_ticket_name: Support ticket name. + :type support_ticket_name: str + :param create_support_ticket_parameters: Support ticket request payload. + :type create_support_ticket_parameters: ~azure.mgmt.support.models.SupportTicketDetails + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either SupportTicketDetails or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.support.models.SupportTicketDetails] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.SupportTicketDetails"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_initial( + support_ticket_name=support_ticket_name, + create_support_ticket_parameters=create_support_ticket_parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('SupportTicketDetails', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + path_format_arguments = { + 'supportTicketName': self._serialize.url("support_ticket_name", support_ticket_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_create.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}'} # type: ignore diff --git a/src/support/azext_support/vendored_sdks/models/__init__.py b/src/support/azext_support/vendored_sdks/models/__init__.py index 6da20f4af9c..f988a47f40b 100644 --- a/src/support/azext_support/vendored_sdks/models/__init__.py +++ b/src/support/azext_support/vendored_sdks/models/__init__.py @@ -1,97 +1,100 @@ # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# +# Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- try: from ._models_py3 import CheckNameAvailabilityInput from ._models_py3 import CheckNameAvailabilityOutput from ._models_py3 import CommunicationDetails + from ._models_py3 import CommunicationsListResult from ._models_py3 import ContactProfile - from ._models_py3 import ExceptionResponse, ExceptionResponseException + from ._models_py3 import ExceptionResponse from ._models_py3 import Operation from ._models_py3 import OperationDisplay + from ._models_py3 import OperationsListResult from ._models_py3 import ProblemClassification + from ._models_py3 import ProblemClassificationsListResult from ._models_py3 import QuotaChangeRequest from ._models_py3 import QuotaTicketDetails from ._models_py3 import Service from ._models_py3 import ServiceError from ._models_py3 import ServiceErrorDetail from ._models_py3 import ServiceLevelAgreement + from ._models_py3 import ServicesListResult from ._models_py3 import SupportEngineer from ._models_py3 import SupportTicketDetails + from ._models_py3 import SupportTicketsListResult from ._models_py3 import TechnicalTicketDetails from ._models_py3 import UpdateContactProfile from ._models_py3 import UpdateSupportTicket except (SyntaxError, ImportError): - from ._models import CheckNameAvailabilityInput - from ._models import CheckNameAvailabilityOutput - from ._models import CommunicationDetails - from ._models import ContactProfile - from ._models import ExceptionResponse, ExceptionResponseException - from ._models import Operation - from ._models import OperationDisplay - from ._models import ProblemClassification - from ._models import QuotaChangeRequest - from ._models import QuotaTicketDetails - from ._models import Service - from ._models import ServiceError - from ._models import ServiceErrorDetail - from ._models import ServiceLevelAgreement - from ._models import SupportEngineer - from ._models import SupportTicketDetails - from ._models import TechnicalTicketDetails - from ._models import UpdateContactProfile - from ._models import UpdateSupportTicket -from ._paged_models import CommunicationDetailsPaged -from ._paged_models import OperationPaged -from ._paged_models import ProblemClassificationPaged -from ._paged_models import ServicePaged -from ._paged_models import SupportTicketDetailsPaged + from ._models import CheckNameAvailabilityInput # type: ignore + from ._models import CheckNameAvailabilityOutput # type: ignore + from ._models import CommunicationDetails # type: ignore + from ._models import CommunicationsListResult # type: ignore + from ._models import ContactProfile # type: ignore + from ._models import ExceptionResponse # type: ignore + from ._models import Operation # type: ignore + from ._models import OperationDisplay # type: ignore + from ._models import OperationsListResult # type: ignore + from ._models import ProblemClassification # type: ignore + from ._models import ProblemClassificationsListResult # type: ignore + from ._models import QuotaChangeRequest # type: ignore + from ._models import QuotaTicketDetails # type: ignore + from ._models import Service # type: ignore + from ._models import ServiceError # type: ignore + from ._models import ServiceErrorDetail # type: ignore + from ._models import ServiceLevelAgreement # type: ignore + from ._models import ServicesListResult # type: ignore + from ._models import SupportEngineer # type: ignore + from ._models import SupportTicketDetails # type: ignore + from ._models import SupportTicketsListResult # type: ignore + from ._models import TechnicalTicketDetails # type: ignore + from ._models import UpdateContactProfile # type: ignore + from ._models import UpdateSupportTicket # type: ignore + from ._microsoft_support_enums import ( - Type, - SeverityLevel, - PreferredContactMethod, - CommunicationType, CommunicationDirection, + CommunicationType, + PreferredContactMethod, + SeverityLevel, Status, + Type, ) __all__ = [ 'CheckNameAvailabilityInput', 'CheckNameAvailabilityOutput', 'CommunicationDetails', + 'CommunicationsListResult', 'ContactProfile', - 'ExceptionResponse', 'ExceptionResponseException', + 'ExceptionResponse', 'Operation', 'OperationDisplay', + 'OperationsListResult', 'ProblemClassification', + 'ProblemClassificationsListResult', 'QuotaChangeRequest', 'QuotaTicketDetails', 'Service', 'ServiceError', 'ServiceErrorDetail', 'ServiceLevelAgreement', + 'ServicesListResult', 'SupportEngineer', 'SupportTicketDetails', + 'SupportTicketsListResult', 'TechnicalTicketDetails', 'UpdateContactProfile', 'UpdateSupportTicket', - 'OperationPaged', - 'ServicePaged', - 'ProblemClassificationPaged', - 'SupportTicketDetailsPaged', - 'CommunicationDetailsPaged', - 'Type', - 'SeverityLevel', - 'PreferredContactMethod', - 'CommunicationType', 'CommunicationDirection', + 'CommunicationType', + 'PreferredContactMethod', + 'SeverityLevel', 'Status', + 'Type', ] diff --git a/src/support/azext_support/vendored_sdks/models/_microsoft_support_enums.py b/src/support/azext_support/vendored_sdks/models/_microsoft_support_enums.py index e0ae5599205..dd243534cf7 100644 --- a/src/support/azext_support/vendored_sdks/models/_microsoft_support_enums.py +++ b/src/support/azext_support/vendored_sdks/models/_microsoft_support_enums.py @@ -1,50 +1,74 @@ # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# +# Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -from enum import Enum +from enum import Enum, EnumMeta +from six import with_metaclass +class _CaseInsensitiveEnumMeta(EnumMeta): + def __getitem__(self, name): + return super().__getitem__(name.upper()) -class Type(str, Enum): + def __getattr__(cls, name): + """Return the enum member matching `name` + We use __getattr__ instead of descriptors or inserting into the enum + class' __dict__ in order to support `name` and `value` being both + properties for enum members (which live in the class' __dict__) and + enum members themselves. + """ + try: + return cls._member_map_[name.upper()] + except KeyError: + raise AttributeError(name) - microsoft_supportsupport_tickets = "Microsoft.Support/supportTickets" - microsoft_supportcommunications = "Microsoft.Support/communications" +class CommunicationDirection(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """Direction of communication. + """ -class SeverityLevel(str, Enum): + INBOUND = "inbound" + OUTBOUND = "outbound" - minimal = "minimal" - moderate = "moderate" - critical = "critical" - highestcriticalimpact = "highestcriticalimpact" +class CommunicationType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """Communication type. + """ + WEB = "web" + PHONE = "phone" -class PreferredContactMethod(str, Enum): +class PreferredContactMethod(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """Preferred contact method. + """ - email = "email" - phone = "phone" + EMAIL = "email" + PHONE = "phone" +class SeverityLevel(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """A value that indicates the urgency of the case, which in turn determines the response time + according to the service level agreement of the technical support plan you have with Azure. + Note: 'Highest critical impact', also known as the 'Emergency - Severe impact' level in the + Azure portal is reserved only for our Premium customers. + """ -class CommunicationType(str, Enum): + MINIMAL = "minimal" + MODERATE = "moderate" + CRITICAL = "critical" + HIGHESTCRITICALIMPACT = "highestcriticalimpact" - web = "web" - phone = "phone" +class Status(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """Status to be updated on the ticket. + """ + OPEN = "open" + CLOSED = "closed" -class CommunicationDirection(str, Enum): +class Type(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """The type of resource. + """ - inbound = "inbound" - outbound = "outbound" - - -class Status(str, Enum): - - open = "open" - closed = "closed" + MICROSOFT_SUPPORT_SUPPORT_TICKETS = "Microsoft.Support/supportTickets" + MICROSOFT_SUPPORT_COMMUNICATIONS = "Microsoft.Support/communications" diff --git a/src/support/azext_support/vendored_sdks/models/_models.py b/src/support/azext_support/vendored_sdks/models/_models.py index 1d0ae958c5d..80d9d6bd490 100644 --- a/src/support/azext_support/vendored_sdks/models/_models.py +++ b/src/support/azext_support/vendored_sdks/models/_models.py @@ -1,27 +1,24 @@ # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# +# Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -from msrest.serialization import Model -from msrest.exceptions import HttpOperationError +from azure.core.exceptions import HttpResponseError +import msrest.serialization -class CheckNameAvailabilityInput(Model): +class CheckNameAvailabilityInput(msrest.serialization.Model): """Input of CheckNameAvailability API. All required parameters must be populated in order to send to Azure. - :param name: Required. The resource name to validate + :param name: Required. The resource name to validate. :type name: str :param type: Required. The type of resource. Possible values include: - 'Microsoft.Support/supportTickets', 'Microsoft.Support/communications' + "Microsoft.Support/supportTickets", "Microsoft.Support/communications". :type type: str or ~azure.mgmt.support.models.Type """ @@ -32,27 +29,28 @@ class CheckNameAvailabilityInput(Model): _attribute_map = { 'name': {'key': 'name', 'type': 'str'}, - 'type': {'key': 'type', 'type': 'Type'}, + 'type': {'key': 'type', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(CheckNameAvailabilityInput, self).__init__(**kwargs) - self.name = kwargs.get('name', None) - self.type = kwargs.get('type', None) + self.name = kwargs['name'] + self.type = kwargs['type'] -class CheckNameAvailabilityOutput(Model): +class CheckNameAvailabilityOutput(msrest.serialization.Model): """Output of check name availability API. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. :ivar name_available: Indicates whether the name is available. :vartype name_available: bool :ivar reason: The reason why the name is not available. :vartype reason: str - :ivar message: The detailed error message describing why the name is not - available. + :ivar message: The detailed error message describing why the name is not available. :vartype message: str """ @@ -68,53 +66,41 @@ class CheckNameAvailabilityOutput(Model): 'message': {'key': 'message', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(CheckNameAvailabilityOutput, self).__init__(**kwargs) self.name_available = None self.reason = None self.message = None -class CloudError(Model): - """CloudError. - """ - - _attribute_map = { - } +class CommunicationDetails(msrest.serialization.Model): + """Object that represents a Communication resource. + Variables are only populated by the server, and will be ignored when sending a request. -class CommunicationDetails(Model): - """Object that represents Communication resource. - - Variables are only populated by the server, and will be ignored when - sending a request. - - All required parameters must be populated in order to send to Azure. - - :ivar id: Id of the resource + :ivar id: Id of the resource. :vartype id: str - :ivar name: Name of the resource + :ivar name: Name of the resource. :vartype name: str - :ivar type: Type of the resource 'Microsoft.Support/communications' + :ivar type: Type of the resource 'Microsoft.Support/communications'. :vartype type: str - :ivar communication_type: Communication type. Possible values include: - 'web', 'phone' - :vartype communication_type: str or - ~azure.mgmt.support.models.CommunicationType - :ivar communication_direction: Direction of communication. Possible values - include: 'inbound', 'outbound' - :vartype communication_direction: str or - ~azure.mgmt.support.models.CommunicationDirection - :param sender: Email address of the sender. This property is required if - called by a service principal + :ivar communication_type: Communication type. Possible values include: "web", "phone". + :vartype communication_type: str or ~azure.mgmt.support.models.CommunicationType + :ivar communication_direction: Direction of communication. Possible values include: "inbound", + "outbound". + :vartype communication_direction: str or ~azure.mgmt.support.models.CommunicationDirection + :param sender: Email address of the sender. This property is required if called by a service + principal. :type sender: str - :param subject: Required. Subject of the communication + :param subject: Subject of the communication. :type subject: str - :param body: Required. Body of the communication + :param body: Body of the communication. :type body: str - :ivar created_date: Time in UTC (ISO 8601 format) when the communication - was created. - :vartype created_date: datetime + :ivar created_date: Time in UTC (ISO 8601 format) when the communication was created. + :vartype created_date: ~datetime.datetime """ _validation = { @@ -123,8 +109,6 @@ class CommunicationDetails(Model): 'type': {'readonly': True}, 'communication_type': {'readonly': True}, 'communication_direction': {'readonly': True}, - 'subject': {'required': True}, - 'body': {'required': True}, 'created_date': {'readonly': True}, } @@ -140,7 +124,10 @@ class CommunicationDetails(Model): 'created_date': {'key': 'properties.createdDate', 'type': 'iso-8601'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(CommunicationDetails, self).__init__(**kwargs) self.id = None self.name = None @@ -153,8 +140,31 @@ def __init__(self, **kwargs): self.created_date = None -class ContactProfile(Model): - """Contact information associated with support ticket. +class CommunicationsListResult(msrest.serialization.Model): + """Collection of Communication resources. + + :param value: List of Communication resources. + :type value: list[~azure.mgmt.support.models.CommunicationDetails] + :param next_link: The URI to fetch the next page of Communication resources. + :type next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[CommunicationDetails]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(CommunicationsListResult, self).__init__(**kwargs) + self.value = kwargs.get('value', None) + self.next_link = kwargs.get('next_link', None) + + +class ContactProfile(msrest.serialization.Model): + """Contact information associated with the support ticket. All required parameters must be populated in order to send to Azure. @@ -162,33 +172,28 @@ class ContactProfile(Model): :type first_name: str :param last_name: Required. Last name. :type last_name: str - :param preferred_contact_method: Required. Preferred contact method. - Possible values include: 'email', 'phone' - :type preferred_contact_method: str or - ~azure.mgmt.support.models.PreferredContactMethod + :param preferred_contact_method: Required. Preferred contact method. Possible values include: + "email", "phone". + :type preferred_contact_method: str or ~azure.mgmt.support.models.PreferredContactMethod :param primary_email_address: Required. Primary email address. :type primary_email_address: str - :param additional_email_addresses: Additional email addresses listed will - be copied on any correspondence about the support ticket. + :param additional_email_addresses: Additional email addresses listed will be copied on any + correspondence about the support ticket. :type additional_email_addresses: list[str] - :param phone_number: Phone number. This is required if preferred contact - method is phone. + :param phone_number: Phone number. This is required if preferred contact method is phone. :type phone_number: str - :param preferred_time_zone: Required. Time zone of the user. This is the - name of the time zone from [Microsoft Time Zone Index - Values](https://support.microsoft.com/help/973627/microsoft-time-zone-index-values). + :param preferred_time_zone: Required. Time zone of the user. This is the name of the time zone + from `Microsoft Time Zone Index Values `_. :type preferred_time_zone: str - :param country: Required. Country of the user. This is the ISO 3166-1 - alpha-3 code. + :param country: Required. Country of the user. This is the ISO 3166-1 alpha-3 code. :type country: str - :param preferred_support_language: Required. Preferred language of support - from Azure. Support languages vary based on the severity you choose for - your support ticket. Learn more at [Azure Severity and - responsiveness](https://azure.microsoft.com/support/plans/response). Use - the standard language-country code. Valid values are 'en-us' for English, - 'zh-hans' for Chinese, 'es-es' for Spanish, 'fr-fr' for French, 'ja-jp' - for Japanese, 'ko-kr' for Korean, 'ru-ru' for Russian, 'pt-br' for - Portuguese, 'it-it' for Italian, 'zh-tw' for Chinese and 'de-de' for + :param preferred_support_language: Required. Preferred language of support from Azure. Support + languages vary based on the severity you choose for your support ticket. Learn more at `Azure + Severity and responsiveness `_. Use the + standard language-country code. Valid values are 'en-us' for English, 'zh-hans' for Chinese, + 'es-es' for Spanish, 'fr-fr' for French, 'ja-jp' for Japanese, 'ko-kr' for Korean, 'ru-ru' for + Russian, 'pt-br' for Portuguese, 'it-it' for Italian, 'zh-tw' for Chinese and 'de-de' for German. :type preferred_support_language: str """ @@ -215,23 +220,26 @@ class ContactProfile(Model): 'preferred_support_language': {'key': 'preferredSupportLanguage', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(ContactProfile, self).__init__(**kwargs) - self.first_name = kwargs.get('first_name', None) - self.last_name = kwargs.get('last_name', None) - self.preferred_contact_method = kwargs.get('preferred_contact_method', None) - self.primary_email_address = kwargs.get('primary_email_address', None) + self.first_name = kwargs['first_name'] + self.last_name = kwargs['last_name'] + self.preferred_contact_method = kwargs['preferred_contact_method'] + self.primary_email_address = kwargs['primary_email_address'] self.additional_email_addresses = kwargs.get('additional_email_addresses', None) self.phone_number = kwargs.get('phone_number', None) - self.preferred_time_zone = kwargs.get('preferred_time_zone', None) - self.country = kwargs.get('country', None) - self.preferred_support_language = kwargs.get('preferred_support_language', None) + self.preferred_time_zone = kwargs['preferred_time_zone'] + self.country = kwargs['country'] + self.preferred_support_language = kwargs['preferred_support_language'] -class ExceptionResponse(Model): - """The api error. +class ExceptionResponse(msrest.serialization.Model): + """The API error. - :param error: The api error details. + :param error: The API error details. :type error: ~azure.mgmt.support.models.ServiceError """ @@ -239,30 +247,20 @@ class ExceptionResponse(Model): 'error': {'key': 'error', 'type': 'ServiceError'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(ExceptionResponse, self).__init__(**kwargs) self.error = kwargs.get('error', None) -class ExceptionResponseException(HttpOperationError): - """Server responsed with exception of type: 'ExceptionResponse'. - - :param deserialize: A deserializer - :param response: Server response to be deserialized. - """ +class Operation(msrest.serialization.Model): + """The operation supported by Microsoft Support resource provider. - def __init__(self, deserialize, response, *args): + Variables are only populated by the server, and will be ignored when sending a request. - super(ExceptionResponseException, self).__init__(deserialize, response, 'ExceptionResponse', *args) - - -class Operation(Model): - """The operation supported by Microsoft Support RP. - - Variables are only populated by the server, and will be ignored when - sending a request. - - :ivar name: Operation name: {provider}/{resource}/{operation} + :ivar name: Operation name: {provider}/{resource}/{operation}. :vartype name: str :param display: The object that describes the operation. :type display: ~azure.mgmt.support.models.OperationDisplay @@ -277,26 +275,27 @@ class Operation(Model): 'display': {'key': 'display', 'type': 'OperationDisplay'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(Operation, self).__init__(**kwargs) self.name = None self.display = kwargs.get('display', None) -class OperationDisplay(Model): +class OperationDisplay(msrest.serialization.Model): """The object that describes the operation. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar description: The description of the operation + :ivar description: The description of the operation. :vartype description: str - :ivar operation: The action that users can perform, based on their - permission level + :ivar operation: The action that users can perform, based on their permission level. :vartype operation: str - :ivar provider: Service provider: Microsoft Support + :ivar provider: Service provider: Microsoft Support. :vartype provider: str - :ivar resource: Resource on which the operation is performed + :ivar resource: Resource on which the operation is performed. :vartype resource: str """ @@ -314,7 +313,10 @@ class OperationDisplay(Model): 'resource': {'key': 'resource', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(OperationDisplay, self).__init__(**kwargs) self.description = None self.operation = None @@ -322,17 +324,35 @@ def __init__(self, **kwargs): self.resource = None -class ProblemClassification(Model): +class OperationsListResult(msrest.serialization.Model): + """The list of operations supported by Microsoft Support resource provider. + + :param value: The list of operations supported by Microsoft Support resource provider. + :type value: list[~azure.mgmt.support.models.Operation] + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[Operation]'}, + } + + def __init__( + self, + **kwargs + ): + super(OperationsListResult, self).__init__(**kwargs) + self.value = kwargs.get('value', None) + + +class ProblemClassification(msrest.serialization.Model): """ProblemClassification resource object. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar id: Id of the resource + :ivar id: Id of the resource. :vartype id: str - :ivar name: Name of the resource + :ivar name: Name of the resource. :vartype name: str - :ivar type: Type of the resource 'Microsoft.Support/problemClassification' + :ivar type: Type of the resource 'Microsoft.Support/problemClassification'. :vartype type: str :param display_name: Localized name of problem classification. :type display_name: str @@ -351,7 +371,10 @@ class ProblemClassification(Model): 'display_name': {'key': 'properties.displayName', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(ProblemClassification, self).__init__(**kwargs) self.id = None self.name = None @@ -359,7 +382,26 @@ def __init__(self, **kwargs): self.display_name = kwargs.get('display_name', None) -class QuotaChangeRequest(Model): +class ProblemClassificationsListResult(msrest.serialization.Model): + """Collection of ProblemClassification resources. + + :param value: List of ProblemClassification resources. + :type value: list[~azure.mgmt.support.models.ProblemClassification] + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ProblemClassification]'}, + } + + def __init__( + self, + **kwargs + ): + super(ProblemClassificationsListResult, self).__init__(**kwargs) + self.value = kwargs.get('value', None) + + +class QuotaChangeRequest(msrest.serialization.Model): """This property is required for providing the region and new quota limits. :param region: Region for which the quota increase request is being made. @@ -373,28 +415,26 @@ class QuotaChangeRequest(Model): 'payload': {'key': 'payload', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(QuotaChangeRequest, self).__init__(**kwargs) self.region = kwargs.get('region', None) self.payload = kwargs.get('payload', None) -class QuotaTicketDetails(Model): - """Additional set of information required for quota increase support ticket - for certain quota types, e.g.: Virtual machine cores. Get complete details - about Quota payload support request along with examples at [Support quota - request](https://aka.ms/supportrpquotarequestpayload). +class QuotaTicketDetails(msrest.serialization.Model): + """Additional set of information required for quota increase support ticket for certain quota types, e.g.: Virtual machine cores. Get complete details about Quota payload support request along with examples at `Support quota request `_. - :param quota_change_request_sub_type: Required for certain quota types - when there is a sub type that you are requesting quota increase for. - Example: Batch + :param quota_change_request_sub_type: Required for certain quota types when there is a sub + type, such as Batch, for which you are requesting a quota increase. :type quota_change_request_sub_type: str - :param quota_change_request_version: Quota change request version + :param quota_change_request_version: Quota change request version. :type quota_change_request_version: str - :param quota_change_requests: This property is required for providing the - region and new quota limits. - :type quota_change_requests: - list[~azure.mgmt.support.models.QuotaChangeRequest] + :param quota_change_requests: This property is required for providing the region and new quota + limits. + :type quota_change_requests: list[~azure.mgmt.support.models.QuotaChangeRequest] """ _attribute_map = { @@ -403,28 +443,30 @@ class QuotaTicketDetails(Model): 'quota_change_requests': {'key': 'quotaChangeRequests', 'type': '[QuotaChangeRequest]'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(QuotaTicketDetails, self).__init__(**kwargs) self.quota_change_request_sub_type = kwargs.get('quota_change_request_sub_type', None) self.quota_change_request_version = kwargs.get('quota_change_request_version', None) self.quota_change_requests = kwargs.get('quota_change_requests', None) -class Service(Model): +class Service(msrest.serialization.Model): """Object that represents a Service resource. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar id: Id of the resource + :ivar id: Id of the resource. :vartype id: str - :ivar name: Name of the resource + :ivar name: Name of the resource. :vartype name: str - :ivar type: Type of the resource 'Microsoft.Support/services' + :ivar type: Type of the resource 'Microsoft.Support/services'. :vartype type: str - :param display_name: Localized name of Azure service + :param display_name: Localized name of the Azure service. :type display_name: str - :param resource_types: ARM Resource types + :param resource_types: ARM Resource types. :type resource_types: list[str] """ @@ -442,7 +484,10 @@ class Service(Model): 'resource_types': {'key': 'properties.resourceTypes', 'type': '[str]'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(Service, self).__init__(**kwargs) self.id = None self.name = None @@ -451,11 +496,10 @@ def __init__(self, **kwargs): self.resource_types = kwargs.get('resource_types', None) -class ServiceError(Model): - """The api error details. +class ServiceError(msrest.serialization.Model): + """The API error details. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. :param code: The error code. :type code: str @@ -478,7 +522,10 @@ class ServiceError(Model): 'details': {'key': 'details', 'type': '[ServiceErrorDetail]'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(ServiceError, self).__init__(**kwargs) self.code = kwargs.get('code', None) self.message = kwargs.get('message', None) @@ -486,11 +533,10 @@ def __init__(self, **kwargs): self.details = None -class ServiceErrorDetail(Model): +class ServiceErrorDetail(msrest.serialization.Model): """The error details. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. :ivar code: The error code. :vartype code: str @@ -511,26 +557,26 @@ class ServiceErrorDetail(Model): 'target': {'key': 'target', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(ServiceErrorDetail, self).__init__(**kwargs) self.code = None self.message = None self.target = kwargs.get('target', None) -class ServiceLevelAgreement(Model): +class ServiceLevelAgreement(msrest.serialization.Model): """Service Level Agreement details for a support ticket. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar start_time: Time in UTC (ISO 8601 format) when service level - agreement starts. - :vartype start_time: datetime - :ivar expiration_time: Time in UTC (ISO 8601 format) when service level - agreement expires. - :vartype expiration_time: datetime - :ivar sla_minutes: Service Level Agreement in minutes + :ivar start_time: Time in UTC (ISO 8601 format) when the service level agreement starts. + :vartype start_time: ~datetime.datetime + :ivar expiration_time: Time in UTC (ISO 8601 format) when the service level agreement expires. + :vartype expiration_time: ~datetime.datetime + :ivar sla_minutes: Service Level Agreement in minutes. :vartype sla_minutes: int """ @@ -546,21 +592,42 @@ class ServiceLevelAgreement(Model): 'sla_minutes': {'key': 'slaMinutes', 'type': 'int'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(ServiceLevelAgreement, self).__init__(**kwargs) self.start_time = None self.expiration_time = None self.sla_minutes = None -class SupportEngineer(Model): +class ServicesListResult(msrest.serialization.Model): + """Collection of Service resources. + + :param value: List of Service resources. + :type value: list[~azure.mgmt.support.models.Service] + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[Service]'}, + } + + def __init__( + self, + **kwargs + ): + super(ServicesListResult, self).__init__(**kwargs) + self.value = kwargs.get('value', None) + + +class SupportEngineer(msrest.serialization.Model): """Support engineer information. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar email_address: Email address of the Azure Support engineer assigned - to the support ticket. + :ivar email_address: Email address of the Azure Support engineer assigned to the support + ticket. :vartype email_address: str """ @@ -572,88 +639,73 @@ class SupportEngineer(Model): 'email_address': {'key': 'emailAddress', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(SupportEngineer, self).__init__(**kwargs) self.email_address = None -class SupportTicketDetails(Model): +class SupportTicketDetails(msrest.serialization.Model): """Object that represents SupportTicketDetails resource. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - All required parameters must be populated in order to send to Azure. - - :ivar id: Id of the resource + :ivar id: Id of the resource. :vartype id: str - :ivar name: Name of the resource + :ivar name: Name of the resource. :vartype name: str - :ivar type: Type of the resource 'Microsoft.Support/supportTickets' + :ivar type: Type of the resource 'Microsoft.Support/supportTickets'. :vartype type: str - :param support_ticket_id: System generated support ticket id that is - unique. + :param support_ticket_id: System generated support ticket Id that is unique. :type support_ticket_id: str - :param description: Required. Detailed description of the question or - issue. + :param description: Detailed description of the question or issue. :type description: str - :param problem_classification_id: Required. Each Azure service has its own - set of issue category called problem classification that corresponds to - the type of problem you're experiencing. This parameter is the resource id - of ProblemClassification resource. + :param problem_classification_id: Each Azure service has its own set of issue categories, also + known as problem classification. This parameter is the unique Id for the type of problem you + are experiencing. :type problem_classification_id: str - :ivar problem_classification_display_name: Localized name of problem - classification. + :ivar problem_classification_display_name: Localized name of problem classification. :vartype problem_classification_display_name: str - :param severity: Required. A value that indicates the urgency of the case, - which in turn determines the response time according to the service level - agreement of the technical support plan you have with Azure. Note: - 'Highest critical impact' severity is reserved only to our Premium - customers. Possible values include: 'minimal', 'moderate', 'critical', - 'highestcriticalimpact' + :param severity: A value that indicates the urgency of the case, which in turn determines the + response time according to the service level agreement of the technical support plan you have + with Azure. Note: 'Highest critical impact', also known as the 'Emergency - Severe impact' + level in the Azure portal is reserved only for our Premium customers. Possible values include: + "minimal", "moderate", "critical", "highestcriticalimpact". :type severity: str or ~azure.mgmt.support.models.SeverityLevel - :ivar enrollment_id: Enrollment ID associated with the support ticket. + :ivar enrollment_id: Enrollment Id associated with the support ticket. :vartype enrollment_id: str - :param require24_x7_response: Indicates if this requires a 24x7 response - from Azure. + :param require24_x7_response: Indicates if this requires a 24x7 response from Azure. :type require24_x7_response: bool - :param contact_details: Required. Contact information of the user - requesting to create a support ticket. + :param contact_details: Contact information of the user requesting to create a support ticket. :type contact_details: ~azure.mgmt.support.models.ContactProfile - :param service_level_agreement: Service Level Agreement information for - this support ticket. - :type service_level_agreement: - ~azure.mgmt.support.models.ServiceLevelAgreement - :param support_engineer: Information about support engineer working on - this support ticket. + :param service_level_agreement: Service Level Agreement information for this support ticket. + :type service_level_agreement: ~azure.mgmt.support.models.ServiceLevelAgreement + :param support_engineer: Information about the support engineer working on this support ticket. :type support_engineer: ~azure.mgmt.support.models.SupportEngineer - :ivar support_plan_type: Support plan type associated with the support - ticket. + :ivar support_plan_type: Support plan type associated with the support ticket. :vartype support_plan_type: str - :param title: Required. Title of the support ticket. + :param title: Title of the support ticket. :type title: str - :param problem_start_time: Time in UTC (ISO 8601 format) when the problem - started. - :type problem_start_time: datetime - :param service_id: Required. This is the resource id of the Azure service - resource associated with the support ticket. + :param problem_start_time: Time in UTC (ISO 8601 format) when the problem started. + :type problem_start_time: ~datetime.datetime + :param service_id: This is the resource Id of the Azure service resource associated with the + support ticket. :type service_id: str - :ivar service_display_name: Localized name of Azure service. + :ivar service_display_name: Localized name of the Azure service. :vartype service_display_name: str :ivar status: Status of the support ticket. :vartype status: str - :ivar created_date: Time in UTC (ISO 8601 format) when support ticket was - created. - :vartype created_date: datetime - :ivar modified_date: Time in UTC (ISO 8601 format) when support ticket was - last modified. - :vartype modified_date: datetime - :param technical_ticket_details: Additional ticket details associated with - a technical support ticket request. - :type technical_ticket_details: - ~azure.mgmt.support.models.TechnicalTicketDetails - :param quota_ticket_details: Additional ticket details associated with a - quota support ticket request. + :ivar created_date: Time in UTC (ISO 8601 format) when the support ticket was created. + :vartype created_date: ~datetime.datetime + :ivar modified_date: Time in UTC (ISO 8601 format) when the support ticket was last modified. + :vartype modified_date: ~datetime.datetime + :param technical_ticket_details: Additional ticket details associated with a technical support + ticket request. + :type technical_ticket_details: ~azure.mgmt.support.models.TechnicalTicketDetails + :param quota_ticket_details: Additional ticket details associated with a quota support ticket + request. :type quota_ticket_details: ~azure.mgmt.support.models.QuotaTicketDetails """ @@ -661,15 +713,9 @@ class SupportTicketDetails(Model): 'id': {'readonly': True}, 'name': {'readonly': True}, 'type': {'readonly': True}, - 'description': {'required': True}, - 'problem_classification_id': {'required': True}, 'problem_classification_display_name': {'readonly': True}, - 'severity': {'required': True}, 'enrollment_id': {'readonly': True}, - 'contact_details': {'required': True}, 'support_plan_type': {'readonly': True}, - 'title': {'required': True}, - 'service_id': {'required': True}, 'service_display_name': {'readonly': True}, 'status': {'readonly': True}, 'created_date': {'readonly': True}, @@ -702,7 +748,10 @@ class SupportTicketDetails(Model): 'quota_ticket_details': {'key': 'properties.quotaTicketDetails', 'type': 'QuotaTicketDetails'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(SupportTicketDetails, self).__init__(**kwargs) self.id = None self.name = None @@ -729,12 +778,34 @@ def __init__(self, **kwargs): self.quota_ticket_details = kwargs.get('quota_ticket_details', None) -class TechnicalTicketDetails(Model): +class SupportTicketsListResult(msrest.serialization.Model): + """Object that represents a collection of SupportTicket resources. + + :param value: List of SupportTicket resources. + :type value: list[~azure.mgmt.support.models.SupportTicketDetails] + :param next_link: The URI to fetch the next page of SupportTicket resources. + :type next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[SupportTicketDetails]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(SupportTicketsListResult, self).__init__(**kwargs) + self.value = kwargs.get('value', None) + self.next_link = kwargs.get('next_link', None) + + +class TechnicalTicketDetails(msrest.serialization.Model): """Additional information for technical support ticket. - :param resource_id: This is the resource id of the Azure service resource - (For example: A virtual machine resource or an HDInsight resource) for - which the support ticket is created. + :param resource_id: This is the resource Id of the Azure service resource (For example: A + virtual machine resource or an HDInsight resource) for which the support ticket is created. :type resource_id: str """ @@ -742,45 +813,43 @@ class TechnicalTicketDetails(Model): 'resource_id': {'key': 'resourceId', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(TechnicalTicketDetails, self).__init__(**kwargs) self.resource_id = kwargs.get('resource_id', None) -class UpdateContactProfile(Model): +class UpdateContactProfile(msrest.serialization.Model): """Contact information associated with the support ticket. - :param first_name: First name + :param first_name: First name. :type first_name: str - :param last_name: Last name + :param last_name: Last name. :type last_name: str - :param preferred_contact_method: Preferred contact method. Possible values - include: 'email', 'phone' - :type preferred_contact_method: str or - ~azure.mgmt.support.models.PreferredContactMethod - :param primary_email_address: Primary email address + :param preferred_contact_method: Preferred contact method. Possible values include: "email", + "phone". + :type preferred_contact_method: str or ~azure.mgmt.support.models.PreferredContactMethod + :param primary_email_address: Primary email address. :type primary_email_address: str - :param additional_email_addresses: Email addresses listed will be copied - on any correspondence about the support ticket + :param additional_email_addresses: Email addresses listed will be copied on any correspondence + about the support ticket. :type additional_email_addresses: list[str] - :param phone_number: Phone number. This is required if preferred contact - method is phone. + :param phone_number: Phone number. This is required if preferred contact method is phone. :type phone_number: str - :param preferred_time_zone: Time zone of the user. This is the name of the - time zone from [Microsoft Time Zone Index - Values](https://support.microsoft.com/en-us/help/973627/microsoft-time-zone-index-values). + :param preferred_time_zone: Time zone of the user. This is the name of the time zone from + `Microsoft Time Zone Index Values `_. :type preferred_time_zone: str :param country: Country of the user. This is the ISO 3166-1 alpha-3 code. :type country: str - :param preferred_support_language: Preferred language of support from - Azure. Support languages vary based on the severity you choose for your - support ticket. Learn more at [Azure Severity and - responsiveness](https://azure.microsoft.com/support/plans/response/). Use - the standard language-country code. Valid values are 'en-us' for English, - 'zh-hans' for Chinese, 'es-es' for Spanish, 'fr-fr' for French, 'ja-jp' - for Japanese, 'ko-kr' for Korean, 'ru-ru' for Russian, 'pt-br' for - Portuguese, 'it-it' for Italian, 'zh-tw' for Chinese and 'de-de' for - German. + :param preferred_support_language: Preferred language of support from Azure. Support languages + vary based on the severity you choose for your support ticket. Learn more at `Azure Severity + and responsiveness `_. Use the standard + language-country code. Valid values are 'en-us' for English, 'zh-hans' for Chinese, 'es-es' for + Spanish, 'fr-fr' for French, 'ja-jp' for Japanese, 'ko-kr' for Korean, 'ru-ru' for Russian, + 'pt-br' for Portuguese, 'it-it' for Italian, 'zh-tw' for Chinese and 'de-de' for German. :type preferred_support_language: str """ @@ -796,7 +865,10 @@ class UpdateContactProfile(Model): 'preferred_support_language': {'key': 'preferredSupportLanguage', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(UpdateContactProfile, self).__init__(**kwargs) self.first_name = kwargs.get('first_name', None) self.last_name = kwargs.get('last_name', None) @@ -809,17 +881,15 @@ def __init__(self, **kwargs): self.preferred_support_language = kwargs.get('preferred_support_language', None) -class UpdateSupportTicket(Model): - """Updates severity, ticket status and contact details in the support ticket. +class UpdateSupportTicket(msrest.serialization.Model): + """Updates severity, ticket status, and contact details in the support ticket. - :param severity: Severity level. Possible values include: 'minimal', - 'moderate', 'critical', 'highestcriticalimpact' + :param severity: Severity level. Possible values include: "minimal", "moderate", "critical", + "highestcriticalimpact". :type severity: str or ~azure.mgmt.support.models.SeverityLevel - :param status: Status to be updated on the ticket. Possible values - include: 'open', 'closed' + :param status: Status to be updated on the ticket. Possible values include: "open", "closed". :type status: str or ~azure.mgmt.support.models.Status - :param contact_details: Contact details to be updated on the support - ticket. + :param contact_details: Contact details to be updated on the support ticket. :type contact_details: ~azure.mgmt.support.models.UpdateContactProfile """ @@ -829,7 +899,10 @@ class UpdateSupportTicket(Model): 'contact_details': {'key': 'contactDetails', 'type': 'UpdateContactProfile'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(UpdateSupportTicket, self).__init__(**kwargs) self.severity = kwargs.get('severity', None) self.status = kwargs.get('status', None) diff --git a/src/support/azext_support/vendored_sdks/models/_models_py3.py b/src/support/azext_support/vendored_sdks/models/_models_py3.py index 48c8be87327..704ea8c58ae 100644 --- a/src/support/azext_support/vendored_sdks/models/_models_py3.py +++ b/src/support/azext_support/vendored_sdks/models/_models_py3.py @@ -1,27 +1,29 @@ # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# +# Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -from msrest.serialization import Model -from msrest.exceptions import HttpOperationError +import datetime +from typing import List, Optional, Union +from azure.core.exceptions import HttpResponseError +import msrest.serialization -class CheckNameAvailabilityInput(Model): +from ._microsoft_support_enums import * + + +class CheckNameAvailabilityInput(msrest.serialization.Model): """Input of CheckNameAvailability API. All required parameters must be populated in order to send to Azure. - :param name: Required. The resource name to validate + :param name: Required. The resource name to validate. :type name: str :param type: Required. The type of resource. Possible values include: - 'Microsoft.Support/supportTickets', 'Microsoft.Support/communications' + "Microsoft.Support/supportTickets", "Microsoft.Support/communications". :type type: str or ~azure.mgmt.support.models.Type """ @@ -32,27 +34,31 @@ class CheckNameAvailabilityInput(Model): _attribute_map = { 'name': {'key': 'name', 'type': 'str'}, - 'type': {'key': 'type', 'type': 'Type'}, + 'type': {'key': 'type', 'type': 'str'}, } - def __init__(self, *, name: str, type, **kwargs) -> None: + def __init__( + self, + *, + name: str, + type: Union[str, "Type"], + **kwargs + ): super(CheckNameAvailabilityInput, self).__init__(**kwargs) self.name = name self.type = type -class CheckNameAvailabilityOutput(Model): +class CheckNameAvailabilityOutput(msrest.serialization.Model): """Output of check name availability API. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. :ivar name_available: Indicates whether the name is available. :vartype name_available: bool :ivar reason: The reason why the name is not available. :vartype reason: str - :ivar message: The detailed error message describing why the name is not - available. + :ivar message: The detailed error message describing why the name is not available. :vartype message: str """ @@ -68,53 +74,41 @@ class CheckNameAvailabilityOutput(Model): 'message': {'key': 'message', 'type': 'str'}, } - def __init__(self, **kwargs) -> None: + def __init__( + self, + **kwargs + ): super(CheckNameAvailabilityOutput, self).__init__(**kwargs) self.name_available = None self.reason = None self.message = None -class CloudError(Model): - """CloudError. - """ - - _attribute_map = { - } - - -class CommunicationDetails(Model): - """Object that represents Communication resource. - - Variables are only populated by the server, and will be ignored when - sending a request. +class CommunicationDetails(msrest.serialization.Model): + """Object that represents a Communication resource. - All required parameters must be populated in order to send to Azure. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar id: Id of the resource + :ivar id: Id of the resource. :vartype id: str - :ivar name: Name of the resource + :ivar name: Name of the resource. :vartype name: str - :ivar type: Type of the resource 'Microsoft.Support/communications' + :ivar type: Type of the resource 'Microsoft.Support/communications'. :vartype type: str - :ivar communication_type: Communication type. Possible values include: - 'web', 'phone' - :vartype communication_type: str or - ~azure.mgmt.support.models.CommunicationType - :ivar communication_direction: Direction of communication. Possible values - include: 'inbound', 'outbound' - :vartype communication_direction: str or - ~azure.mgmt.support.models.CommunicationDirection - :param sender: Email address of the sender. This property is required if - called by a service principal + :ivar communication_type: Communication type. Possible values include: "web", "phone". + :vartype communication_type: str or ~azure.mgmt.support.models.CommunicationType + :ivar communication_direction: Direction of communication. Possible values include: "inbound", + "outbound". + :vartype communication_direction: str or ~azure.mgmt.support.models.CommunicationDirection + :param sender: Email address of the sender. This property is required if called by a service + principal. :type sender: str - :param subject: Required. Subject of the communication + :param subject: Subject of the communication. :type subject: str - :param body: Required. Body of the communication + :param body: Body of the communication. :type body: str - :ivar created_date: Time in UTC (ISO 8601 format) when the communication - was created. - :vartype created_date: datetime + :ivar created_date: Time in UTC (ISO 8601 format) when the communication was created. + :vartype created_date: ~datetime.datetime """ _validation = { @@ -123,8 +117,6 @@ class CommunicationDetails(Model): 'type': {'readonly': True}, 'communication_type': {'readonly': True}, 'communication_direction': {'readonly': True}, - 'subject': {'required': True}, - 'body': {'required': True}, 'created_date': {'readonly': True}, } @@ -140,7 +132,14 @@ class CommunicationDetails(Model): 'created_date': {'key': 'properties.createdDate', 'type': 'iso-8601'}, } - def __init__(self, *, subject: str, body: str, sender: str=None, **kwargs) -> None: + def __init__( + self, + *, + sender: Optional[str] = None, + subject: Optional[str] = None, + body: Optional[str] = None, + **kwargs + ): super(CommunicationDetails, self).__init__(**kwargs) self.id = None self.name = None @@ -153,8 +152,34 @@ def __init__(self, *, subject: str, body: str, sender: str=None, **kwargs) -> No self.created_date = None -class ContactProfile(Model): - """Contact information associated with support ticket. +class CommunicationsListResult(msrest.serialization.Model): + """Collection of Communication resources. + + :param value: List of Communication resources. + :type value: list[~azure.mgmt.support.models.CommunicationDetails] + :param next_link: The URI to fetch the next page of Communication resources. + :type next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[CommunicationDetails]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["CommunicationDetails"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + super(CommunicationsListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ContactProfile(msrest.serialization.Model): + """Contact information associated with the support ticket. All required parameters must be populated in order to send to Azure. @@ -162,33 +187,28 @@ class ContactProfile(Model): :type first_name: str :param last_name: Required. Last name. :type last_name: str - :param preferred_contact_method: Required. Preferred contact method. - Possible values include: 'email', 'phone' - :type preferred_contact_method: str or - ~azure.mgmt.support.models.PreferredContactMethod + :param preferred_contact_method: Required. Preferred contact method. Possible values include: + "email", "phone". + :type preferred_contact_method: str or ~azure.mgmt.support.models.PreferredContactMethod :param primary_email_address: Required. Primary email address. :type primary_email_address: str - :param additional_email_addresses: Additional email addresses listed will - be copied on any correspondence about the support ticket. + :param additional_email_addresses: Additional email addresses listed will be copied on any + correspondence about the support ticket. :type additional_email_addresses: list[str] - :param phone_number: Phone number. This is required if preferred contact - method is phone. + :param phone_number: Phone number. This is required if preferred contact method is phone. :type phone_number: str - :param preferred_time_zone: Required. Time zone of the user. This is the - name of the time zone from [Microsoft Time Zone Index - Values](https://support.microsoft.com/help/973627/microsoft-time-zone-index-values). + :param preferred_time_zone: Required. Time zone of the user. This is the name of the time zone + from `Microsoft Time Zone Index Values `_. :type preferred_time_zone: str - :param country: Required. Country of the user. This is the ISO 3166-1 - alpha-3 code. + :param country: Required. Country of the user. This is the ISO 3166-1 alpha-3 code. :type country: str - :param preferred_support_language: Required. Preferred language of support - from Azure. Support languages vary based on the severity you choose for - your support ticket. Learn more at [Azure Severity and - responsiveness](https://azure.microsoft.com/support/plans/response). Use - the standard language-country code. Valid values are 'en-us' for English, - 'zh-hans' for Chinese, 'es-es' for Spanish, 'fr-fr' for French, 'ja-jp' - for Japanese, 'ko-kr' for Korean, 'ru-ru' for Russian, 'pt-br' for - Portuguese, 'it-it' for Italian, 'zh-tw' for Chinese and 'de-de' for + :param preferred_support_language: Required. Preferred language of support from Azure. Support + languages vary based on the severity you choose for your support ticket. Learn more at `Azure + Severity and responsiveness `_. Use the + standard language-country code. Valid values are 'en-us' for English, 'zh-hans' for Chinese, + 'es-es' for Spanish, 'fr-fr' for French, 'ja-jp' for Japanese, 'ko-kr' for Korean, 'ru-ru' for + Russian, 'pt-br' for Portuguese, 'it-it' for Italian, 'zh-tw' for Chinese and 'de-de' for German. :type preferred_support_language: str """ @@ -215,7 +235,20 @@ class ContactProfile(Model): 'preferred_support_language': {'key': 'preferredSupportLanguage', 'type': 'str'}, } - def __init__(self, *, first_name: str, last_name: str, preferred_contact_method, primary_email_address: str, preferred_time_zone: str, country: str, preferred_support_language: str, additional_email_addresses=None, phone_number: str=None, **kwargs) -> None: + def __init__( + self, + *, + first_name: str, + last_name: str, + preferred_contact_method: Union[str, "PreferredContactMethod"], + primary_email_address: str, + preferred_time_zone: str, + country: str, + preferred_support_language: str, + additional_email_addresses: Optional[List[str]] = None, + phone_number: Optional[str] = None, + **kwargs + ): super(ContactProfile, self).__init__(**kwargs) self.first_name = first_name self.last_name = last_name @@ -228,10 +261,10 @@ def __init__(self, *, first_name: str, last_name: str, preferred_contact_method, self.preferred_support_language = preferred_support_language -class ExceptionResponse(Model): - """The api error. +class ExceptionResponse(msrest.serialization.Model): + """The API error. - :param error: The api error details. + :param error: The API error details. :type error: ~azure.mgmt.support.models.ServiceError """ @@ -239,30 +272,22 @@ class ExceptionResponse(Model): 'error': {'key': 'error', 'type': 'ServiceError'}, } - def __init__(self, *, error=None, **kwargs) -> None: + def __init__( + self, + *, + error: Optional["ServiceError"] = None, + **kwargs + ): super(ExceptionResponse, self).__init__(**kwargs) self.error = error -class ExceptionResponseException(HttpOperationError): - """Server responsed with exception of type: 'ExceptionResponse'. - - :param deserialize: A deserializer - :param response: Server response to be deserialized. - """ - - def __init__(self, deserialize, response, *args): - - super(ExceptionResponseException, self).__init__(deserialize, response, 'ExceptionResponse', *args) +class Operation(msrest.serialization.Model): + """The operation supported by Microsoft Support resource provider. + Variables are only populated by the server, and will be ignored when sending a request. -class Operation(Model): - """The operation supported by Microsoft Support RP. - - Variables are only populated by the server, and will be ignored when - sending a request. - - :ivar name: Operation name: {provider}/{resource}/{operation} + :ivar name: Operation name: {provider}/{resource}/{operation}. :vartype name: str :param display: The object that describes the operation. :type display: ~azure.mgmt.support.models.OperationDisplay @@ -277,26 +302,29 @@ class Operation(Model): 'display': {'key': 'display', 'type': 'OperationDisplay'}, } - def __init__(self, *, display=None, **kwargs) -> None: + def __init__( + self, + *, + display: Optional["OperationDisplay"] = None, + **kwargs + ): super(Operation, self).__init__(**kwargs) self.name = None self.display = display -class OperationDisplay(Model): +class OperationDisplay(msrest.serialization.Model): """The object that describes the operation. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar description: The description of the operation + :ivar description: The description of the operation. :vartype description: str - :ivar operation: The action that users can perform, based on their - permission level + :ivar operation: The action that users can perform, based on their permission level. :vartype operation: str - :ivar provider: Service provider: Microsoft Support + :ivar provider: Service provider: Microsoft Support. :vartype provider: str - :ivar resource: Resource on which the operation is performed + :ivar resource: Resource on which the operation is performed. :vartype resource: str """ @@ -314,7 +342,10 @@ class OperationDisplay(Model): 'resource': {'key': 'resource', 'type': 'str'}, } - def __init__(self, **kwargs) -> None: + def __init__( + self, + **kwargs + ): super(OperationDisplay, self).__init__(**kwargs) self.description = None self.operation = None @@ -322,17 +353,37 @@ def __init__(self, **kwargs) -> None: self.resource = None -class ProblemClassification(Model): +class OperationsListResult(msrest.serialization.Model): + """The list of operations supported by Microsoft Support resource provider. + + :param value: The list of operations supported by Microsoft Support resource provider. + :type value: list[~azure.mgmt.support.models.Operation] + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[Operation]'}, + } + + def __init__( + self, + *, + value: Optional[List["Operation"]] = None, + **kwargs + ): + super(OperationsListResult, self).__init__(**kwargs) + self.value = value + + +class ProblemClassification(msrest.serialization.Model): """ProblemClassification resource object. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar id: Id of the resource + :ivar id: Id of the resource. :vartype id: str - :ivar name: Name of the resource + :ivar name: Name of the resource. :vartype name: str - :ivar type: Type of the resource 'Microsoft.Support/problemClassification' + :ivar type: Type of the resource 'Microsoft.Support/problemClassification'. :vartype type: str :param display_name: Localized name of problem classification. :type display_name: str @@ -351,7 +402,12 @@ class ProblemClassification(Model): 'display_name': {'key': 'properties.displayName', 'type': 'str'}, } - def __init__(self, *, display_name: str=None, **kwargs) -> None: + def __init__( + self, + *, + display_name: Optional[str] = None, + **kwargs + ): super(ProblemClassification, self).__init__(**kwargs) self.id = None self.name = None @@ -359,7 +415,28 @@ def __init__(self, *, display_name: str=None, **kwargs) -> None: self.display_name = display_name -class QuotaChangeRequest(Model): +class ProblemClassificationsListResult(msrest.serialization.Model): + """Collection of ProblemClassification resources. + + :param value: List of ProblemClassification resources. + :type value: list[~azure.mgmt.support.models.ProblemClassification] + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ProblemClassification]'}, + } + + def __init__( + self, + *, + value: Optional[List["ProblemClassification"]] = None, + **kwargs + ): + super(ProblemClassificationsListResult, self).__init__(**kwargs) + self.value = value + + +class QuotaChangeRequest(msrest.serialization.Model): """This property is required for providing the region and new quota limits. :param region: Region for which the quota increase request is being made. @@ -373,28 +450,29 @@ class QuotaChangeRequest(Model): 'payload': {'key': 'payload', 'type': 'str'}, } - def __init__(self, *, region: str=None, payload: str=None, **kwargs) -> None: + def __init__( + self, + *, + region: Optional[str] = None, + payload: Optional[str] = None, + **kwargs + ): super(QuotaChangeRequest, self).__init__(**kwargs) self.region = region self.payload = payload -class QuotaTicketDetails(Model): - """Additional set of information required for quota increase support ticket - for certain quota types, e.g.: Virtual machine cores. Get complete details - about Quota payload support request along with examples at [Support quota - request](https://aka.ms/supportrpquotarequestpayload). +class QuotaTicketDetails(msrest.serialization.Model): + """Additional set of information required for quota increase support ticket for certain quota types, e.g.: Virtual machine cores. Get complete details about Quota payload support request along with examples at `Support quota request `_. - :param quota_change_request_sub_type: Required for certain quota types - when there is a sub type that you are requesting quota increase for. - Example: Batch + :param quota_change_request_sub_type: Required for certain quota types when there is a sub + type, such as Batch, for which you are requesting a quota increase. :type quota_change_request_sub_type: str - :param quota_change_request_version: Quota change request version + :param quota_change_request_version: Quota change request version. :type quota_change_request_version: str - :param quota_change_requests: This property is required for providing the - region and new quota limits. - :type quota_change_requests: - list[~azure.mgmt.support.models.QuotaChangeRequest] + :param quota_change_requests: This property is required for providing the region and new quota + limits. + :type quota_change_requests: list[~azure.mgmt.support.models.QuotaChangeRequest] """ _attribute_map = { @@ -403,28 +481,34 @@ class QuotaTicketDetails(Model): 'quota_change_requests': {'key': 'quotaChangeRequests', 'type': '[QuotaChangeRequest]'}, } - def __init__(self, *, quota_change_request_sub_type: str=None, quota_change_request_version: str=None, quota_change_requests=None, **kwargs) -> None: + def __init__( + self, + *, + quota_change_request_sub_type: Optional[str] = None, + quota_change_request_version: Optional[str] = None, + quota_change_requests: Optional[List["QuotaChangeRequest"]] = None, + **kwargs + ): super(QuotaTicketDetails, self).__init__(**kwargs) self.quota_change_request_sub_type = quota_change_request_sub_type self.quota_change_request_version = quota_change_request_version self.quota_change_requests = quota_change_requests -class Service(Model): +class Service(msrest.serialization.Model): """Object that represents a Service resource. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar id: Id of the resource + :ivar id: Id of the resource. :vartype id: str - :ivar name: Name of the resource + :ivar name: Name of the resource. :vartype name: str - :ivar type: Type of the resource 'Microsoft.Support/services' + :ivar type: Type of the resource 'Microsoft.Support/services'. :vartype type: str - :param display_name: Localized name of Azure service + :param display_name: Localized name of the Azure service. :type display_name: str - :param resource_types: ARM Resource types + :param resource_types: ARM Resource types. :type resource_types: list[str] """ @@ -442,7 +526,13 @@ class Service(Model): 'resource_types': {'key': 'properties.resourceTypes', 'type': '[str]'}, } - def __init__(self, *, display_name: str=None, resource_types=None, **kwargs) -> None: + def __init__( + self, + *, + display_name: Optional[str] = None, + resource_types: Optional[List[str]] = None, + **kwargs + ): super(Service, self).__init__(**kwargs) self.id = None self.name = None @@ -451,11 +541,10 @@ def __init__(self, *, display_name: str=None, resource_types=None, **kwargs) -> self.resource_types = resource_types -class ServiceError(Model): - """The api error details. +class ServiceError(msrest.serialization.Model): + """The API error details. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. :param code: The error code. :type code: str @@ -478,7 +567,14 @@ class ServiceError(Model): 'details': {'key': 'details', 'type': '[ServiceErrorDetail]'}, } - def __init__(self, *, code: str=None, message: str=None, target: str=None, **kwargs) -> None: + def __init__( + self, + *, + code: Optional[str] = None, + message: Optional[str] = None, + target: Optional[str] = None, + **kwargs + ): super(ServiceError, self).__init__(**kwargs) self.code = code self.message = message @@ -486,11 +582,10 @@ def __init__(self, *, code: str=None, message: str=None, target: str=None, **kwa self.details = None -class ServiceErrorDetail(Model): +class ServiceErrorDetail(msrest.serialization.Model): """The error details. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. :ivar code: The error code. :vartype code: str @@ -511,26 +606,28 @@ class ServiceErrorDetail(Model): 'target': {'key': 'target', 'type': 'str'}, } - def __init__(self, *, target: str=None, **kwargs) -> None: + def __init__( + self, + *, + target: Optional[str] = None, + **kwargs + ): super(ServiceErrorDetail, self).__init__(**kwargs) self.code = None self.message = None self.target = target -class ServiceLevelAgreement(Model): +class ServiceLevelAgreement(msrest.serialization.Model): """Service Level Agreement details for a support ticket. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar start_time: Time in UTC (ISO 8601 format) when service level - agreement starts. - :vartype start_time: datetime - :ivar expiration_time: Time in UTC (ISO 8601 format) when service level - agreement expires. - :vartype expiration_time: datetime - :ivar sla_minutes: Service Level Agreement in minutes + :ivar start_time: Time in UTC (ISO 8601 format) when the service level agreement starts. + :vartype start_time: ~datetime.datetime + :ivar expiration_time: Time in UTC (ISO 8601 format) when the service level agreement expires. + :vartype expiration_time: ~datetime.datetime + :ivar sla_minutes: Service Level Agreement in minutes. :vartype sla_minutes: int """ @@ -546,21 +643,44 @@ class ServiceLevelAgreement(Model): 'sla_minutes': {'key': 'slaMinutes', 'type': 'int'}, } - def __init__(self, **kwargs) -> None: + def __init__( + self, + **kwargs + ): super(ServiceLevelAgreement, self).__init__(**kwargs) self.start_time = None self.expiration_time = None self.sla_minutes = None -class SupportEngineer(Model): +class ServicesListResult(msrest.serialization.Model): + """Collection of Service resources. + + :param value: List of Service resources. + :type value: list[~azure.mgmt.support.models.Service] + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[Service]'}, + } + + def __init__( + self, + *, + value: Optional[List["Service"]] = None, + **kwargs + ): + super(ServicesListResult, self).__init__(**kwargs) + self.value = value + + +class SupportEngineer(msrest.serialization.Model): """Support engineer information. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar email_address: Email address of the Azure Support engineer assigned - to the support ticket. + :ivar email_address: Email address of the Azure Support engineer assigned to the support + ticket. :vartype email_address: str """ @@ -572,88 +692,73 @@ class SupportEngineer(Model): 'email_address': {'key': 'emailAddress', 'type': 'str'}, } - def __init__(self, **kwargs) -> None: + def __init__( + self, + **kwargs + ): super(SupportEngineer, self).__init__(**kwargs) self.email_address = None -class SupportTicketDetails(Model): +class SupportTicketDetails(msrest.serialization.Model): """Object that represents SupportTicketDetails resource. - Variables are only populated by the server, and will be ignored when - sending a request. - - All required parameters must be populated in order to send to Azure. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar id: Id of the resource + :ivar id: Id of the resource. :vartype id: str - :ivar name: Name of the resource + :ivar name: Name of the resource. :vartype name: str - :ivar type: Type of the resource 'Microsoft.Support/supportTickets' + :ivar type: Type of the resource 'Microsoft.Support/supportTickets'. :vartype type: str - :param support_ticket_id: System generated support ticket id that is - unique. + :param support_ticket_id: System generated support ticket Id that is unique. :type support_ticket_id: str - :param description: Required. Detailed description of the question or - issue. + :param description: Detailed description of the question or issue. :type description: str - :param problem_classification_id: Required. Each Azure service has its own - set of issue category called problem classification that corresponds to - the type of problem you're experiencing. This parameter is the resource id - of ProblemClassification resource. + :param problem_classification_id: Each Azure service has its own set of issue categories, also + known as problem classification. This parameter is the unique Id for the type of problem you + are experiencing. :type problem_classification_id: str - :ivar problem_classification_display_name: Localized name of problem - classification. + :ivar problem_classification_display_name: Localized name of problem classification. :vartype problem_classification_display_name: str - :param severity: Required. A value that indicates the urgency of the case, - which in turn determines the response time according to the service level - agreement of the technical support plan you have with Azure. Note: - 'Highest critical impact' severity is reserved only to our Premium - customers. Possible values include: 'minimal', 'moderate', 'critical', - 'highestcriticalimpact' + :param severity: A value that indicates the urgency of the case, which in turn determines the + response time according to the service level agreement of the technical support plan you have + with Azure. Note: 'Highest critical impact', also known as the 'Emergency - Severe impact' + level in the Azure portal is reserved only for our Premium customers. Possible values include: + "minimal", "moderate", "critical", "highestcriticalimpact". :type severity: str or ~azure.mgmt.support.models.SeverityLevel - :ivar enrollment_id: Enrollment ID associated with the support ticket. + :ivar enrollment_id: Enrollment Id associated with the support ticket. :vartype enrollment_id: str - :param require24_x7_response: Indicates if this requires a 24x7 response - from Azure. + :param require24_x7_response: Indicates if this requires a 24x7 response from Azure. :type require24_x7_response: bool - :param contact_details: Required. Contact information of the user - requesting to create a support ticket. + :param contact_details: Contact information of the user requesting to create a support ticket. :type contact_details: ~azure.mgmt.support.models.ContactProfile - :param service_level_agreement: Service Level Agreement information for - this support ticket. - :type service_level_agreement: - ~azure.mgmt.support.models.ServiceLevelAgreement - :param support_engineer: Information about support engineer working on - this support ticket. + :param service_level_agreement: Service Level Agreement information for this support ticket. + :type service_level_agreement: ~azure.mgmt.support.models.ServiceLevelAgreement + :param support_engineer: Information about the support engineer working on this support ticket. :type support_engineer: ~azure.mgmt.support.models.SupportEngineer - :ivar support_plan_type: Support plan type associated with the support - ticket. + :ivar support_plan_type: Support plan type associated with the support ticket. :vartype support_plan_type: str - :param title: Required. Title of the support ticket. + :param title: Title of the support ticket. :type title: str - :param problem_start_time: Time in UTC (ISO 8601 format) when the problem - started. - :type problem_start_time: datetime - :param service_id: Required. This is the resource id of the Azure service - resource associated with the support ticket. + :param problem_start_time: Time in UTC (ISO 8601 format) when the problem started. + :type problem_start_time: ~datetime.datetime + :param service_id: This is the resource Id of the Azure service resource associated with the + support ticket. :type service_id: str - :ivar service_display_name: Localized name of Azure service. + :ivar service_display_name: Localized name of the Azure service. :vartype service_display_name: str :ivar status: Status of the support ticket. :vartype status: str - :ivar created_date: Time in UTC (ISO 8601 format) when support ticket was - created. - :vartype created_date: datetime - :ivar modified_date: Time in UTC (ISO 8601 format) when support ticket was - last modified. - :vartype modified_date: datetime - :param technical_ticket_details: Additional ticket details associated with - a technical support ticket request. - :type technical_ticket_details: - ~azure.mgmt.support.models.TechnicalTicketDetails - :param quota_ticket_details: Additional ticket details associated with a - quota support ticket request. + :ivar created_date: Time in UTC (ISO 8601 format) when the support ticket was created. + :vartype created_date: ~datetime.datetime + :ivar modified_date: Time in UTC (ISO 8601 format) when the support ticket was last modified. + :vartype modified_date: ~datetime.datetime + :param technical_ticket_details: Additional ticket details associated with a technical support + ticket request. + :type technical_ticket_details: ~azure.mgmt.support.models.TechnicalTicketDetails + :param quota_ticket_details: Additional ticket details associated with a quota support ticket + request. :type quota_ticket_details: ~azure.mgmt.support.models.QuotaTicketDetails """ @@ -661,15 +766,9 @@ class SupportTicketDetails(Model): 'id': {'readonly': True}, 'name': {'readonly': True}, 'type': {'readonly': True}, - 'description': {'required': True}, - 'problem_classification_id': {'required': True}, 'problem_classification_display_name': {'readonly': True}, - 'severity': {'required': True}, 'enrollment_id': {'readonly': True}, - 'contact_details': {'required': True}, 'support_plan_type': {'readonly': True}, - 'title': {'required': True}, - 'service_id': {'required': True}, 'service_display_name': {'readonly': True}, 'status': {'readonly': True}, 'created_date': {'readonly': True}, @@ -702,7 +801,24 @@ class SupportTicketDetails(Model): 'quota_ticket_details': {'key': 'properties.quotaTicketDetails', 'type': 'QuotaTicketDetails'}, } - def __init__(self, *, description: str, problem_classification_id: str, severity, contact_details, title: str, service_id: str, support_ticket_id: str=None, require24_x7_response: bool=None, service_level_agreement=None, support_engineer=None, problem_start_time=None, technical_ticket_details=None, quota_ticket_details=None, **kwargs) -> None: + def __init__( + self, + *, + support_ticket_id: Optional[str] = None, + description: Optional[str] = None, + problem_classification_id: Optional[str] = None, + severity: Optional[Union[str, "SeverityLevel"]] = None, + require24_x7_response: Optional[bool] = None, + contact_details: Optional["ContactProfile"] = None, + service_level_agreement: Optional["ServiceLevelAgreement"] = None, + support_engineer: Optional["SupportEngineer"] = None, + title: Optional[str] = None, + problem_start_time: Optional[datetime.datetime] = None, + service_id: Optional[str] = None, + technical_ticket_details: Optional["TechnicalTicketDetails"] = None, + quota_ticket_details: Optional["QuotaTicketDetails"] = None, + **kwargs + ): super(SupportTicketDetails, self).__init__(**kwargs) self.id = None self.name = None @@ -729,12 +845,37 @@ def __init__(self, *, description: str, problem_classification_id: str, severity self.quota_ticket_details = quota_ticket_details -class TechnicalTicketDetails(Model): +class SupportTicketsListResult(msrest.serialization.Model): + """Object that represents a collection of SupportTicket resources. + + :param value: List of SupportTicket resources. + :type value: list[~azure.mgmt.support.models.SupportTicketDetails] + :param next_link: The URI to fetch the next page of SupportTicket resources. + :type next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[SupportTicketDetails]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["SupportTicketDetails"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + super(SupportTicketsListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class TechnicalTicketDetails(msrest.serialization.Model): """Additional information for technical support ticket. - :param resource_id: This is the resource id of the Azure service resource - (For example: A virtual machine resource or an HDInsight resource) for - which the support ticket is created. + :param resource_id: This is the resource Id of the Azure service resource (For example: A + virtual machine resource or an HDInsight resource) for which the support ticket is created. :type resource_id: str """ @@ -742,45 +883,45 @@ class TechnicalTicketDetails(Model): 'resource_id': {'key': 'resourceId', 'type': 'str'}, } - def __init__(self, *, resource_id: str=None, **kwargs) -> None: + def __init__( + self, + *, + resource_id: Optional[str] = None, + **kwargs + ): super(TechnicalTicketDetails, self).__init__(**kwargs) self.resource_id = resource_id -class UpdateContactProfile(Model): +class UpdateContactProfile(msrest.serialization.Model): """Contact information associated with the support ticket. - :param first_name: First name + :param first_name: First name. :type first_name: str - :param last_name: Last name + :param last_name: Last name. :type last_name: str - :param preferred_contact_method: Preferred contact method. Possible values - include: 'email', 'phone' - :type preferred_contact_method: str or - ~azure.mgmt.support.models.PreferredContactMethod - :param primary_email_address: Primary email address + :param preferred_contact_method: Preferred contact method. Possible values include: "email", + "phone". + :type preferred_contact_method: str or ~azure.mgmt.support.models.PreferredContactMethod + :param primary_email_address: Primary email address. :type primary_email_address: str - :param additional_email_addresses: Email addresses listed will be copied - on any correspondence about the support ticket + :param additional_email_addresses: Email addresses listed will be copied on any correspondence + about the support ticket. :type additional_email_addresses: list[str] - :param phone_number: Phone number. This is required if preferred contact - method is phone. + :param phone_number: Phone number. This is required if preferred contact method is phone. :type phone_number: str - :param preferred_time_zone: Time zone of the user. This is the name of the - time zone from [Microsoft Time Zone Index - Values](https://support.microsoft.com/en-us/help/973627/microsoft-time-zone-index-values). + :param preferred_time_zone: Time zone of the user. This is the name of the time zone from + `Microsoft Time Zone Index Values `_. :type preferred_time_zone: str :param country: Country of the user. This is the ISO 3166-1 alpha-3 code. :type country: str - :param preferred_support_language: Preferred language of support from - Azure. Support languages vary based on the severity you choose for your - support ticket. Learn more at [Azure Severity and - responsiveness](https://azure.microsoft.com/support/plans/response/). Use - the standard language-country code. Valid values are 'en-us' for English, - 'zh-hans' for Chinese, 'es-es' for Spanish, 'fr-fr' for French, 'ja-jp' - for Japanese, 'ko-kr' for Korean, 'ru-ru' for Russian, 'pt-br' for - Portuguese, 'it-it' for Italian, 'zh-tw' for Chinese and 'de-de' for - German. + :param preferred_support_language: Preferred language of support from Azure. Support languages + vary based on the severity you choose for your support ticket. Learn more at `Azure Severity + and responsiveness `_. Use the standard + language-country code. Valid values are 'en-us' for English, 'zh-hans' for Chinese, 'es-es' for + Spanish, 'fr-fr' for French, 'ja-jp' for Japanese, 'ko-kr' for Korean, 'ru-ru' for Russian, + 'pt-br' for Portuguese, 'it-it' for Italian, 'zh-tw' for Chinese and 'de-de' for German. :type preferred_support_language: str """ @@ -796,7 +937,20 @@ class UpdateContactProfile(Model): 'preferred_support_language': {'key': 'preferredSupportLanguage', 'type': 'str'}, } - def __init__(self, *, first_name: str=None, last_name: str=None, preferred_contact_method=None, primary_email_address: str=None, additional_email_addresses=None, phone_number: str=None, preferred_time_zone: str=None, country: str=None, preferred_support_language: str=None, **kwargs) -> None: + def __init__( + self, + *, + first_name: Optional[str] = None, + last_name: Optional[str] = None, + preferred_contact_method: Optional[Union[str, "PreferredContactMethod"]] = None, + primary_email_address: Optional[str] = None, + additional_email_addresses: Optional[List[str]] = None, + phone_number: Optional[str] = None, + preferred_time_zone: Optional[str] = None, + country: Optional[str] = None, + preferred_support_language: Optional[str] = None, + **kwargs + ): super(UpdateContactProfile, self).__init__(**kwargs) self.first_name = first_name self.last_name = last_name @@ -809,17 +963,15 @@ def __init__(self, *, first_name: str=None, last_name: str=None, preferred_conta self.preferred_support_language = preferred_support_language -class UpdateSupportTicket(Model): - """Updates severity, ticket status and contact details in the support ticket. +class UpdateSupportTicket(msrest.serialization.Model): + """Updates severity, ticket status, and contact details in the support ticket. - :param severity: Severity level. Possible values include: 'minimal', - 'moderate', 'critical', 'highestcriticalimpact' + :param severity: Severity level. Possible values include: "minimal", "moderate", "critical", + "highestcriticalimpact". :type severity: str or ~azure.mgmt.support.models.SeverityLevel - :param status: Status to be updated on the ticket. Possible values - include: 'open', 'closed' + :param status: Status to be updated on the ticket. Possible values include: "open", "closed". :type status: str or ~azure.mgmt.support.models.Status - :param contact_details: Contact details to be updated on the support - ticket. + :param contact_details: Contact details to be updated on the support ticket. :type contact_details: ~azure.mgmt.support.models.UpdateContactProfile """ @@ -829,7 +981,14 @@ class UpdateSupportTicket(Model): 'contact_details': {'key': 'contactDetails', 'type': 'UpdateContactProfile'}, } - def __init__(self, *, severity=None, status=None, contact_details=None, **kwargs) -> None: + def __init__( + self, + *, + severity: Optional[Union[str, "SeverityLevel"]] = None, + status: Optional[Union[str, "Status"]] = None, + contact_details: Optional["UpdateContactProfile"] = None, + **kwargs + ): super(UpdateSupportTicket, self).__init__(**kwargs) self.severity = severity self.status = status diff --git a/src/support/azext_support/vendored_sdks/models/_paged_models.py b/src/support/azext_support/vendored_sdks/models/_paged_models.py deleted file mode 100644 index 99b9c1316b0..00000000000 --- a/src/support/azext_support/vendored_sdks/models/_paged_models.py +++ /dev/null @@ -1,79 +0,0 @@ -# coding=utf-8 -# -------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# -# Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. -# -------------------------------------------------------------------------- - -from msrest.paging import Paged - - -class OperationPaged(Paged): - """ - A paging container for iterating over a list of :class:`Operation ` object - """ - - _attribute_map = { - 'next_link': {'key': 'nextLink', 'type': 'str'}, - 'current_page': {'key': 'value', 'type': '[Operation]'} - } - - def __init__(self, *args, **kwargs): - - super(OperationPaged, self).__init__(*args, **kwargs) -class ServicePaged(Paged): - """ - A paging container for iterating over a list of :class:`Service ` object - """ - - _attribute_map = { - 'next_link': {'key': 'nextLink', 'type': 'str'}, - 'current_page': {'key': 'value', 'type': '[Service]'} - } - - def __init__(self, *args, **kwargs): - - super(ServicePaged, self).__init__(*args, **kwargs) -class ProblemClassificationPaged(Paged): - """ - A paging container for iterating over a list of :class:`ProblemClassification ` object - """ - - _attribute_map = { - 'next_link': {'key': 'nextLink', 'type': 'str'}, - 'current_page': {'key': 'value', 'type': '[ProblemClassification]'} - } - - def __init__(self, *args, **kwargs): - - super(ProblemClassificationPaged, self).__init__(*args, **kwargs) -class SupportTicketDetailsPaged(Paged): - """ - A paging container for iterating over a list of :class:`SupportTicketDetails ` object - """ - - _attribute_map = { - 'next_link': {'key': 'nextLink', 'type': 'str'}, - 'current_page': {'key': 'value', 'type': '[SupportTicketDetails]'} - } - - def __init__(self, *args, **kwargs): - - super(SupportTicketDetailsPaged, self).__init__(*args, **kwargs) -class CommunicationDetailsPaged(Paged): - """ - A paging container for iterating over a list of :class:`CommunicationDetails ` object - """ - - _attribute_map = { - 'next_link': {'key': 'nextLink', 'type': 'str'}, - 'current_page': {'key': 'value', 'type': '[CommunicationDetails]'} - } - - def __init__(self, *args, **kwargs): - - super(CommunicationDetailsPaged, self).__init__(*args, **kwargs) diff --git a/src/support/azext_support/vendored_sdks/operations/__init__.py b/src/support/azext_support/vendored_sdks/operations/__init__.py index 2a23010489d..74df2821173 100644 --- a/src/support/azext_support/vendored_sdks/operations/__init__.py +++ b/src/support/azext_support/vendored_sdks/operations/__init__.py @@ -1,12 +1,9 @@ # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# +# Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from ._operations import Operations diff --git a/src/support/azext_support/vendored_sdks/operations/_communications_operations.py b/src/support/azext_support/vendored_sdks/operations/_communications_operations.py index 81009aa7fc0..e434a0ce073 100644 --- a/src/support/azext_support/vendored_sdks/operations/_communications_operations.py +++ b/src/support/azext_support/vendored_sdks/operations/_communications_operations.py @@ -1,360 +1,393 @@ # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# +# Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- +from typing import TYPE_CHECKING +import warnings -import uuid -from msrest.pipeline import ClientRawResponse -from msrest.polling import LROPoller, NoPolling -from msrestazure.polling.arm_polling import ARMPolling +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpRequest, HttpResponse +from azure.core.polling import LROPoller, NoPolling, PollingMethod +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.arm_polling import ARMPolling -from .. import models +from .. import models as _models +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from typing import Any, Callable, Dict, Generic, Iterable, Optional, TypeVar, Union + + T = TypeVar('T') + ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] class CommunicationsOperations(object): """CommunicationsOperations operations. - You should not instantiate directly this class, but create a Client instance that will create it for you and attach it as attribute. + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.support.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: Api version. Constant value: "2020-04-01". """ - models = models + models = _models def __init__(self, client, config, serializer, deserializer): - self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2020-04-01" - - self.config = config + self._config = config def check_name_availability( - self, support_ticket_name, name, type, custom_headers=None, raw=False, **operation_config): - """Check the availability of a resource name. This API should to be used - to check the uniqueness of the name for adding a new communication to - the support ticket. - - :param support_ticket_name: Support ticket name + self, + support_ticket_name, # type: str + check_name_availability_input, # type: "_models.CheckNameAvailabilityInput" + **kwargs # type: Any + ): + # type: (...) -> "_models.CheckNameAvailabilityOutput" + """Check the availability of a resource name. This API should be used to check the uniqueness of + the name for adding a new communication to the support ticket. + + :param support_ticket_name: Support ticket name. :type support_ticket_name: str - :param name: The resource name to validate - :type name: str - :param type: The type of resource. Possible values include: - 'Microsoft.Support/supportTickets', 'Microsoft.Support/communications' - :type type: str or ~azure.mgmt.support.models.Type - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: CheckNameAvailabilityOutput or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.support.models.CheckNameAvailabilityOutput or - ~msrest.pipeline.ClientRawResponse - :raises: - :class:`ExceptionResponseException` + :param check_name_availability_input: Input to check. + :type check_name_availability_input: ~azure.mgmt.support.models.CheckNameAvailabilityInput + :keyword callable cls: A custom type or function that will be passed the direct response + :return: CheckNameAvailabilityOutput, or the result of cls(response) + :rtype: ~azure.mgmt.support.models.CheckNameAvailabilityOutput + :raises: ~azure.core.exceptions.HttpResponseError """ - check_name_availability_input = models.CheckNameAvailabilityInput(name=name, type=type) + cls = kwargs.pop('cls', None) # type: ClsType["_models.CheckNameAvailabilityOutput"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-04-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" # Construct URL - url = self.check_name_availability.metadata['url'] + url = self.check_name_availability.metadata['url'] # type: ignore path_format_arguments = { 'supportTicketName': self._serialize.url("support_ticket_name", support_ticket_name, 'str'), - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - header_parameters['Content-Type'] = 'application/json; charset=utf-8' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct body - body_content = self._serialize.body(check_name_availability_input, 'CheckNameAvailabilityInput') + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct and send request - request = self._client.post(url, query_parameters, header_parameters, body_content) - response = self._client.send(request, stream=False, **operation_config) + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(check_name_availability_input, 'CheckNameAvailabilityInput') + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200]: - raise models.ExceptionResponseException(self._deserialize, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(_models.ExceptionResponse, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - deserialized = None - if response.status_code == 200: - deserialized = self._deserialize('CheckNameAvailabilityOutput', response) + deserialized = self._deserialize('CheckNameAvailabilityOutput', pipeline_response) - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - return client_raw_response + if cls: + return cls(pipeline_response, deserialized, {}) return deserialized - check_name_availability.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}/checkNameAvailability'} + check_name_availability.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}/checkNameAvailability'} # type: ignore def list( - self, support_ticket_name, top=None, filter=None, custom_headers=None, raw=False, **operation_config): - """Lists all communications (attachments not included) for a support - ticket.

You can also filter support ticket communications by - _CreatedDate_ or _CommunicationType_ using the $filter parameter. The - only type of communication supported today is _Web_. Output will be a - paged result with _nextLink_, using which you can retrieve the next set - of Communication results.

Support ticket data is available - for 12 months after ticket creation. If a ticket was created more than - 12 months ago, a request for data might cause an error. - - :param support_ticket_name: Support ticket name + self, + support_ticket_name, # type: str + top=None, # type: Optional[int] + filter=None, # type: Optional[str] + **kwargs # type: Any + ): + # type: (...) -> Iterable["_models.CommunicationsListResult"] + """Lists all communications (attachments not included) for a support ticket. :code:`
`
+ You can also filter support ticket communications by *CreatedDate* or *CommunicationType* using + the $filter parameter. The only type of communication supported today is *Web*. Output will be + a paged result with *nextLink*\ , using which you can retrieve the next set of Communication + results. :code:`
`:code:`
`Support ticket data is available for 18 months after ticket + creation. If a ticket was created more than 18 months ago, a request for data might cause an + error. + + :param support_ticket_name: Support ticket name. :type support_ticket_name: str - :param top: The number of values to return in the collection. Default - is 10 and max is 10. + :param top: The number of values to return in the collection. Default is 10 and max is 10. :type top: int - :param filter: The filter to apply on the operation. You can filter by - communicationType and createdDate properties. CommunicationType - supports Equals ('eq') operator and createdDate supports Greater Than - ('gt') and Greater Than or Equals ('ge') operators. You may combine - the CommunicationType and CreatedDate filters by Logical And ('and') - operator. + :param filter: The filter to apply on the operation. You can filter by communicationType and + createdDate properties. CommunicationType supports Equals ('eq') operator and createdDate + supports Greater Than ('gt') and Greater Than or Equals ('ge') operators. You may combine the + CommunicationType and CreatedDate filters by Logical And ('and') operator. :type filter: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: An iterator like instance of CommunicationDetails - :rtype: - ~azure.mgmt.support.models.CommunicationDetailsPaged[~azure.mgmt.support.models.CommunicationDetails] - :raises: - :class:`ExceptionResponseException` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either CommunicationsListResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.support.models.CommunicationsListResult] + :raises: ~azure.core.exceptions.HttpResponseError """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.CommunicationsListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-04-01" + accept = "application/json" + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + if not next_link: # Construct URL - url = self.list.metadata['url'] + url = self.list.metadata['url'] # type: ignore path_format_arguments = { 'supportTicketName': self._serialize.url("support_ticket_name", support_ticket_name, 'str'), - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), } url = self._client.format_url(url, **path_format_arguments) - # Construct parameters - query_parameters = {} + query_parameters = {} # type: Dict[str, Any] if top is not None: query_parameters['$top'] = self._serialize.query("top", top, 'int') if filter is not None: query_parameters['$filter'] = self._serialize.query("filter", filter, 'str') - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + request = self._client.get(url, query_parameters, header_parameters) else: url = next_link - query_parameters = {} - - # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request - request = self._client.get(url, query_parameters, header_parameters) + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) return request - def internal_paging(next_link=None): + def extract_data(pipeline_response): + deserialized = self._deserialize('CommunicationsListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): request = prepare_request(next_link) - response = self._client.send(request, stream=False, **operation_config) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200]: - raise models.ExceptionResponseException(self._deserialize, response) - - return response + error = self._deserialize(_models.ExceptionResponse, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - # Deserialize response - header_dict = None - if raw: - header_dict = {} - deserialized = models.CommunicationDetailsPaged(internal_paging, self._deserialize.dependencies, header_dict) + return pipeline_response - return deserialized - list.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}/communications'} + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}/communications'} # type: ignore def get( - self, support_ticket_name, communication_name, custom_headers=None, raw=False, **operation_config): + self, + support_ticket_name, # type: str + communication_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> "_models.CommunicationDetails" """Returns communication details for a support ticket. - :param support_ticket_name: Support ticket name + :param support_ticket_name: Support ticket name. :type support_ticket_name: str - :param communication_name: Communication name + :param communication_name: Communication name. :type communication_name: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: CommunicationDetails or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.support.models.CommunicationDetails or - ~msrest.pipeline.ClientRawResponse - :raises: - :class:`ExceptionResponseException` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: CommunicationDetails, or the result of cls(response) + :rtype: ~azure.mgmt.support.models.CommunicationDetails + :raises: ~azure.core.exceptions.HttpResponseError """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.CommunicationDetails"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-04-01" + accept = "application/json" + # Construct URL - url = self.get.metadata['url'] + url = self.get.metadata['url'] # type: ignore path_format_arguments = { 'supportTicketName': self._serialize.url("support_ticket_name", support_ticket_name, 'str'), 'communicationName': self._serialize.url("communication_name", communication_name, 'str'), - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + request = self._client.get(url, query_parameters, header_parameters) - response = self._client.send(request, stream=False, **operation_config) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200]: - raise models.ExceptionResponseException(self._deserialize, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(_models.ExceptionResponse, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - deserialized = None - if response.status_code == 200: - deserialized = self._deserialize('CommunicationDetails', response) + deserialized = self._deserialize('CommunicationDetails', pipeline_response) - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - return client_raw_response + if cls: + return cls(pipeline_response, deserialized, {}) return deserialized - get.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}/communications/{communicationName}'} - + get.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}/communications/{communicationName}'} # type: ignore def _create_initial( - self, support_ticket_name, communication_name, create_communication_parameters, custom_headers=None, raw=False, **operation_config): + self, + support_ticket_name, # type: str + communication_name, # type: str + create_communication_parameters, # type: "_models.CommunicationDetails" + **kwargs # type: Any + ): + # type: (...) -> Optional["_models.CommunicationDetails"] + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.CommunicationDetails"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-04-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + # Construct URL - url = self.create.metadata['url'] + url = self._create_initial.metadata['url'] # type: ignore path_format_arguments = { 'supportTicketName': self._serialize.url("support_ticket_name", support_ticket_name, 'str'), 'communicationName': self._serialize.url("communication_name", communication_name, 'str'), - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - header_parameters['Content-Type'] = 'application/json; charset=utf-8' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct body - body_content = self._serialize.body(create_communication_parameters, 'CommunicationDetails') + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct and send request - request = self._client.put(url, query_parameters, header_parameters, body_content) - response = self._client.send(request, stream=False, **operation_config) + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(create_communication_parameters, 'CommunicationDetails') + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200, 202]: - raise models.ExceptionResponseException(self._deserialize, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(_models.ExceptionResponse, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = None - if response.status_code == 200: - deserialized = self._deserialize('CommunicationDetails', response) + deserialized = self._deserialize('CommunicationDetails', pipeline_response) - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - return client_raw_response + if cls: + return cls(pipeline_response, deserialized, {}) return deserialized - - def create( - self, support_ticket_name, communication_name, create_communication_parameters, custom_headers=None, raw=False, polling=True, **operation_config): + _create_initial.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}/communications/{communicationName}'} # type: ignore + + def begin_create( + self, + support_ticket_name, # type: str + communication_name, # type: str + create_communication_parameters, # type: "_models.CommunicationDetails" + **kwargs # type: Any + ): + # type: (...) -> LROPoller["_models.CommunicationDetails"] """Adds a new customer communication to an Azure support ticket. - :param support_ticket_name: Support ticket name + :param support_ticket_name: Support ticket name. :type support_ticket_name: str - :param communication_name: Communication name + :param communication_name: Communication name. :type communication_name: str - :param create_communication_parameters: Communication object - :type create_communication_parameters: - ~azure.mgmt.support.models.CommunicationDetails - :param dict custom_headers: headers that will be added to the request - :param bool raw: The poller return type is ClientRawResponse, the - direct response alongside the deserialized response - :param polling: True for ARMPolling, False for no polling, or a + :param create_communication_parameters: Communication object. + :type create_communication_parameters: ~azure.mgmt.support.models.CommunicationDetails + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a polling object for personal polling strategy - :return: An instance of LROPoller that returns CommunicationDetails or - ClientRawResponse if raw==True - :rtype: - ~msrestazure.azure_operation.AzureOperationPoller[~azure.mgmt.support.models.CommunicationDetails] - or - ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[~azure.mgmt.support.models.CommunicationDetails]] - :raises: - :class:`ExceptionResponseException` + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either CommunicationDetails or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.support.models.CommunicationDetails] + :raises ~azure.core.exceptions.HttpResponseError: """ - raw_result = self._create_initial( - support_ticket_name=support_ticket_name, - communication_name=communication_name, - create_communication_parameters=create_communication_parameters, - custom_headers=custom_headers, - raw=True, - **operation_config + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.CommunicationDetails"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval ) - - def get_long_running_output(response): - deserialized = self._deserialize('CommunicationDetails', response) - - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - return client_raw_response - + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_initial( + support_ticket_name=support_ticket_name, + communication_name=communication_name, + create_communication_parameters=create_communication_parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('CommunicationDetails', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) return deserialized - lro_delay = operation_config.get( - 'long_running_operation_timeout', - self.config.long_running_operation_timeout) - if polling is True: polling_method = ARMPolling(lro_delay, **operation_config) + path_format_arguments = { + 'supportTicketName': self._serialize.url("support_ticket_name", support_ticket_name, 'str'), + 'communicationName': self._serialize.url("communication_name", communication_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, path_format_arguments=path_format_arguments, **kwargs) elif polling is False: polling_method = NoPolling() else: polling_method = polling - return LROPoller(self._client, raw_result, get_long_running_output, polling_method) - create.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}/communications/{communicationName}'} + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_create.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}/communications/{communicationName}'} # type: ignore diff --git a/src/support/azext_support/vendored_sdks/operations/_operations.py b/src/support/azext_support/vendored_sdks/operations/_operations.py index f41866826e8..51255a98dcb 100644 --- a/src/support/azext_support/vendored_sdks/operations/_operations.py +++ b/src/support/azext_support/vendored_sdks/operations/_operations.py @@ -1,100 +1,110 @@ # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# +# Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- +from typing import TYPE_CHECKING +import warnings -import uuid -from msrest.pipeline import ClientRawResponse +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpRequest, HttpResponse +from azure.mgmt.core.exceptions import ARMErrorFormat -from .. import models +from .. import models as _models +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from typing import Any, Callable, Dict, Generic, Iterable, Optional, TypeVar + + T = TypeVar('T') + ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] class Operations(object): """Operations operations. - You should not instantiate directly this class, but create a Client instance that will create it for you and attach it as attribute. + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.support.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: Api version. Constant value: "2020-04-01". """ - models = models + models = _models def __init__(self, client, config, serializer, deserializer): - self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2020-04-01" - - self.config = config + self._config = config def list( - self, custom_headers=None, raw=False, **operation_config): + self, + **kwargs # type: Any + ): + # type: (...) -> Iterable["_models.OperationsListResult"] """This lists all the available Microsoft Support REST API operations. - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: An iterator like instance of Operation - :rtype: - ~azure.mgmt.support.models.OperationPaged[~azure.mgmt.support.models.Operation] - :raises: - :class:`ExceptionResponseException` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either OperationsListResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.support.models.OperationsListResult] + :raises: ~azure.core.exceptions.HttpResponseError """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.OperationsListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-04-01" + accept = "application/json" + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + if not next_link: # Construct URL - url = self.list.metadata['url'] - + url = self.list.metadata['url'] # type: ignore # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + request = self._client.get(url, query_parameters, header_parameters) else: url = next_link - query_parameters = {} - - # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request - request = self._client.get(url, query_parameters, header_parameters) + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) return request - def internal_paging(next_link=None): + def extract_data(pipeline_response): + deserialized = self._deserialize('OperationsListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return None, iter(list_of_elem) + + def get_next(next_link=None): request = prepare_request(next_link) - response = self._client.send(request, stream=False, **operation_config) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200]: - raise models.ExceptionResponseException(self._deserialize, response) - - return response + error = self._deserialize(_models.ExceptionResponse, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - # Deserialize response - header_dict = None - if raw: - header_dict = {} - deserialized = models.OperationPaged(internal_paging, self._deserialize.dependencies, header_dict) + return pipeline_response - return deserialized - list.metadata = {'url': '/providers/Microsoft.Support/operations'} + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': '/providers/Microsoft.Support/operations'} # type: ignore diff --git a/src/support/azext_support/vendored_sdks/operations/_problem_classifications_operations.py b/src/support/azext_support/vendored_sdks/operations/_problem_classifications_operations.py index 0ec28bdd585..f8871b516c6 100644 --- a/src/support/azext_support/vendored_sdks/operations/_problem_classifications_operations.py +++ b/src/support/azext_support/vendored_sdks/operations/_problem_classifications_operations.py @@ -1,170 +1,179 @@ # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# +# Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- +from typing import TYPE_CHECKING +import warnings -import uuid -from msrest.pipeline import ClientRawResponse +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpRequest, HttpResponse +from azure.mgmt.core.exceptions import ARMErrorFormat -from .. import models +from .. import models as _models +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from typing import Any, Callable, Dict, Generic, Iterable, Optional, TypeVar + + T = TypeVar('T') + ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] class ProblemClassificationsOperations(object): """ProblemClassificationsOperations operations. - You should not instantiate directly this class, but create a Client instance that will create it for you and attach it as attribute. + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.support.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: Api version. Constant value: "2020-04-01". """ - models = models + models = _models def __init__(self, client, config, serializer, deserializer): - self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2020-04-01" - - self.config = config + self._config = config def list( - self, service_name, custom_headers=None, raw=False, **operation_config): - """Lists all the problem classifications (categories) available for a - specific Azure service. Always use the service and problem - classifications obtained programmatically. This practice ensures that - you always have the most recent set of service and problem - classification Ids. - - :param service_name: Name of Azure service for which the problem - classifications need to be retrieved. + self, + service_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> Iterable["_models.ProblemClassificationsListResult"] + """Lists all the problem classifications (categories) available for a specific Azure service. + Always use the service and problem classifications obtained programmatically. This practice + ensures that you always have the most recent set of service and problem classification Ids. + + :param service_name: Name of the Azure service for which the problem classifications need to be + retrieved. :type service_name: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: An iterator like instance of ProblemClassification - :rtype: - ~azure.mgmt.support.models.ProblemClassificationPaged[~azure.mgmt.support.models.ProblemClassification] - :raises: - :class:`ExceptionResponseException` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ProblemClassificationsListResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.support.models.ProblemClassificationsListResult] + :raises: ~azure.core.exceptions.HttpResponseError """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ProblemClassificationsListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-04-01" + accept = "application/json" + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + if not next_link: # Construct URL - url = self.list.metadata['url'] + url = self.list.metadata['url'] # type: ignore path_format_arguments = { - 'serviceName': self._serialize.url("service_name", service_name, 'str') + 'serviceName': self._serialize.url("service_name", service_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) - # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + request = self._client.get(url, query_parameters, header_parameters) else: url = next_link - query_parameters = {} - - # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request - request = self._client.get(url, query_parameters, header_parameters) + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) return request - def internal_paging(next_link=None): + def extract_data(pipeline_response): + deserialized = self._deserialize('ProblemClassificationsListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return None, iter(list_of_elem) + + def get_next(next_link=None): request = prepare_request(next_link) - response = self._client.send(request, stream=False, **operation_config) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200]: - raise models.ExceptionResponseException(self._deserialize, response) - - return response + error = self._deserialize(_models.ExceptionResponse, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - # Deserialize response - header_dict = None - if raw: - header_dict = {} - deserialized = models.ProblemClassificationPaged(internal_paging, self._deserialize.dependencies, header_dict) + return pipeline_response - return deserialized - list.metadata = {'url': '/providers/Microsoft.Support/services/{serviceName}/problemClassifications'} + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': '/providers/Microsoft.Support/services/{serviceName}/problemClassifications'} # type: ignore def get( - self, service_name, problem_classification_name, custom_headers=None, raw=False, **operation_config): + self, + service_name, # type: str + problem_classification_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> "_models.ProblemClassification" """Get problem classification details for a specific Azure service. - :param service_name: Name of Azure service available for support. + :param service_name: Name of the Azure service available for support. :type service_name: str :param problem_classification_name: Name of problem classification. :type problem_classification_name: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: ProblemClassification or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.support.models.ProblemClassification or - ~msrest.pipeline.ClientRawResponse - :raises: - :class:`ExceptionResponseException` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ProblemClassification, or the result of cls(response) + :rtype: ~azure.mgmt.support.models.ProblemClassification + :raises: ~azure.core.exceptions.HttpResponseError """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ProblemClassification"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-04-01" + accept = "application/json" + # Construct URL - url = self.get.metadata['url'] + url = self.get.metadata['url'] # type: ignore path_format_arguments = { 'serviceName': self._serialize.url("service_name", service_name, 'str'), - 'problemClassificationName': self._serialize.url("problem_classification_name", problem_classification_name, 'str') + 'problemClassificationName': self._serialize.url("problem_classification_name", problem_classification_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + request = self._client.get(url, query_parameters, header_parameters) - response = self._client.send(request, stream=False, **operation_config) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200]: - raise models.ExceptionResponseException(self._deserialize, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(_models.ExceptionResponse, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - deserialized = None - if response.status_code == 200: - deserialized = self._deserialize('ProblemClassification', response) + deserialized = self._deserialize('ProblemClassification', pipeline_response) - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - return client_raw_response + if cls: + return cls(pipeline_response, deserialized, {}) return deserialized - get.metadata = {'url': '/providers/Microsoft.Support/services/{serviceName}/problemClassifications/{problemClassificationName}'} + get.metadata = {'url': '/providers/Microsoft.Support/services/{serviceName}/problemClassifications/{problemClassificationName}'} # type: ignore diff --git a/src/support/azext_support/vendored_sdks/operations/_services_operations.py b/src/support/azext_support/vendored_sdks/operations/_services_operations.py index b1c59529cfb..4cd3b2ad61a 100644 --- a/src/support/azext_support/vendored_sdks/operations/_services_operations.py +++ b/src/support/azext_support/vendored_sdks/operations/_services_operations.py @@ -1,164 +1,171 @@ # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# +# Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- +from typing import TYPE_CHECKING +import warnings -import uuid -from msrest.pipeline import ClientRawResponse +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpRequest, HttpResponse +from azure.mgmt.core.exceptions import ARMErrorFormat -from .. import models +from .. import models as _models +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from typing import Any, Callable, Dict, Generic, Iterable, Optional, TypeVar + + T = TypeVar('T') + ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] class ServicesOperations(object): """ServicesOperations operations. - You should not instantiate directly this class, but create a Client instance that will create it for you and attach it as attribute. + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.support.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: Api version. Constant value: "2020-04-01". """ - models = models + models = _models def __init__(self, client, config, serializer, deserializer): - self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2020-04-01" - - self.config = config + self._config = config def list( - self, custom_headers=None, raw=False, **operation_config): - """Lists all the Azure services available for support ticket creation. For - **Technical** issues, select the Service Id that maps to the Azure - service/product as displayed in the **Services** drop-down list on the - Azure portal's [New support - request](https://portal.azure.com/#blade/Microsoft_Azure_Support/HelpAndSupportBlade/overview) - page. Always use the service and it's corresponding problem - classification(s) obtained programmatically for support ticket - creation. This practice ensures that you always have the most recent - set of service and problem classification Ids. - - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: An iterator like instance of Service - :rtype: - ~azure.mgmt.support.models.ServicePaged[~azure.mgmt.support.models.Service] - :raises: - :class:`ExceptionResponseException` + self, + **kwargs # type: Any + ): + # type: (...) -> Iterable["_models.ServicesListResult"] + """Lists all the Azure services available for support ticket creation. For **Technical** issues, + select the Service Id that maps to the Azure service/product as displayed in the **Services** + drop-down list on the Azure portal's `New support request + `_ page. + Always use the service and its corresponding problem classification(s) obtained + programmatically for support ticket creation. This practice ensures that you always have the + most recent set of service and problem classification Ids. + + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ServicesListResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.support.models.ServicesListResult] + :raises: ~azure.core.exceptions.HttpResponseError """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ServicesListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-04-01" + accept = "application/json" + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + if not next_link: # Construct URL - url = self.list.metadata['url'] - + url = self.list.metadata['url'] # type: ignore # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + request = self._client.get(url, query_parameters, header_parameters) else: url = next_link - query_parameters = {} - - # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request - request = self._client.get(url, query_parameters, header_parameters) + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) return request - def internal_paging(next_link=None): + def extract_data(pipeline_response): + deserialized = self._deserialize('ServicesListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return None, iter(list_of_elem) + + def get_next(next_link=None): request = prepare_request(next_link) - response = self._client.send(request, stream=False, **operation_config) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200]: - raise models.ExceptionResponseException(self._deserialize, response) - - return response + error = self._deserialize(_models.ExceptionResponse, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - # Deserialize response - header_dict = None - if raw: - header_dict = {} - deserialized = models.ServicePaged(internal_paging, self._deserialize.dependencies, header_dict) + return pipeline_response - return deserialized - list.metadata = {'url': '/providers/Microsoft.Support/services'} + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': '/providers/Microsoft.Support/services'} # type: ignore def get( - self, service_name, custom_headers=None, raw=False, **operation_config): + self, + service_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> "_models.Service" """Gets a specific Azure service for support ticket creation. - :param service_name: Name of Azure service + :param service_name: Name of the Azure service. :type service_name: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: Service or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.support.models.Service or - ~msrest.pipeline.ClientRawResponse - :raises: - :class:`ExceptionResponseException` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Service, or the result of cls(response) + :rtype: ~azure.mgmt.support.models.Service + :raises: ~azure.core.exceptions.HttpResponseError """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.Service"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-04-01" + accept = "application/json" + # Construct URL - url = self.get.metadata['url'] + url = self.get.metadata['url'] # type: ignore path_format_arguments = { - 'serviceName': self._serialize.url("service_name", service_name, 'str') + 'serviceName': self._serialize.url("service_name", service_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + request = self._client.get(url, query_parameters, header_parameters) - response = self._client.send(request, stream=False, **operation_config) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200]: - raise models.ExceptionResponseException(self._deserialize, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(_models.ExceptionResponse, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - deserialized = None - if response.status_code == 200: - deserialized = self._deserialize('Service', response) + deserialized = self._deserialize('Service', pipeline_response) - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - return client_raw_response + if cls: + return cls(pipeline_response, deserialized, {}) return deserialized - get.metadata = {'url': '/providers/Microsoft.Support/services/{serviceName}'} + get.metadata = {'url': '/providers/Microsoft.Support/services/{serviceName}'} # type: ignore diff --git a/src/support/azext_support/vendored_sdks/operations/_support_tickets_operations.py b/src/support/azext_support/vendored_sdks/operations/_support_tickets_operations.py index 1030c148359..b15abbd6339 100644 --- a/src/support/azext_support/vendored_sdks/operations/_support_tickets_operations.py +++ b/src/support/azext_support/vendored_sdks/operations/_support_tickets_operations.py @@ -1,443 +1,463 @@ # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# +# Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- +from typing import TYPE_CHECKING +import warnings -import uuid -from msrest.pipeline import ClientRawResponse -from msrest.polling import LROPoller, NoPolling -from msrestazure.polling.arm_polling import ARMPolling +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpRequest, HttpResponse +from azure.core.polling import LROPoller, NoPolling, PollingMethod +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.arm_polling import ARMPolling -from .. import models +from .. import models as _models +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from typing import Any, Callable, Dict, Generic, Iterable, Optional, TypeVar, Union + + T = TypeVar('T') + ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] class SupportTicketsOperations(object): """SupportTicketsOperations operations. - You should not instantiate directly this class, but create a Client instance that will create it for you and attach it as attribute. + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.support.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: Api version. Constant value: "2020-04-01". """ - models = models + models = _models def __init__(self, client, config, serializer, deserializer): - self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2020-04-01" - - self.config = config + self._config = config def check_name_availability( - self, name, type, custom_headers=None, raw=False, **operation_config): - """Check the availability of a resource name. This API should to be used - to check the uniqueness of the name for support ticket creation for the - selected subscription. - - :param name: The resource name to validate - :type name: str - :param type: The type of resource. Possible values include: - 'Microsoft.Support/supportTickets', 'Microsoft.Support/communications' - :type type: str or ~azure.mgmt.support.models.Type - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: CheckNameAvailabilityOutput or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.support.models.CheckNameAvailabilityOutput or - ~msrest.pipeline.ClientRawResponse - :raises: - :class:`ExceptionResponseException` + self, + check_name_availability_input, # type: "_models.CheckNameAvailabilityInput" + **kwargs # type: Any + ): + # type: (...) -> "_models.CheckNameAvailabilityOutput" + """Check the availability of a resource name. This API should be used to check the uniqueness of + the name for support ticket creation for the selected subscription. + + :param check_name_availability_input: Input to check. + :type check_name_availability_input: ~azure.mgmt.support.models.CheckNameAvailabilityInput + :keyword callable cls: A custom type or function that will be passed the direct response + :return: CheckNameAvailabilityOutput, or the result of cls(response) + :rtype: ~azure.mgmt.support.models.CheckNameAvailabilityOutput + :raises: ~azure.core.exceptions.HttpResponseError """ - check_name_availability_input = models.CheckNameAvailabilityInput(name=name, type=type) + cls = kwargs.pop('cls', None) # type: ClsType["_models.CheckNameAvailabilityOutput"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-04-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" # Construct URL - url = self.check_name_availability.metadata['url'] + url = self.check_name_availability.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - header_parameters['Content-Type'] = 'application/json; charset=utf-8' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct body - body_content = self._serialize.body(check_name_availability_input, 'CheckNameAvailabilityInput') + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct and send request - request = self._client.post(url, query_parameters, header_parameters, body_content) - response = self._client.send(request, stream=False, **operation_config) + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(check_name_availability_input, 'CheckNameAvailabilityInput') + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200]: - raise models.ExceptionResponseException(self._deserialize, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(_models.ExceptionResponse, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - deserialized = None - if response.status_code == 200: - deserialized = self._deserialize('CheckNameAvailabilityOutput', response) + deserialized = self._deserialize('CheckNameAvailabilityOutput', pipeline_response) - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - return client_raw_response + if cls: + return cls(pipeline_response, deserialized, {}) return deserialized - check_name_availability.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Support/checkNameAvailability'} + check_name_availability.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Support/checkNameAvailability'} # type: ignore def list( - self, top=None, filter=None, custom_headers=None, raw=False, **operation_config): - """Lists all the support tickets for an Azure subscription. You can also - filter the support tickets by _Status_ or _CreatedDate_ using the - $filter parameter. Output will be a paged result with _nextLink_, using - which you can retrieve the next set of support tickets. -

Support ticket data is available for 12 months after ticket - creation. If a ticket was created more than 12 months ago, a request - for data might cause an error. - - :param top: The number of values to return in the collection. Default - is 25 and max is 100. + self, + top=None, # type: Optional[int] + filter=None, # type: Optional[str] + **kwargs # type: Any + ): + # type: (...) -> Iterable["_models.SupportTicketsListResult"] + """Lists all the support tickets for an Azure subscription. You can also filter the support + tickets by *Status* or *CreatedDate* using the $filter parameter. Output will be a paged result + with *nextLink*\ , using which you can retrieve the next set of support tickets. + :code:`
`:code:`
`Support ticket data is available for 18 months after ticket creation. + If a ticket was created more than 18 months ago, a request for data might cause an error. + + :param top: The number of values to return in the collection. Default is 25 and max is 100. :type top: int - :param filter: The filter to apply on the operation. We support 'odata - v4.0' filter semantics. [Learn - more](https://docs.microsoft.com/odata/concepts/queryoptions-overview). - _Status_ filter can only be used with 'eq' operator. For _CreatedDate_ - filter, the supported operators are 'gt' and 'ge'. When using both - filters, combine them using the logical 'AND'. + :param filter: The filter to apply on the operation. We support 'odata v4.0' filter semantics. + `Learn more `_. *Status* + filter can only be used with Equals ('eq') operator. For *CreatedDate* filter, the supported + operators are Greater Than ('gt') and Greater Than or Equals ('ge'). When using both filters, + combine them using the logical 'AND'. :type filter: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: An iterator like instance of SupportTicketDetails - :rtype: - ~azure.mgmt.support.models.SupportTicketDetailsPaged[~azure.mgmt.support.models.SupportTicketDetails] - :raises: - :class:`ExceptionResponseException` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either SupportTicketsListResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.support.models.SupportTicketsListResult] + :raises: ~azure.core.exceptions.HttpResponseError """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.SupportTicketsListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-04-01" + accept = "application/json" + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + if not next_link: # Construct URL - url = self.list.metadata['url'] + url = self.list.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), } url = self._client.format_url(url, **path_format_arguments) - # Construct parameters - query_parameters = {} + query_parameters = {} # type: Dict[str, Any] if top is not None: query_parameters['$top'] = self._serialize.query("top", top, 'int') if filter is not None: query_parameters['$filter'] = self._serialize.query("filter", filter, 'str') - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + request = self._client.get(url, query_parameters, header_parameters) else: url = next_link - query_parameters = {} - - # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request - request = self._client.get(url, query_parameters, header_parameters) + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) return request - def internal_paging(next_link=None): + def extract_data(pipeline_response): + deserialized = self._deserialize('SupportTicketsListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): request = prepare_request(next_link) - response = self._client.send(request, stream=False, **operation_config) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200]: - raise models.ExceptionResponseException(self._deserialize, response) - - return response + error = self._deserialize(_models.ExceptionResponse, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - # Deserialize response - header_dict = None - if raw: - header_dict = {} - deserialized = models.SupportTicketDetailsPaged(internal_paging, self._deserialize.dependencies, header_dict) + return pipeline_response - return deserialized - list.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets'} + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets'} # type: ignore def get( - self, support_ticket_name, custom_headers=None, raw=False, **operation_config): - """Get ticket details for an Azure subscription. Support ticket data is - available for 12 months after ticket creation. If a ticket was created - more than 12 months ago, a request for data might cause an error. + self, + support_ticket_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> "_models.SupportTicketDetails" + """Get ticket details for an Azure subscription. Support ticket data is available for 18 months + after ticket creation. If a ticket was created more than 18 months ago, a request for data + might cause an error. - :param support_ticket_name: Support ticket name + :param support_ticket_name: Support ticket name. :type support_ticket_name: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: SupportTicketDetails or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.support.models.SupportTicketDetails or - ~msrest.pipeline.ClientRawResponse - :raises: - :class:`ExceptionResponseException` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: SupportTicketDetails, or the result of cls(response) + :rtype: ~azure.mgmt.support.models.SupportTicketDetails + :raises: ~azure.core.exceptions.HttpResponseError """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.SupportTicketDetails"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-04-01" + accept = "application/json" + # Construct URL - url = self.get.metadata['url'] + url = self.get.metadata['url'] # type: ignore path_format_arguments = { 'supportTicketName': self._serialize.url("support_ticket_name", support_ticket_name, 'str'), - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + request = self._client.get(url, query_parameters, header_parameters) - response = self._client.send(request, stream=False, **operation_config) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200]: - raise models.ExceptionResponseException(self._deserialize, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(_models.ExceptionResponse, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - deserialized = None - if response.status_code == 200: - deserialized = self._deserialize('SupportTicketDetails', response) + deserialized = self._deserialize('SupportTicketDetails', pipeline_response) - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - return client_raw_response + if cls: + return cls(pipeline_response, deserialized, {}) return deserialized - get.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}'} + get.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}'} # type: ignore def update( - self, support_ticket_name, update_support_ticket, custom_headers=None, raw=False, **operation_config): - """This API allows you to update the severity level, ticket status, and - your contact information in the support ticket.

Note: The - severity levels cannot be changed if a support ticket is actively being - worked upon by an Azure support engineer. In such a case, contact your - support engineer to request severity update by adding a new - communication using the Communications API.

Changing the - ticket status to _closed_ is allowed only on an unassigned case. When - an engineer is actively working on the ticket, send your ticket closure - request by sending a note to your engineer. - - :param support_ticket_name: Support ticket name + self, + support_ticket_name, # type: str + update_support_ticket, # type: "_models.UpdateSupportTicket" + **kwargs # type: Any + ): + # type: (...) -> "_models.SupportTicketDetails" + """This API allows you to update the severity level, ticket status, and your contact information + in the support ticket.:code:`
`:code:`
`Note: The severity levels cannot be changed if + a support ticket is actively being worked upon by an Azure support engineer. In such a case, + contact your support engineer to request severity update by adding a new communication using + the Communications API.:code:`
`:code:`
`Changing the ticket status to *closed* is + allowed only on an unassigned case. When an engineer is actively working on the ticket, send + your ticket closure request by sending a note to your engineer. + + :param support_ticket_name: Support ticket name. :type support_ticket_name: str - :param update_support_ticket: UpdateSupportTicket object - :type update_support_ticket: - ~azure.mgmt.support.models.UpdateSupportTicket - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: SupportTicketDetails or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.support.models.SupportTicketDetails or - ~msrest.pipeline.ClientRawResponse - :raises: - :class:`ExceptionResponseException` + :param update_support_ticket: UpdateSupportTicket object. + :type update_support_ticket: ~azure.mgmt.support.models.UpdateSupportTicket + :keyword callable cls: A custom type or function that will be passed the direct response + :return: SupportTicketDetails, or the result of cls(response) + :rtype: ~azure.mgmt.support.models.SupportTicketDetails + :raises: ~azure.core.exceptions.HttpResponseError """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.SupportTicketDetails"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-04-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + # Construct URL - url = self.update.metadata['url'] + url = self.update.metadata['url'] # type: ignore path_format_arguments = { 'supportTicketName': self._serialize.url("support_ticket_name", support_ticket_name, 'str'), - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - header_parameters['Content-Type'] = 'application/json; charset=utf-8' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct body - body_content = self._serialize.body(update_support_ticket, 'UpdateSupportTicket') + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct and send request - request = self._client.patch(url, query_parameters, header_parameters, body_content) - response = self._client.send(request, stream=False, **operation_config) + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(update_support_ticket, 'UpdateSupportTicket') + body_content_kwargs['content'] = body_content + request = self._client.patch(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200]: - raise models.ExceptionResponseException(self._deserialize, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(_models.ExceptionResponse, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - deserialized = None - if response.status_code == 200: - deserialized = self._deserialize('SupportTicketDetails', response) + deserialized = self._deserialize('SupportTicketDetails', pipeline_response) - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - return client_raw_response + if cls: + return cls(pipeline_response, deserialized, {}) return deserialized - update.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}'} - + update.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}'} # type: ignore def _create_initial( - self, support_ticket_name, create_support_ticket_parameters, custom_headers=None, raw=False, **operation_config): + self, + support_ticket_name, # type: str + create_support_ticket_parameters, # type: "_models.SupportTicketDetails" + **kwargs # type: Any + ): + # type: (...) -> Optional["_models.SupportTicketDetails"] + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.SupportTicketDetails"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-04-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + # Construct URL - url = self.create.metadata['url'] + url = self._create_initial.metadata['url'] # type: ignore path_format_arguments = { 'supportTicketName': self._serialize.url("support_ticket_name", support_ticket_name, 'str'), - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - header_parameters['Content-Type'] = 'application/json; charset=utf-8' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct body - body_content = self._serialize.body(create_support_ticket_parameters, 'SupportTicketDetails') + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct and send request - request = self._client.put(url, query_parameters, header_parameters, body_content) - response = self._client.send(request, stream=False, **operation_config) + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(create_support_ticket_parameters, 'SupportTicketDetails') + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200, 202]: - raise models.ExceptionResponseException(self._deserialize, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(_models.ExceptionResponse, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = None - if response.status_code == 200: - deserialized = self._deserialize('SupportTicketDetails', response) + deserialized = self._deserialize('SupportTicketDetails', pipeline_response) - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - return client_raw_response + if cls: + return cls(pipeline_response, deserialized, {}) return deserialized - - def create( - self, support_ticket_name, create_support_ticket_parameters, custom_headers=None, raw=False, polling=True, **operation_config): - """Creates a new support ticket for Subscription and Service limits - (Quota), Technical, Billing, and Subscription Management issues for the - specified subscription. Learn the - [prerequisites](https://aka.ms/supportAPI) required to create a support - ticket.

Always call the Services and ProblemClassifications - API to get the most recent set of services and problem categories - required for support ticket creation.

Adding attachments are - not currently supported via the API. To add a file to an existing - support ticket, visit the [Manage support - ticket](https://portal.azure.com/#blade/Microsoft_Azure_Support/HelpAndSupportBlade/managesupportrequest) - page in the Azure portal, select the support ticket, and use the file - upload control to add a new file.

Providing consent to share - diagnostic information with Azure support is currently not supported - via the API. Azure support engineer, working on your ticket, will reach - out to you for consent if your issue requires gathering diagnostic - information from your Azure resources.

**Creating a support - ticket for on-behalf-of**: Include _x-ms-authorization-auxiliary_ - header to provide an auxiliary token as per - [this](https://docs.microsoft.com/azure/azure-resource-manager/management/authenticate-multi-tenant). - The primary token will be from the tenant for whom a support ticket is - being raised against the subscription, i.e. Cloud solution provider - (CSP) customer tenant. The auxiliary token will be from the Cloud - solution provider (CSP) partner tenant. + _create_initial.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}'} # type: ignore + + def begin_create( + self, + support_ticket_name, # type: str + create_support_ticket_parameters, # type: "_models.SupportTicketDetails" + **kwargs # type: Any + ): + # type: (...) -> LROPoller["_models.SupportTicketDetails"] + """Creates a new support ticket for Subscription and Service limits (Quota), Technical, Billing, + and Subscription Management issues for the specified subscription. Learn the `prerequisites + `_ required to create a support + ticket.:code:`
`:code:`
`Always call the Services and ProblemClassifications API to get + the most recent set of services and problem categories required for support ticket + creation.:code:`
`:code:`
`Adding attachments is not currently supported via the API. + To add a file to an existing support ticket, visit the `Manage support ticket + `_ + page in the Azure portal, select the support ticket, and use the file upload control to add a + new file.:code:`
`:code:`
`Providing consent to share diagnostic information with Azure + support is currently not supported via the API. The Azure support engineer working on your + ticket will reach out to you for consent if your issue requires gathering diagnostic + information from your Azure resources.:code:`
`:code:`
`\ **Creating a support ticket + for on-behalf-of**\ : Include *x-ms-authorization-auxiliary* header to provide an auxiliary + token as per `documentation `_. The primary token will be from the tenant for + whom a support ticket is being raised against the subscription, i.e. Cloud solution provider + (CSP) customer tenant. The auxiliary token will be from the Cloud solution provider (CSP) + partner tenant. :param support_ticket_name: Support ticket name. :type support_ticket_name: str - :param create_support_ticket_parameters: Support ticket request - payload. - :type create_support_ticket_parameters: - ~azure.mgmt.support.models.SupportTicketDetails - :param dict custom_headers: headers that will be added to the request - :param bool raw: The poller return type is ClientRawResponse, the - direct response alongside the deserialized response - :param polling: True for ARMPolling, False for no polling, or a + :param create_support_ticket_parameters: Support ticket request payload. + :type create_support_ticket_parameters: ~azure.mgmt.support.models.SupportTicketDetails + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a polling object for personal polling strategy - :return: An instance of LROPoller that returns SupportTicketDetails or - ClientRawResponse if raw==True - :rtype: - ~msrestazure.azure_operation.AzureOperationPoller[~azure.mgmt.support.models.SupportTicketDetails] - or - ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[~azure.mgmt.support.models.SupportTicketDetails]] - :raises: - :class:`ExceptionResponseException` + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either SupportTicketDetails or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.support.models.SupportTicketDetails] + :raises ~azure.core.exceptions.HttpResponseError: """ - raw_result = self._create_initial( - support_ticket_name=support_ticket_name, - create_support_ticket_parameters=create_support_ticket_parameters, - custom_headers=custom_headers, - raw=True, - **operation_config + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.SupportTicketDetails"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval ) - - def get_long_running_output(response): - deserialized = self._deserialize('SupportTicketDetails', response) - - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - return client_raw_response - + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_initial( + support_ticket_name=support_ticket_name, + create_support_ticket_parameters=create_support_ticket_parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('SupportTicketDetails', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) return deserialized - lro_delay = operation_config.get( - 'long_running_operation_timeout', - self.config.long_running_operation_timeout) - if polling is True: polling_method = ARMPolling(lro_delay, **operation_config) + path_format_arguments = { + 'supportTicketName': self._serialize.url("support_ticket_name", support_ticket_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, path_format_arguments=path_format_arguments, **kwargs) elif polling is False: polling_method = NoPolling() else: polling_method = polling - return LROPoller(self._client, raw_result, get_long_running_output, polling_method) - create.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}'} + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_create.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}'} # type: ignore diff --git a/src/support/azext_support/vendored_sdks/py.typed b/src/support/azext_support/vendored_sdks/py.typed new file mode 100644 index 00000000000..e5aff4f83af --- /dev/null +++ b/src/support/azext_support/vendored_sdks/py.typed @@ -0,0 +1 @@ +# Marker file for PEP 561. \ No newline at end of file diff --git a/src/support/setup.py b/src/support/setup.py index 12c63f7fe64..22b568b0ca7 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.2' +VERSION = '1.0.3' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers From 99c9e67d294ea99a8d76852d3f2aee04c92e84e2 Mon Sep 17 00:00:00 2001 From: Rudra Sharma Date: Mon, 2 Aug 2021 15:34:03 -0700 Subject: [PATCH 02/12] Per tests --- src/support/azext_support/_utils.py | 15 - src/support/azext_support/custom.py | 9 +- .../recordings/test_support_services.yaml | 347 +- .../recordings/test_support_tickets.yaml | 8412 ++++++++++++++++- ...st_support_tickets_create_validations.yaml | 177 +- 5 files changed, 8634 insertions(+), 326 deletions(-) diff --git a/src/support/azext_support/_utils.py b/src/support/azext_support/_utils.py index b13df024134..d47be545fce 100644 --- a/src/support/azext_support/_utils.py +++ b/src/support/azext_support/_utils.py @@ -5,9 +5,7 @@ import re -from azure.cli.core._profile import Profile from knack.log import get_logger -from knack.util import CLIError logger = get_logger(__name__) @@ -40,16 +38,3 @@ def parse_support_area_path(problem_classification_id): return {"service_name": match.group(1), "problem_classifications_name": match.group(2)} return None - - -def get_bearer_token(cmd, tenant_id): - client = Profile(cli_ctx=cmd.cli_ctx) - - try: - logger.debug("Retrieving access token for tenant %s", tenant_id) - creds, _, _ = client.get_raw_token(tenant=tenant_id) - except CLIError as cli_error: - raise CLIError("Can't find authorization for {0}. ".format(tenant_id) + - "Run \'az login -t --allow-no-subscriptions\' and try again.") from cli_error - - return "Bearer " + creds[1] diff --git a/src/support/azext_support/custom.py b/src/support/azext_support/custom.py index 08e594223f9..17966c39bfd 100644 --- a/src/support/azext_support/custom.py +++ b/src/support/azext_support/custom.py @@ -9,7 +9,7 @@ import json from datetime import date, datetime, timedelta -from azext_support._utils import (get_bearer_token, is_quota_ticket, +from azext_support._utils import (is_quota_ticket, is_technical_ticket, parse_support_area_path) from knack.log import get_logger @@ -135,12 +135,7 @@ def create_support_tickets(cmd, client, logger.debug("Sending create request with below payload: ") logger.debug(json.dumps(body, indent=4)) - custom_headers = {} - if partner_tenant_id is not None: - custom_headers["x-ms-authorization-auxiliary"] = get_bearer_token(cmd, partner_tenant_id) - - return client.begin_create(support_ticket_name=ticket_name, create_support_ticket_parameters=body, - custom_headers=custom_headers) + return client.begin_create(support_ticket_name=ticket_name, create_support_ticket_parameters=body) def create_support_tickets_communications(cmd, client, 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 c2a8b7db244..397326065a1 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,29 +11,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-support/2.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 - accept-language: - - en-US + - 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/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/809e8afe-489e-08b0-95f2-08f835a383e8\",\"name\":\"809e8afe-489e-08b0-95f2-08f835a383e8\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Advanced - Threat Protection - Azure\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/6859f4e8-4a1d-13e4-f276-6d055007e83d\",\"name\":\"6859f4e8-4a1d-13e4-f276-6d055007e83d\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Advanced - Threat Protection - Microsoft Defender\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/94332e54-73b0-b8e3-306e-db3ad13d950b\",\"name\":\"94332e54-73b0-b8e3-306e-db3ad13d950b\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Advanced - Threat Protection - O365\",\"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/8f1ddc5f-0c5e-50c7-9810-e01a8d1da925\",\"name\":\"8f1ddc5f-0c5e-50c7-9810-e01a8d1da925\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"AKS - Engine on Azure Stack Hub\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/c1840ac9-309f-f235-c0ae-4782f283b698\",\"name\":\"c1840ac9-309f-f235-c0ae-4782f283b698\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Alerts + 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\"]}},{\"id\":\"/providers/Microsoft.Support/services/b4d0e877-0166-0474-9a76-b5be30ba40e4\",\"name\":\"b4d0e877-0166-0474-9a76-b5be30ba40e4\",\"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/101732bb-31af-ee61-7c16-d4ad77c86a50\",\"name\":\"101732bb-31af-ee61-7c16-d4ad77c86a50\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Application + 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/90426252-f966-63ea-cbda-cab5ceaa865d\",\"name\":\"90426252-f966-63ea-cbda-cab5ceaa865d\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Automation\",\"resourceTypes\":[\"MICROSOFT.AUTOMATION/AUTOMATIONACCOUNTS\",\"MICROSOFT.AUTOMATION/AUTOMATIONACCOUNTS/RUNBOOKS\",\"MICROSOFT.AUTOMATION/AUTOMATIONACCOUNTS/JOBS\"]}},{\"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 + 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 @@ -41,176 +37,270 @@ interactions: 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/17318db1-cfda-52da-b65f-68e53ba89e64\",\"name\":\"17318db1-cfda-52da-b65f-68e53ba89e64\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Arc for servers\",\"resourceTypes\":[]}},{\"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\"]}},{\"id\":\"/providers/Microsoft.Support/services/76b41038-ae2e-0cb8-32f8-a575b98d07ae\",\"name\":\"76b41038-ae2e-0cb8-32f8-a575b98d07ae\",\"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\":[]}},{\"id\":\"/providers/Microsoft.Support/services/3f14906b-a48e-b51a-d700-b3eb7784bce8\",\"name\":\"3f14906b-a48e-b51a-d700-b3eb7784bce8\",\"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\"]}},{\"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\"]}},{\"id\":\"/providers/Microsoft.Support/services/197bc2a0-4681-2302-f03f-ba9abbcdaddb\",\"name\":\"197bc2a0-4681-2302-f03f-ba9abbcdaddb\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Dev Spaces\",\"resourceTypes\":[\"DevTools\"]}},{\"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/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/3b799b70-420a-6397-e69c-853341d0eab5\",\"name\":\"3b799b70-420a-6397-e69c-853341d0eab5\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - Firewall\",\"resourceTypes\":[\"Microsoft.Network/azureFirewalls\"]}},{\"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 - Preview\",\"resourceTypes\":[\"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/8168c456-2014-a581-dde8-d25e47d964c8\",\"name\":\"8168c456-2014-a581-dde8-d25e47d964c8\",\"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/ef44dd7b-4344-edcf-2eb1-f6f094fd46a3\",\"name\":\"ef44dd7b-4344-edcf-2eb1-f6f094fd46a3\",\"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/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/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/b701b8d6-fc99-aba8-bab9-bc2e171fa89c\",\"name\":\"b701b8d6-fc99-aba8-bab9-bc2e171fa89c\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Azure - RedHat OpenShift\",\"resourceTypes\":[]}},{\"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/9cd60433-a646-8748-7e7f-fd0781fea78e\",\"name\":\"9cd60433-a646-8748-7e7f-fd0781fea78e\",\"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 and Data Box Gateway\",\"resourceTypes\":[\"Microsoft.DataBoxEdge/DataBoxEdgeDevices\"]}},{\"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/1dcbb98a-fbff-9e2a-08c6-0f1fbe934906\",\"name\":\"1dcbb98a-fbff-9e2a-08c6-0f1fbe934906\",\"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/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/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/2bcd736d-e519-397d-e595-396f4e0cce88\",\"name\":\"2bcd736d-e519-397d-e595-396f4e0cce88\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Batch - AI - Preview\",\"resourceTypes\":[]}},{\"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\":[\"NonMICROSOFT.BILLING/BILLING\"]}},{\"id\":\"/providers/Microsoft.Support/services/a2c69e6c-34b6-fc5d-0f35-b496a071c28d\",\"name\":\"a2c69e6c-34b6-fc5d-0f35-b496a071c28d\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Blob + 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/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/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\"]}},{\"id\":\"/providers/Microsoft.Support/services/70a6ce77-640d-fb3b-d2e2-942c479a929b\",\"name\":\"70a6ce77-640d-fb3b-d2e2-942c479a929b\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Cloud + 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/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/6dfefaed-7312-8350-bbe6-c452fe5749c7\",\"name\":\"6dfefaed-7312-8350-bbe6-c452fe5749c7\",\"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/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/9a2cd2eb-f793-9717-a145-3497086f40b4\",\"name\":\"9a2cd2eb-f793-9717-a145-3497086f40b4\",\"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/fd718335-8143-4759-bb14-cf7cff4f585e\",\"name\":\"fd718335-8143-4759-bb14-cf7cff4f585e\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Container + 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/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/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/0d06686e-fac3-fde3-a8c1-6dfbc8bd3865\",\"name\":\"0d06686e-fac3-fde3-a8c1-6dfbc8bd3865\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Data + 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\"]}},{\"id\":\"/providers/Microsoft.Support/services/0c1a625e-85d1-f83b-7248-2367293c9d85\",\"name\":\"0c1a625e-85d1-f83b-7248-2367293c9d85\",\"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\"]}},{\"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/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/b9c52334-7da1-7360-b396-0406b0c9d3b7\",\"name\":\"b9c52334-7da1-7360-b396-0406b0c9d3b7\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Dedicated - Host\",\"resourceTypes\":[\"Microsoft.Compute\"]}},{\"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/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/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/f17737cc-a073-8ec8-04a9-a3f19c631dea\",\"name\":\"f17737cc-a073-8ec8-04a9-a3f19c631dea\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Digital - Twins - Preview\",\"resourceTypes\":[\"MICROSOFT.IOTCENTRAL/IOTAPPS\"]}},{\"id\":\"/providers/Microsoft.Support/services/a79c6645-e39b-3410-6e3c-24c6b96b616b\",\"name\":\"a79c6645-e39b-3410-6e3c-24c6b96b616b\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Enrollment + 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/4fa35c58-016c-a25b-4105-bd667c24ab1f\",\"name\":\"4fa35c58-016c-a25b-4105-bd667c24ab1f\",\"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 - Preview\",\"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 + 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/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/5ffad63a-3267-d6b7-2fa1-6d9134c1fa62\",\"name\":\"5ffad63a-3267-d6b7-2fa1-6d9134c1fa62\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"HDInsight + 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/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/65e73690-23aa-be68-83be-a6b9bd188345\",\"name\":\"65e73690-23aa-be68-83be-a6b9bd188345\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Integration - Service Environment (ISE)\",\"resourceTypes\":[\"MICROSOFT.LOGIC/WORKFLOWS\"]}},{\"id\":\"/providers/Microsoft.Support/services/fb35bf64-b744-16ba-68d1-e1853af0816e\",\"name\":\"fb35bf64-b744-16ba-68d1-e1853af0816e\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"IoT + 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/4ba83714-c274-28d6-af7f-43c12863bf2f\",\"name\":\"4ba83714-c274-28d6-af7f-43c12863bf2f\",\"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/5a3a423f-8667-9095-1770-0a554a934512\",\"name\":\"5a3a423f-8667-9095-1770-0a554a934512\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Kubernetes + 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 and DevTest Labs\",\"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/7b29574f-b855-9dec-9b08-fe4aeaa3bbc0\",\"name\":\"7b29574f-b855-9dec-9b08-fe4aeaa3bbc0\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Load + 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\"]}},{\"id\":\"/providers/Microsoft.Support/services/a1799293-1194-133d-4407-156c57152643\",\"name\":\"a1799293-1194-133d-4407-156c57152643\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Machine + 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\",\"resourceTypes\":[\"MICROSOFT.MACHINELEARNING/WORKSPACES\",\"MICROSOFT.MACHINELEARNING/COMMITMENTPLANS\",\"MICROSOFT.MACHINELEARNING/WEBSERVICES\",\"MICROSOFT.MACHINELEARNINGEXPERIMENTATION/ACCOUNTS\",\"MICROSOFT.MACHINELEARNINGMODELMANAGEMENT/ACCOUNTS\"]}},{\"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/2c32f727-0b95-8324-22c8-b953c938833c\",\"name\":\"2c32f727-0b95-8324-22c8-b953c938833c\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Management + 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/3f816e19-cbf7-f192-a725-63c0ebe7d07d\",\"name\":\"3f816e19-cbf7-f192-a725-63c0ebe7d07d\",\"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/8ab9233e-aa65-ab0a-cf6f-7e4ec528556a\",\"name\":\"8ab9233e-aa65-ab0a-cf6f-7e4ec528556a\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Microsoft - Healthcare Bot Service\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/389d15a1-c6fa-bbb6-f3fd-523a62a2b3c5\",\"name\":\"389d15a1-c6fa-bbb6-f3fd-523a62a2b3c5\",\"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/004289a5-11b0-8289-47ea-f2b4c62c4a47\",\"name\":\"004289a5-11b0-8289-47ea-f2b4c62c4a47\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Mobile - App\",\"resourceTypes\":[\"MICROSOFT.WEB/SITES\"]}},{\"id\":\"/providers/Microsoft.Support/services/b7743438-942e-ef29-9abc-589fd697fb9e\",\"name\":\"b7743438-942e-ef29-9abc-589fd697fb9e\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Network + 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\":[]}},{\"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/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/fae15df4-4549-8074-e6ab-11ca2b5a1645\",\"name\":\"fae15df4-4549-8074-e6ab-11ca2b5a1645\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Peering - Service - Preview\",\"resourceTypes\":[\"Microsoft.Network\"]}},{\"id\":\"/providers/Microsoft.Support/services/10b4ca52-06e3-3064-3788-5b396ae8ff45\",\"name\":\"10b4ca52-06e3-3064-3788-5b396ae8ff45\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Policy\",\"resourceTypes\":[]}},{\"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/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/c2804d27-8e0a-f2a3-8540-f4318f539ff6\",\"name\":\"c2804d27-8e0a-f2a3-8540-f4318f539ff6\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Role + 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\",\"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/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 + 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/7fa9504c-364e-66b7-830e-f1333a2e4fe4\",\"name\":\"7fa9504c-364e-66b7-830e-f1333a2e4fe4\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Service - Catalog\",\"resourceTypes\":[\"Microsoft.Solutions/applicationDefinitions\"]}},{\"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\"]}},{\"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 + 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 \u2013 Preview\",\"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 - Preview\",\"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 + 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 - Database 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\":[]}},{\"id\":\"/providers/Microsoft.Support/services/53b14ef9-9b69-4d8c-a458-b8e4c132a815\",\"name\":\"53b14ef9-9b69-4d8c-a458-b8e4c132a815\",\"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/6a9c20ed-85c7-c289-d5e2-560da8f2a7c8\",\"name\":\"6a9c20ed-85c7-c289-d5e2-560da8f2a7c8\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Storage + 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\"]}},{\"id\":\"/providers/Microsoft.Support/services/f3dc5421-79ef-1efa-41a5-42bf3cbb52c6\",\"name\":\"f3dc5421-79ef-1efa-41a5-42bf3cbb52c6\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Subscription + 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 + 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 - Preview\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/393f9162-a29a-1e9f-1972-d524c7bc7026\",\"name\":\"393f9162-a29a-1e9f-1972-d524c7bc7026\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Video + 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\":[]}},{\"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 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\"]}},{\"id\":\"/providers/Microsoft.Support/services/b25271d3-6431-dfbc-5f12-5693326809b3\",\"name\":\"b25271d3-6431-dfbc-5f12-5693326809b3\",\"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 - Preview\",\"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\"]}},{\"id\":\"/providers/Microsoft.Support/services/5a813df8-0060-7015-892d-9f17015a6706\",\"name\":\"5a813df8-0060-7015-892d-9f17015a6706\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"VPN + 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/63cefc01-98f2-7ef4-2b5f-0c4b268a7dad\",\"name\":\"63cefc01-98f2-7ef4-2b5f-0c4b268a7dad\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Windows - Virtual Desktop\",\"resourceTypes\":[]}}]}" + 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\":[]}}]}" headers: cache-control: - no-cache content-length: - - '53715' + - '80958' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Mar 2020 00:21:33 GMT + - Mon, 02 Aug 2021 22:28:17 GMT expires: - '-1' pragma: @@ -242,10 +332,7 @@ interactions: ParameterSetName: - --service-name User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-support/2.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 - accept-language: - - en-US + - 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/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea?api-version=2020-04-01 response: @@ -260,7 +347,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Mar 2020 00:21:34 GMT + - Mon, 02 Aug 2021 22:28:18 GMT expires: - '-1' pragma: @@ -292,33 +379,30 @@ interactions: ParameterSetName: - --service-name User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-support/2.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 - accept-language: - - en-US + - 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/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/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/feb105d8-f457-4af4-c887-ad87f35bd81f\",\"name\":\"feb105d8-f457-4af4-c887-ad87f35bd81f\",\"type\":\"Microsoft.Support/problemClassifications\",\"properties\":{\"displayName\":\"I + 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/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/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/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/c98da85c-d35d-a0de-66a5-adec086b6b04\",\"name\":\"c98da85c-d35d-a0de-66a5-adec086b6b04\",\"type\":\"Microsoft.Support/problemClassifications\",\"properties\":{\"displayName\":\"Issues + 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/2e5a91a4-146b-5521-250b-feb114bb8564\",\"name\":\"2e5a91a4-146b-5521-250b-feb114bb8564\",\"type\":\"Microsoft.Support/problemClassifications\",\"properties\":{\"displayName\":\"Issues + 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 - CLI\"}},{\"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 + 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/a4816543-0185-1eec-7a4c-cdb1bb8f89a6\",\"name\":\"a4816543-0185-1eec-7a4c-cdb1bb8f89a6\",\"type\":\"Microsoft.Support/problemClassifications\",\"properties\":{\"displayName\":\"Issues + 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 - REST API\"}},{\"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/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\"}}]}" + 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\"}}]}" headers: cache-control: - no-cache @@ -327,7 +411,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Mar 2020 00:21:35 GMT + - Mon, 02 Aug 2021 22:28:19 GMT expires: - '-1' pragma: @@ -359,25 +443,22 @@ interactions: ParameterSetName: - --service-name --problem-classification-name User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-support/2.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 - accept-language: - - en-US + - 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/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea/problemClassifications/9dfa5fc1-4b66-106b-d3f3-453568873162?api-version=2020-04-01 + 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: body: - string: '{"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"}}' + string: '{"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"}}' headers: cache-control: - no-cache content-length: - - '348' + - '302' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Mar 2020 00:21:37 GMT + - Mon, 02 Aug 2021 22:28:19 GMT expires: - '-1' pragma: 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 2b827cb069d..8117667073d 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 @@ -13,16 +13,13 @@ interactions: Content-Length: - '86' Content-Type: - - application/json; charset=utf-8 + - application/json 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: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-support/2.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 - accept-language: - - en-US + - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/checkNameAvailability?api-version=2020-04-01 response: @@ -36,7 +33,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Mar 2020 00:21:33 GMT + - Mon, 02 Aug 2021 22:28:20 GMT expires: - '-1' pragma: @@ -63,7 +60,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": "2020-03-09T17:21:33.000Z", + cli test. Do not assign and close after a day.", "problemStartTime": "2021-08-02T15:28:20.000Z", "serviceId": "/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc"}}' headers: Accept: @@ -77,16 +74,13 @@ interactions: Content-Length: - '790' Content-Type: - - application/json; charset=utf-8 + - application/json 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: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-support/2.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 - accept-language: - - en-US + - 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?api-version=2020-04-01 response: @@ -94,17 +88,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/afd37615-7293-4ddf-8f85-8489fc1e0faa?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/e8183592-a95e-43a0-ac81-68677fec2d3d?api-version=2020-04-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 10 Mar 2020 00:21:35 GMT + - Mon, 02 Aug 2021 22:28:21 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationResults/afd37615-7293-4ddf-8f85-8489fc1e0faa?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationResults/e8183592-a95e-43a0-ac81-68677fec2d3d?api-version=2020-04-01 pragma: - no-cache server: @@ -114,7 +108,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 202 message: Accepted @@ -122,7 +116,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -134,13 +128,12 @@ interactions: --contact-email --contact-first-name --contact-language --contact-last-name --contact-method --contact-timezone --problem-classification User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-support/2.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - 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/afd37615-7293-4ddf-8f85-8489fc1e0faa?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/e8183592-a95e-43a0-ac81-68677fec2d3d?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/afd37615-7293-4ddf-8f85-8489fc1e0faa","status":"Succeeded","properties":{"supportTicketCreationWarning":""}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/e8183592-a95e-43a0-ac81-68677fec2d3d","status":"Succeeded","properties":{"supportTicketCreationWarning":""}}' headers: cache-control: - no-cache @@ -149,7 +142,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Mar 2020 00:22:06 GMT + - Mon, 02 Aug 2021 22:28:52 GMT expires: - '-1' pragma: @@ -171,7 +164,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -183,8 +176,7 @@ interactions: --contact-email --contact-first-name --contact-language --contact-last-name --contact-method --contact-timezone --problem-classification User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-support/2.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - 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: @@ -192,17 +184,17 @@ 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","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2020-03-10T00:21:41Z","expirationTime":"2020-03-10T16:21:41Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"ProDirect","supportTicketId":"120031021000031","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":"2020-03-09T17:21:33Z","createdDate":"2020-03-10T00:21:41Z","modifiedDate":"2020-03-10T00:21:42Z"}}' + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-08-02T22:28:39Z","expirationTime":"2021-08-03T14:29:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108020010002474","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-02T15:28:20Z","createdDate":"2021-08-02T22:28:39Z","modifiedDate":"2021-08-02T22:28:51Z"}}' headers: cache-control: - no-cache content-length: - - '1417' + - '1416' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Mar 2020 00:22:07 GMT + - Mon, 02 Aug 2021 22:28:53 GMT expires: - '-1' pragma: @@ -236,30 +228,27 @@ interactions: Content-Length: - '194' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --debug --ticket-name --communication-name --communication-sender --communication-subject --communication-body User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-support/2.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 - accept-language: - - en-US + - 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":"InvalidData","message":"Communication resource name - is invalid. Please provide a valid name.","details":[]}}' + string: '{"error":{"code":"ResourceNameInvalid","message":"Resource name is + invalid. Please provide a valid name","details":[]}}' headers: cache-control: - no-cache content-length: - - '126' + - '119' content-type: - application/json date: - - Tue, 10 Mar 2020 00:22:08 GMT + - Mon, 02 Aug 2021 22:28:56 GMT expires: - '-1' pragma: @@ -271,7 +260,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 400 message: Bad Request @@ -291,15 +280,12 @@ interactions: Content-Length: - '194' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --debug --ticket-name --communication-name --communication-sender --communication-subject --communication-body User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-support/2.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 - accept-language: - - en-US + - 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: @@ -307,17 +293,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/2021a9ef-f442-4f48-9823-44b454b313f9?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/0928a48e-23af-4ed5-a58a-a01a57e28fb3?api-version=2020-04-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 10 Mar 2020 00:22:10 GMT + - Mon, 02 Aug 2021 22:28:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationResults/2021a9ef-f442-4f48-9823-44b454b313f9?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationResults/0928a48e-23af-4ed5-a58a-a01a57e28fb3?api-version=2020-04-01 pragma: - no-cache server: @@ -327,7 +313,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 202 message: Accepted @@ -335,7 +321,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -346,13 +332,12 @@ interactions: - --debug --ticket-name --communication-name --communication-sender --communication-subject --communication-body User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-support/2.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - 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/2021a9ef-f442-4f48-9823-44b454b313f9?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/0928a48e-23af-4ed5-a58a-a01a57e28fb3?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/2021a9ef-f442-4f48-9823-44b454b313f9","status":"Succeeded","properties":{"supportTicketCreationWarning":""}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/0928a48e-23af-4ed5-a58a-a01a57e28fb3","status":"Succeeded","properties":{"supportTicketCreationWarning":""}}' headers: cache-control: - no-cache @@ -361,7 +346,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Mar 2020 00:22:41 GMT + - Mon, 02 Aug 2021 22:29:27 GMT expires: - '-1' pragma: @@ -383,7 +368,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -394,24 +379,23 @@ interactions: - --debug --ticket-name --communication-name --communication-sender --communication-subject --communication-body User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-support/2.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - 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 azure python cli","body":"test body - for communication posted from azure python cli","createdDate":"2020-03-10T00:22:11Z"}}' + subject for communication posted from azur... - TrackingID#2108020010002474","body":"test + body for communication posted from azure python cli","createdDate":"2021-08-02T22:29:01Z"}}' headers: cache-control: - no-cache content-length: - - '567' + - '588' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Mar 2020 00:22:42 GMT + - Mon, 02 Aug 2021 22:29:29 GMT expires: - '-1' pragma: @@ -443,26 +427,49 @@ interactions: ParameterSetName: - --ticket-name User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-support/2.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 - accept-language: - - en-US + - 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 azure python cli","body":"test body - for communication posted from azure python cli","createdDate":"2020-03-10T00:22:11Z"}}]}' + 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#2108020010002474\",\"body\":\"test + body for communication posted from azure python cli\",\"createdDate\":\"2021-08-02T22:29:01Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001/communications/62be7300-e1f3-eb11-94ee-002248231a6b\",\"name\":\"62be7300-e1f3-eb11-94ee-002248231a6b\",\"type\":\"Microsoft.Support/communications\",\"properties\":{\"communicationType\":\"Web\",\"communicationDirection\":\"Outbound\",\"sender\":\"support@microsoftsupport.com\",\"subject\":\"\\nCase + 2108020010002474\u2009 Your question was succe... - TrackingID#2108020010002474\",\"body\":\"Having + trouble viewing this email?\_View\\n your request online\\n\\n\\n\\n\\n\\n\\n\\n\_\\n\\n\\nSupport\\n\\n\\n\\n\\n\\n\_\\nYour + 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\_\\nPlease 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\\nIncident + title:\\n\\ntest ticket from python cli test. Do not assign and close after + a day.\\n\\n\\n\\nSupport request number:\\n\\n2108020010002474\\n\\n\\n\\nSeverity + rating:\\n\\nC\\n\\n\\n\\nContact preference:\\n\\n\\nEmail\\n\\n\\n\\n\\n\\nName:\\n\\nFoo + Bar\\n\\n\\n\\nEmail address:\\n\\n\\nazengcase@microsoft.com\\n\\n\\n\\n\\n\\nContact + numbers:\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\_\\nYou 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\_\\nAdditional + 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\\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\\n\\n\\n\\nOne Microsoft + Way, Redmond, WA 98052 USA\",\"createdDate\":\"2021-08-02T22:28:48Z\"}}]}" headers: cache-control: - no-cache content-length: - - '579' + - '2998' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Mar 2020 00:22:43 GMT + - Mon, 02 Aug 2021 22:29:33 GMT expires: - '-1' pragma: @@ -494,26 +501,23 @@ interactions: ParameterSetName: - --ticket-name --communication-name User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-support/2.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 - accept-language: - - en-US + - 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 azure python cli","body":"test body - for communication posted from azure python cli","createdDate":"2020-03-10T00:22:11Z"}}' + subject for communication posted from azur... - TrackingID#2108020010002474","body":"test + body for communication posted from azure python cli","createdDate":"2021-08-02T22:29:01Z"}}' headers: cache-control: - no-cache content-length: - - '567' + - '588' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Mar 2020 00:22:45 GMT + - Mon, 02 Aug 2021 22:29:35 GMT expires: - '-1' pragma: @@ -545,10 +549,7 @@ interactions: ParameterSetName: - --filters User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-support/2.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 - accept-language: - - en-US + - 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: @@ -556,17 +557,70 @@ interactions: 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":"2020-03-10T00:21:41Z","expirationTime":"2020-03-10T16:21:41Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"ProDirect","supportTicketId":"120031021000031","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":"2020-03-09T17:21:33Z","createdDate":"2020-03-10T00:21:41Z","modifiedDate":"2020-03-10T00:21:42Z"}}]}' + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-08-02T22:28:39Z","expirationTime":"2021-08-03T14:29:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108020010002474","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-02T15:28:20Z","createdDate":"2021-08-02T22:28:39Z","modifiedDate":"2021-08-02T22:28:55Z"}},{"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"}},{"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"}}],"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-28T00%253A02%253A13Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8b8UAAAADADw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522true%2522%257D%255D"}' headers: cache-control: - no-cache content-length: - - '1429' + - '15120' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Mar 2020 00:22:46 GMT + - Mon, 02 Aug 2021 22:29:36 GMT expires: - '-1' pragma: @@ -585,46 +639,184 @@ interactions: code: 200 message: OK - request: - body: '{"severity": "moderate", "contactDetails": {"preferredContactMethod": "phone", - "phoneNumber": "123-456-7890"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - support tickets update + - support tickets list Connection: - keep-alive - Content-Length: - - '110' - Content-Type: + 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-28T00%253A02%253A13Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8b8UAAAADADw%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/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-07-28T18:53:56Z"}},{"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-07-28T18: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-07-28T18:36:55Z"}},{"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-07-28T18:42:12Z"}},{"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-07-28T13:00:04Z"}},{"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-07-27T23: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-07-27T23:30:19Z"}},{"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"}}],"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-07-26T21%253A04%253A36Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9X%252Bz4AAACgDg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-07-28T00%253A02%253A13Z%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: + - '14015' + content-type: - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:29: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: - - --ticket-name --severity --contact-method --contact-phone-number + - --filters User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-support/2.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 - accept-language: - - en-US - 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 + - 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-07-26T21%253A04%253A36Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9X%252Bz4AAACgDg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-07-28T00%253A02%253A13Z%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: '{"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":"2020-03-10T00:21:41Z","expirationTime":"2020-03-10T16:21:41Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"ProDirect","supportTicketId":"120031021000031","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":"2020-03-09T17:21:33Z","createdDate":"2020-03-10T00:21:41Z","modifiedDate":"2020-03-10T00:22:48Z"}}' + string: '{"value":[{"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"}},{"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"}}],"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%25222021-07-22T23%253A50%253A47Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-I6UAAAAAgAA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-07-26T21%253A04%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: - - '1447' + - '14671' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Mar 2020 00:22:50 GMT + - Mon, 02 Aug 2021 22:29:38 GMT expires: - '-1' pragma: @@ -639,51 +831,186 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1195' status: code: 200 message: OK - request: - body: '{"severity": "minimal", "contactDetails": {"preferredContactMethod": "email"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - support tickets update + - support tickets list Connection: - keep-alive - Content-Length: - - '78' - Content-Type: + 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%25222021-07-22T23%253A50%253A47Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-I6UAAAAAgAA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-07-26T21%253A04%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/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"}},{"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"}}],"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%25222021-07-20T05%253A50%253A21Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8v5UAAAAAgAA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522true%2522%257D%255D"}' + headers: + cache-control: + - no-cache + content-length: + - '14064' + content-type: - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:29: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: - - --ticket-name --severity --contact-method + - --filters User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-support/2.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 - accept-language: - - en-US - 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 + - 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%25222021-07-20T05%253A50%253A21Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8v5UAAAAAgAA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522true%2522%257D%255D 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","phoneNumber":"123-456-7890","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2020-03-10T00:22:48Z","expirationTime":"2020-03-10T14:22:48Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"ProDirect","supportTicketId":"120031021000031","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":"2020-03-09T17:21:33Z","createdDate":"2020-03-10T00:21:41Z","modifiedDate":"2020-03-10T00:22:51Z"}}' + string: '{"value":[{"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"}},{"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"}}],"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-07-16T15%253A40%253A37Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BX4kAAAADACg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-07-20T05%253A50%253A21Z%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: - - '1446' + - '13787' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Mar 2020 00:22:53 GMT + - Mon, 02 Aug 2021 22:29:39 GMT expires: - '-1' pragma: @@ -698,51 +1025,184 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' status: code: 200 message: OK - request: - body: '{"status": "closed"}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - support tickets update + - support tickets list Connection: - keep-alive - Content-Length: - - '20' - Content-Type: + 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-07-16T15%253A40%253A37Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BX4kAAAADACg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-07-20T05%253A50%253A21Z%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/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"}},{"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"}}],"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%25222021-07-14T22%253A00%253A20Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8V4EAAAABADQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-07-16T15%253A40%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: + - '13969' + content-type: - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:29: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: - - --ticket-name --status + - --filters User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-support/2.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 - accept-language: - - en-US - 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 + - 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%25222021-07-14T22%253A00%253A20Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8V4EAAAABADQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-07-16T15%253A40%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: '{"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":"2020-03-10T00:22:48Z","expirationTime":"2020-03-10T16:22:48Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"ProDirect","supportTicketId":"120031021000031","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":"2020-03-09T17:21:33Z","createdDate":"2020-03-10T00:21:41Z","modifiedDate":"2020-03-10T00:22:55Z"}}' + string: '{"value":[{"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"}},{"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"}}],"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%25222021-07-13T16%253A14%253A57Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9m20AAAAAgDg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-07-14T22%253A00%253A20Z%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: - - '1448' + - '13910' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Mar 2020 00:22:55 GMT + - Mon, 02 Aug 2021 22:29:40 GMT expires: - '-1' pragma: @@ -757,8 +1217,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1195' status: code: 200 message: OK @@ -770,34 +1228,7660 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - support tickets show + - support tickets list Connection: - keep-alive ParameterSetName: - - --ticket-name + - --filters User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-support/2.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 - accept-language: - - en-US + - 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 + 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%25222021-07-13T16%253A14%253A57Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9m20AAAAAgDg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-07-14T22%253A00%253A20Z%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: '{"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":"2020-03-10T00:22:48Z","expirationTime":"2020-03-10T16:22:48Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"ProDirect","supportTicketId":"120031021000031","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":"2020-03-09T17:21:33Z","createdDate":"2020-03-10T00:21:41Z","modifiedDate":"2020-03-10T00:22:55Z"}}' + string: '{"value":[{"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"}},{"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"}}],"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-07T21%253A28%253A53Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-e2kAAAABACw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-07-13T16%253A14%253A57Z%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: + - '14862' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:29: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%252205C1EB99CD6732%2522%252C%2522max%2522%253A%252205C1EBFFFFFFFE%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-07-07T21%253A28%253A53Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-e2kAAAABACw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-07-13T16%253A14%253A57Z%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/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"}},{"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"}}],"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%25222021-07-01T20%253A56%253A39Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8q0EAAAADADA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-07-07T21%253A28%253A53Z%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: - - '1448' + - '15134' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:29: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%252205C1E399CD6732%2522%252C%2522max%2522%253A%252205C1E3FFFFFFFE%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-07-01T20%253A56%253A39Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8q0EAAAADADA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-07-07T21%253A28%253A53Z%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/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"}},{"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"}}],"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%25222021-06-24T21%253A35%253A14Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-UxkAAAAAgAA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-07-01T20%253A56%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: + - '14579' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:29: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%252205C1C73399CD60%2522%252C%2522max%2522%253A%252205C1C9CD673398%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-06-24T21%253A35%253A14Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-UxkAAAAAgAA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-07-01T20%253A56%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/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"}},{"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"}}],"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-06-17T02%253A15%253A21Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8yvEAAAADACg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-06-24T21%253A35%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: + - '14169' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:29: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%252205C1E5673399CA%2522%252C%2522max%2522%253A%252205C1E5CD673396%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-06-17T02%253A15%253A21Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8yvEAAAADACg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-06-24T21%253A35%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/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"}},{"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"}}],"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-06-14T22%253A49%253A26Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8yvEAAAABACw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-06-17T02%253A15%253A21Z%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: + - Mon, 02 Aug 2021 22:29: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%252205C1EB99CD6732%2522%252C%2522max%2522%253A%252205C1EBFFFFFFFE%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-06-14T22%253A49%253A26Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8yvEAAAABACw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-06-17T02%253A15%253A21Z%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/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"}},{"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"}}],"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-06-08T07%253A51%253A04Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR93sEAAAADABA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-06-14T22%253A49%253A26Z%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: + - '14619' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:29: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%252205C199CD673380%2522%252C%2522max%2522%253A%252205C1A9CD673380%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-06-08T07%253A51%253A04Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR93sEAAAADABA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-06-14T22%253A49%253A26Z%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/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"}},{"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"}}],"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%25222021-06-02T04%253A14%253A55Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR843D4AAACgDQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-06-08T07%253A51%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: + - '14136' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:29: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%252205C1CD673399C8%2522%252C%2522max%2522%253A%252205C1CF3399CD60%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-06-02T04%253A14%253A55Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR843D4AAACgDQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-06-08T07%253A51%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/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"}},{"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"}}],"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%25222021-05-26T23%253A31%253A47Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8Qn0AAAADADQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-06-02T04%253A14%253A55Z%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: + - '15783' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:29: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%252205C1D399CD6730%2522%252C%2522max%2522%253A%252205C1D5673399C8%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-05-26T23%253A31%253A47Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8Qn0AAAADADQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-06-02T04%253A14%253A55Z%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/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"}},{"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"}}],"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-05-24T20%253A50%253A13Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-2nEAAAADAAg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-05-26T23%253A31%253A47Z%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: + - '13868' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:29: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%252205C1E3FFFFFFFE%2522%252C%2522max%2522%253A%252205C1E5673399CA%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-05-24T20%253A50%253A13Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-2nEAAAADAAg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-05-26T23%253A31%253A47Z%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/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"}},{"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"}}],"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%25222021-05-20T15%253A37%253A34Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BK0j4AAACgCw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-05-24T20%253A50%253A13Z%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: + - '13908' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:29: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%252205C1E799CD6730%2522%252C%2522max%2522%253A%252205C1E7CD673396%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-05-20T15%253A37%253A34Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BK0j4AAACgCw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-05-24T20%253A50%253A13Z%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/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"}},{"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"}}],"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%25222021-05-14T21%253A22%253A37Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-Qk0AAAADABg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-05-20T15%253A37%253A34Z%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: + - '13927' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:29: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%252205C1E5CD673396%2522%252C%2522max%2522%253A%252205C1E73399CD64%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-05-14T21%253A22%253A37Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-Qk0AAAADABg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-05-20T15%253A37%253A34Z%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/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"}},{"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"}}],"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%25222021-05-12T07%253A53%253A23Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BTi0AAAAAgDg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-05-14T21%253A22%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: + - '14204' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:29: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%252205C1C9CD673398%2522%252C%2522max%2522%253A%252205C1CD673399C8%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-05-12T07%253A53%253A23Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BTi0AAAAAgDg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-05-14T21%253A22%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/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-06-18T23:50:04Z"}},{"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"}}],"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-06T18%253A44%253A15Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BWg0AAAAAgDA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-05-12T07%253A53%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: + - '13542' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:29: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%252205C1E7FFFFFFFE%2522%252C%2522max%2522%253A%252205C1E9673399CA%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-05-06T18%253A44%253A15Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BWg0AAAAAgDA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-05-12T07%253A53%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/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"}},{"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"}}],"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-05-01T00%253A20%253A35Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8YgkAAAADAAQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-05-06T18%253A44%253A15Z%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: + - '14369' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:29: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%252205C1D1CD673394%2522%252C%2522max%2522%253A%252205C1D399CD6730%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-05-01T00%253A20%253A35Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8YgkAAAADAAQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-05-06T18%253A44%253A15Z%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/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"}},{"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"}}],"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%25222021-04-27T01%253A11%253A51Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8ieUAAAADABw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-05-01T00%253A20%253A35Z%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: + - '15924' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:29: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%252205C1EB3399CD64%2522%252C%2522max%2522%253A%252205C1EB99CD6732%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-04-27T01%253A11%253A51Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8ieUAAAADABw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-05-01T00%253A20%253A35Z%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/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"}},{"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"}}],"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-04-20T04%253A22%253A25Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BCvT4AAABgBA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-04-27T01%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: + - '13995' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:29: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%252205C1D799CD6730%2522%252C%2522max%2522%253A%252205C1D7FFFFFFFC%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-04-20T04%253A22%253A25Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BCvT4AAABgBA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-04-27T01%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/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"}},{"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"}}],"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-04-14T01%253A26%253A34Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-BakAAAABABw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-04-20T04%253A22%253A25Z%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: + - '13992' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:29: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-04-14T01%253A26%253A34Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-BakAAAABABw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-04-20T04%253A22%253A25Z%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/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"}},{"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"}}],"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-04-08T20%253A12%253A52Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9Itj4AAACgDA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-04-14T01%253A26%253A34Z%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: + - '14206' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:29: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%252205C1EF3399CD66%2522%252C%2522max%2522%253A%252205C1EF673399CC%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-04-08T20%253A12%253A52Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9Itj4AAACgDA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-04-14T01%253A26%253A34Z%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/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"}},{"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"}}],"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-04-06T22%253A22%253A11Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8AX0AAAABAAQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-04-08T20%253A12%253A52Z%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: + - Mon, 02 Aug 2021 22:29: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%252205C1E1673399CA%2522%252C%2522max%2522%253A%252205C1E1CD673398%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-04-06T22%253A22%253A11Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8AX0AAAABAAQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-04-08T20%253A12%253A52Z%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/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"}},{"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"}}],"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-16T21%253A26%253A28.7975341Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8lQkAAAABADw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-04-06T22%253A22%253A11Z%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: + - '15252' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:29: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%252205C1DD673399C8%2522%252C%2522max%2522%253A%252205C1DF3399CD60%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-03-16T21%253A26%253A28.7975341Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8lQkAAAABADw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-04-06T22%253A22%253A11Z%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/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"}},{"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"}}],"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%25222021-03-11T16%253A45%253A15.1010777Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BiOkAAAAAgAw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-03-16T21%253A26%253A28.7975341Z%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: + - '14864' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:29: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%252205C1B399CD6720%2522%252C%2522max%2522%253A%252205C1B9CD673390%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-03-11T16%253A45%253A15.1010777Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BiOkAAAAAgAw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-03-16T21%253A26%253A28.7975341Z%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/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"}},{"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%253D%2520%255C%25222021-03-11T16%253A45%253A15.1010777Z%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: + - '13953' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:29: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%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%253D%2520%255C%25222021-03-11T16%253A45%253A15.1010777Z%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: + - Mon, 02 Aug 2021 22:29: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%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: + - Mon, 02 Aug 2021 22:29: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%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: + - Mon, 02 Aug 2021 22:29: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%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: + - Mon, 02 Aug 2021 22:29: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%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: + - Mon, 02 Aug 2021 22:29: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%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: + - Mon, 02 Aug 2021 22:29: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%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: + - Mon, 02 Aug 2021 22:29: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%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: + - Mon, 02 Aug 2021 22:29: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%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: + - Mon, 02 Aug 2021 22:29: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%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: + - Mon, 02 Aug 2021 22:29: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%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: + - Mon, 02 Aug 2021 22:29: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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-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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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-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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30:22 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: + - Mon, 02 Aug 2021 22:30:22 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: + - Mon, 02 Aug 2021 22:30: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: + - 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: + - Mon, 02 Aug 2021 22:30: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: + - 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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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 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: + - Mon, 02 Aug 2021 22:30: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 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: + - Mon, 02 Aug 2021 22:30:26 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: + - Mon, 02 Aug 2021 22:30: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+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: + - Mon, 02 Aug 2021 22:30: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+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' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:30: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%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 + 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"}' + headers: + cache-control: + - no-cache + content-length: + - '2556' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:30: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%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 + 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"}' + headers: + cache-control: + - no-cache + content-length: + - '2227' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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 + 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"}' + headers: + cache-control: + - no-cache + content-length: + - '2223' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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: + - Mon, 02 Aug 2021 22:30: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%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 + 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"}' + headers: + cache-control: + - no-cache + content-length: + - '2232' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:30: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%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 + 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"}' + headers: + cache-control: + - no-cache + content-length: + - '2554' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:30: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%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 + 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"}' + headers: + cache-control: + - no-cache + content-length: + - '2556' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:30: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%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 + 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"}' + headers: + cache-control: + - no-cache + content-length: + - '4158' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:30: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%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 + 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: + - Mon, 02 Aug 2021 22:30: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%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 + 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"}' + headers: + cache-control: + - no-cache + content-length: + - '2551' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:30: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%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 + 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: + - Mon, 02 Aug 2021 22:30: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: '{"severity": "moderate", "contactDetails": {"preferredContactMethod": "phone", + "phoneNumber": "123-456-7890"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - support tickets update + Connection: + - keep-alive + Content-Length: + - '110' + Content-Type: + - application/json + 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) + 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: + 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":"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-02T22:28:39Z","expirationTime":"2021-08-03T00:30:46Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108020010002474","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-02T15:28:20Z","createdDate":"2021-08-02T22:28:39Z","modifiedDate":"2021-08-02T22:30:44Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1446' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:30: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 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: '{"severity": "minimal", "contactDetails": {"preferredContactMethod": "email"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - support tickets update + Connection: + - keep-alive + Content-Length: + - '78' + Content-Type: + - application/json + 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) + 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: + 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","phoneNumber":"123-456-7890","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-08-02T22:28:39Z","expirationTime":"2021-08-03T14:31:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108020010002474","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-02T15:28:20Z","createdDate":"2021-08-02T22:28:39Z","modifiedDate":"2021-08-02T22:30:54Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1445' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:30: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 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: '{"status": "closed"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - support tickets update + Connection: + - keep-alive + Content-Length: + - '20' + Content-Type: + - application/json + 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) + 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: + 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","phoneNumber":"123-456-7890","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-08-02T22:28:39Z","expirationTime":"2021-08-03T14:31:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108020010002474","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-02T15:28:20Z","createdDate":"2021-08-02T22:28:39Z","modifiedDate":"2021-08-02T22:31:00Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1447' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:31: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 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - support tickets show + 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?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","phoneNumber":"123-456-7890","preferredTimeZone":"Pacific + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-08-02T22:28:39Z","expirationTime":"2021-08-03T14:31:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108020010002474","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-02T15:28:20Z","createdDate":"2021-08-02T22:28:39Z","modifiedDate":"2021-08-02T22:31:00Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1447' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Mar 2020 00:22:56 GMT + - Mon, 02 Aug 2021 22:31:05 GMT expires: - '-1' pragma: 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 5427a751b51..a9e55db0152 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 @@ -1,4 +1,170 @@ interactions: +- request: + body: '{"name": "test_ticket_from_cli_000001", "type": "Microsoft.Support/supportTickets"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - support tickets create + Connection: + - keep-alive + Content-Length: + - '86' + Content-Type: + - application/json + 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 --technical-resource + User-Agent: + - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/checkNameAvailability?api-version=2020-04-01 + response: + body: + string: '{"nameAvailable":true}' + headers: + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:31: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 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"description": "test ticket from python cli test. Do not + assign and close after a day.", "problemClassificationId": "/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/ef8b3865-0c5a-247b-dcaa-d70fd7611a3c", + "severity": "minimal", "require24X7Response": false, "contactDetails": {"firstName": + "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-02T15:31:07.000Z", + "serviceId": "/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc", + "technicalTicketDetails": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Compute/virtualMachines/testserver"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - support tickets create + Connection: + - keep-alive + Content-Length: + - '962' + Content-Type: + - application/json + 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 --technical-resource + 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?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/78574f5f-157b-4e72-9d1d-f91ecaa704e5?api-version=2020-04-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 02 Aug 2021 22:31:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationResults/78574f5f-157b-4e72-9d1d-f91ecaa704e5?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 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 --technical-resource + 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/78574f5f-157b-4e72-9d1d-f91ecaa704e5?api-version=2020-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/78574f5f-157b-4e72-9d1d-f91ecaa704e5","status":"Failed","error":{"code":"InvalidParameterValue","message":"Resource + Id /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Compute/virtualMachines/testserver + is not valid. Provide a valid ResourceId for technical support ticket","target":"Resource + Id /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Compute/virtualMachines/testserver + is not valid. Provide a valid ResourceId for technical support ticket","details":[]}}' + headers: + cache-control: + - no-cache + content-length: + - '655' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 22:31: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: '{"name": "12345", "type": "Microsoft.Support/supportTickets"}' headers: @@ -13,16 +179,13 @@ interactions: Content-Length: - '61' Content-Type: - - application/json; charset=utf-8 + - application/json 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: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-support/2.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 - accept-language: - - en-US + - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/checkNameAvailability?api-version=2020-04-01 response: @@ -39,7 +202,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Mar 2020 00:21:34 GMT + - Mon, 02 Aug 2021 22:31:40 GMT expires: - '-1' pragma: @@ -55,7 +218,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK From 9ddb83415f4d48149b101c16c946df77a5d91590 Mon Sep 17 00:00:00 2001 From: Rudra Sharma Date: Tue, 3 Aug 2021 02:21:01 -0700 Subject: [PATCH 03/12] Per comments --- src/support/azext_support/_utils.py | 15 +++++++++++++++ src/support/azext_support/custom.py | 7 ++++++- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/src/support/azext_support/_utils.py b/src/support/azext_support/_utils.py index d47be545fce..61db1236413 100644 --- a/src/support/azext_support/_utils.py +++ b/src/support/azext_support/_utils.py @@ -5,7 +5,9 @@ import re +from azure.cli.core._profile import Profile from knack.log import get_logger +from knack.util import CLIError logger = get_logger(__name__) @@ -38,3 +40,16 @@ def parse_support_area_path(problem_classification_id): return {"service_name": match.group(1), "problem_classifications_name": match.group(2)} return None + + +def get_bearer_token(cmd, tenant_id): + client = Profile(cli_ctx=cmd.cli_ctx) + + try: + logger.debug("Retrieving access token for tenant %s", tenant_id) + creds, _, _ = client.get_raw_token(tenant=tenant_id) + except CLIError: + raise CLIError("Can't find authorization for {0}. ".format(tenant_id) + + "Run \'az login -t --allow-no-subscriptions\' and try again.") + + return "Bearer " + creds[1] \ No newline at end of file diff --git a/src/support/azext_support/custom.py b/src/support/azext_support/custom.py index 17966c39bfd..2754f0170b0 100644 --- a/src/support/azext_support/custom.py +++ b/src/support/azext_support/custom.py @@ -9,7 +9,7 @@ import json from datetime import date, datetime, timedelta -from azext_support._utils import (is_quota_ticket, +from azext_support._utils import (get_bearer_token, is_quota_ticket, is_technical_ticket, parse_support_area_path) from knack.log import get_logger @@ -135,6 +135,11 @@ def create_support_tickets(cmd, client, logger.debug("Sending create request with below payload: ") logger.debug(json.dumps(body, indent=4)) + if partner_tenant_id is not None: + external_bearer_token = get_bearer_token(cmd, partner_tenant_id) + client.begin_create(support_ticket_name=ticket_name, create_support_ticket_parameters=body, + headers={'x-ms-authorization-auxiliary': external_bearer_token}) + return client.begin_create(support_ticket_name=ticket_name, create_support_ticket_parameters=body) From a6990442189ea220f17fc3c4e0599c5e7a37666b Mon Sep 17 00:00:00 2001 From: Rudra Sharma Date: Tue, 3 Aug 2021 02:22:50 -0700 Subject: [PATCH 04/12] updates --- src/support/azext_support/_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/support/azext_support/_utils.py b/src/support/azext_support/_utils.py index 61db1236413..8730ce87c99 100644 --- a/src/support/azext_support/_utils.py +++ b/src/support/azext_support/_utils.py @@ -48,8 +48,8 @@ def get_bearer_token(cmd, tenant_id): try: logger.debug("Retrieving access token for tenant %s", tenant_id) creds, _, _ = client.get_raw_token(tenant=tenant_id) - except CLIError: + except CLIError as cli_error: raise CLIError("Can't find authorization for {0}. ".format(tenant_id) + - "Run \'az login -t --allow-no-subscriptions\' and try again.") + "Run \'az login -t --allow-no-subscriptions\' and try again.") from cli_error return "Bearer " + creds[1] \ No newline at end of file From 25bd4d4126e94ea23d35a6bdbc94b3d4a13e357b Mon Sep 17 00:00:00 2001 From: Rudra Sharma Date: Tue, 3 Aug 2021 02:23:27 -0700 Subject: [PATCH 05/12] updates --- src/support/azext_support/_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/support/azext_support/_utils.py b/src/support/azext_support/_utils.py index 8730ce87c99..b13df024134 100644 --- a/src/support/azext_support/_utils.py +++ b/src/support/azext_support/_utils.py @@ -52,4 +52,4 @@ def get_bearer_token(cmd, tenant_id): raise CLIError("Can't find authorization for {0}. ".format(tenant_id) + "Run \'az login -t --allow-no-subscriptions\' and try again.") from cli_error - return "Bearer " + creds[1] \ No newline at end of file + return "Bearer " + creds[1] From eac677a3c3a6501868dc0e704c193c352277506a Mon Sep 17 00:00:00 2001 From: Rudra Sharma Date: Tue, 3 Aug 2021 02:29:35 -0700 Subject: [PATCH 06/12] Updates --- .../recordings/test_support_services.yaml | 8 +- .../recordings/test_support_tickets.yaml | 510 ++++++++++++------ ...st_support_tickets_create_validations.yaml | 18 +- 3 files changed, 352 insertions(+), 184 deletions(-) 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 397326065a1..f1a056d2869 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 @@ -300,7 +300,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:28:17 GMT + - Tue, 03 Aug 2021 09:25:33 GMT expires: - '-1' pragma: @@ -347,7 +347,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:28:18 GMT + - Tue, 03 Aug 2021 09:25:34 GMT expires: - '-1' pragma: @@ -411,7 +411,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:28:19 GMT + - Tue, 03 Aug 2021 09:25:36 GMT expires: - '-1' pragma: @@ -458,7 +458,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:28:19 GMT + - Tue, 03 Aug 2021 09:25:36 GMT expires: - '-1' pragma: 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 8117667073d..ec8daa4ebe5 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 @@ -33,7 +33,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:28:20 GMT + - Tue, 03 Aug 2021 09:25:38 GMT expires: - '-1' pragma: @@ -60,7 +60,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-02T15:28:20.000Z", + cli test. Do not assign and close after a day.", "problemStartTime": "2021-08-03T02:25:38.000Z", "serviceId": "/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc"}}' headers: Accept: @@ -88,17 +88,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/e8183592-a95e-43a0-ac81-68677fec2d3d?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/f13ddba9-8cf5-454b-938b-adee70406ef4?api-version=2020-04-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 02 Aug 2021 22:28:21 GMT + - Tue, 03 Aug 2021 09:25:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationResults/e8183592-a95e-43a0-ac81-68677fec2d3d?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationResults/f13ddba9-8cf5-454b-938b-adee70406ef4?api-version=2020-04-01 pragma: - no-cache server: @@ -130,10 +130,10 @@ interactions: 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/e8183592-a95e-43a0-ac81-68677fec2d3d?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/f13ddba9-8cf5-454b-938b-adee70406ef4?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/e8183592-a95e-43a0-ac81-68677fec2d3d","status":"Succeeded","properties":{"supportTicketCreationWarning":""}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/f13ddba9-8cf5-454b-938b-adee70406ef4","status":"Succeeded","properties":{"supportTicketCreationWarning":""}}' headers: cache-control: - no-cache @@ -142,7 +142,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:28:52 GMT + - Tue, 03 Aug 2021 09:26:10 GMT expires: - '-1' pragma: @@ -184,8 +184,8 @@ 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","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-08-02T22:28:39Z","expirationTime":"2021-08-03T14:29:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108020010002474","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-02T15:28:20Z","createdDate":"2021-08-02T22:28:39Z","modifiedDate":"2021-08-02T22:28:51Z"}}' + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-08-03T09:25:54Z","expirationTime":"2021-08-03T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108030010001057","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-03T02:25:38Z","createdDate":"2021-08-03T09:25:54Z","modifiedDate":"2021-08-03T09:26:09Z"}}' headers: cache-control: - no-cache @@ -194,7 +194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:28:53 GMT + - Tue, 03 Aug 2021 09:26:11 GMT expires: - '-1' pragma: @@ -248,7 +248,7 @@ interactions: content-type: - application/json date: - - Mon, 02 Aug 2021 22:28:56 GMT + - Tue, 03 Aug 2021 09:26:13 GMT expires: - '-1' pragma: @@ -293,17 +293,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/0928a48e-23af-4ed5-a58a-a01a57e28fb3?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/658dd98a-568c-461d-8925-d8f24ff2ec22?api-version=2020-04-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 02 Aug 2021 22:28:57 GMT + - Tue, 03 Aug 2021 09:26:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationResults/0928a48e-23af-4ed5-a58a-a01a57e28fb3?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationResults/658dd98a-568c-461d-8925-d8f24ff2ec22?api-version=2020-04-01 pragma: - no-cache server: @@ -334,10 +334,10 @@ interactions: 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/0928a48e-23af-4ed5-a58a-a01a57e28fb3?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/658dd98a-568c-461d-8925-d8f24ff2ec22?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/0928a48e-23af-4ed5-a58a-a01a57e28fb3","status":"Succeeded","properties":{"supportTicketCreationWarning":""}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/658dd98a-568c-461d-8925-d8f24ff2ec22","status":"Succeeded","properties":{"supportTicketCreationWarning":""}}' headers: cache-control: - no-cache @@ -346,7 +346,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:27 GMT + - Tue, 03 Aug 2021 09:26:46 GMT expires: - '-1' pragma: @@ -385,17 +385,17 @@ interactions: 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#2108020010002474","body":"test - body for communication posted from azure python cli","createdDate":"2021-08-02T22:29:01Z"}}' + subject for communication posted from azur... - TrackingID#2108030010001057","body":"
test
+        body for communication posted from azure python cli
","createdDate":"2021-08-03T09:26:19Z"}}' headers: cache-control: - no-cache content-length: - - '588' + - '599' content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:29 GMT + - Tue, 03 Aug 2021 09:26:47 GMT expires: - '-1' pragma: @@ -433,43 +433,211 @@ interactions: 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#2108020010002474\",\"body\":\"test - body for communication posted from azure python cli\",\"createdDate\":\"2021-08-02T22:29:01Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001/communications/62be7300-e1f3-eb11-94ee-002248231a6b\",\"name\":\"62be7300-e1f3-eb11-94ee-002248231a6b\",\"type\":\"Microsoft.Support/communications\",\"properties\":{\"communicationType\":\"Web\",\"communicationDirection\":\"Outbound\",\"sender\":\"support@microsoftsupport.com\",\"subject\":\"\\nCase - 2108020010002474\u2009 Your question was succe... - TrackingID#2108020010002474\",\"body\":\"Having - trouble viewing this email?\_View\\n your request online\\n\\n\\n\\n\\n\\n\\n\\n\_\\n\\n\\nSupport\\n\\n\\n\\n\\n\\n\_\\nYour - 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 + subject for communication posted from azur... - TrackingID#2108030010001057\",\"body\":\"
test
+        body for communication posted from azure python cli
\",\"createdDate\":\"2021-08-03T09:26:19Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001/communications/43686ccf-3cf4-eb11-94ee-002248231531\",\"name\":\"43686ccf-3cf4-eb11-94ee-002248231531\",\"type\":\"Microsoft.Support/communications\",\"properties\":{\"communicationType\":\"Web\",\"communicationDirection\":\"Outbound\",\"sender\":\"support@microsoftsupport.com\",\"subject\":\"\\nCase + 2108030010001057\u2009 Your question was succe... - TrackingID#2108030010001057\",\"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\_\\nPlease 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\\nIncident - title:\\n\\ntest ticket from python cli test. Do not assign and close after - a day.\\n\\n\\n\\nSupport request number:\\n\\n2108020010002474\\n\\n\\n\\nSeverity - rating:\\n\\nC\\n\\n\\n\\nContact preference:\\n\\n\\nEmail\\n\\n\\n\\n\\n\\nName:\\n\\nFoo - Bar\\n\\n\\n\\nEmail address:\\n\\n\\nazengcase@microsoft.com\\n\\n\\n\\n\\n\\nContact - numbers:\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\_\\nYou 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\_\\nAdditional - 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\\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\\n\\n\\n\\nOne Microsoft - Way, Redmond, WA 98052 USA\",\"createdDate\":\"2021-08-02T22:28:48Z\"}}]}" + 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:\\n2108030010001057
\\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-03T09:26:01Z\"}}]}" headers: cache-control: - no-cache content-length: - - '2998' + - '25548' content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:33 GMT + - Tue, 03 Aug 2021 09:26:52 GMT expires: - '-1' pragma: @@ -507,17 +675,17 @@ interactions: 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#2108020010002474","body":"test - body for communication posted from azure python cli","createdDate":"2021-08-02T22:29:01Z"}}' + subject for communication posted from azur... - TrackingID#2108030010001057","body":"
test
+        body for communication posted from azure python cli
","createdDate":"2021-08-03T09:26:19Z"}}' headers: cache-control: - no-cache content-length: - - '588' + - '599' content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:35 GMT + - Tue, 03 Aug 2021 09:26:53 GMT expires: - '-1' pragma: @@ -557,8 +725,8 @@ interactions: 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-02T22:28:39Z","expirationTime":"2021-08-03T14:29:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108020010002474","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-02T15:28:20Z","createdDate":"2021-08-02T22:28:39Z","modifiedDate":"2021-08-02T22:28:55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107280010003559","name":"2107280010003559","type":"Microsoft.Support/supportTickets","properties":{"description":"This + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-08-03T09:25:54Z","expirationTime":"2021-08-03T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108030010001057","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-03T02:25:38Z","createdDate":"2021-08-03T09:25:54Z","modifiedDate":"2021-08-03T09:26:21Z"}},{"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 @@ -620,7 +788,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:36 GMT + - Tue, 03 Aug 2021 09:26:54 GMT expires: - '-1' pragma: @@ -682,7 +850,7 @@ interactions: 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-07-28T18:42:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107270010000657","name":"2107270010000657","type":"Microsoft.Support/supportTickets","properties":{"description":"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 @@ -692,12 +860,12 @@ interactions: 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-07-27T23:30:45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107260010002832","name":"2107260010002832","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud + 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-07-27T23:30:19Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121072621002620","name":"121072621002620","type":"Microsoft.Support/supportTickets","properties":{"description":"This + Product Case Submission - Preview","status":"Open","createdDate":"2021-07-26T23:30:19Z","modifiedDate":"2021-08-02T23:30:20Z"}},{"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 @@ -716,7 +884,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:37 GMT + - Tue, 03 Aug 2021 09:26:55 GMT expires: - '-1' pragma: @@ -816,7 +984,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:38 GMT + - Tue, 03 Aug 2021 09:26:56 GMT expires: - '-1' pragma: @@ -914,7 +1082,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:38 GMT + - Tue, 03 Aug 2021 09:26:56 GMT expires: - '-1' pragma: @@ -1010,7 +1178,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:39 GMT + - Tue, 03 Aug 2021 09:26:57 GMT expires: - '-1' pragma: @@ -1106,7 +1274,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:40 GMT + - Tue, 03 Aug 2021 09:26:57 GMT expires: - '-1' pragma: @@ -1202,7 +1370,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:40 GMT + - Tue, 03 Aug 2021 09:26:59 GMT expires: - '-1' pragma: @@ -1306,7 +1474,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:41 GMT + - Tue, 03 Aug 2021 09:27:00 GMT expires: - '-1' pragma: @@ -1410,7 +1578,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:41 GMT + - Tue, 03 Aug 2021 09:27:00 GMT expires: - '-1' pragma: @@ -1510,7 +1678,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:42 GMT + - Tue, 03 Aug 2021 09:27:01 GMT expires: - '-1' pragma: @@ -1610,7 +1778,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:43 GMT + - Tue, 03 Aug 2021 09:27:01 GMT expires: - '-1' pragma: @@ -1710,7 +1878,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:43 GMT + - Tue, 03 Aug 2021 09:27:02 GMT expires: - '-1' pragma: @@ -1812,7 +1980,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:44 GMT + - Tue, 03 Aug 2021 09:27:03 GMT expires: - '-1' pragma: @@ -1910,7 +2078,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:45 GMT + - Tue, 03 Aug 2021 09:27:03 GMT expires: - '-1' pragma: @@ -2018,7 +2186,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:45 GMT + - Tue, 03 Aug 2021 09:27:04 GMT expires: - '-1' pragma: @@ -2114,7 +2282,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:46 GMT + - Tue, 03 Aug 2021 09:27:05 GMT expires: - '-1' pragma: @@ -2210,7 +2378,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:46 GMT + - Tue, 03 Aug 2021 09:27:05 GMT expires: - '-1' pragma: @@ -2307,7 +2475,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:47 GMT + - Tue, 03 Aug 2021 09:27:06 GMT expires: - '-1' pragma: @@ -2407,7 +2575,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:47 GMT + - Tue, 03 Aug 2021 09:27:07 GMT expires: - '-1' pragma: @@ -2503,7 +2671,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:48 GMT + - Tue, 03 Aug 2021 09:27:07 GMT expires: - '-1' pragma: @@ -2603,7 +2771,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:48 GMT + - Tue, 03 Aug 2021 09:27:08 GMT expires: - '-1' pragma: @@ -2713,7 +2881,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:49 GMT + - Tue, 03 Aug 2021 09:27:08 GMT expires: - '-1' pragma: @@ -2811,7 +2979,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:49 GMT + - Tue, 03 Aug 2021 09:27:09 GMT expires: - '-1' pragma: @@ -2909,7 +3077,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:50 GMT + - Tue, 03 Aug 2021 09:27:10 GMT expires: - '-1' pragma: @@ -3009,7 +3177,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:50 GMT + - Tue, 03 Aug 2021 09:27:10 GMT expires: - '-1' pragma: @@ -3117,7 +3285,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:51 GMT + - Tue, 03 Aug 2021 09:27:11 GMT expires: - '-1' pragma: @@ -3221,7 +3389,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:51 GMT + - Tue, 03 Aug 2021 09:27:11 GMT expires: - '-1' pragma: @@ -3322,7 +3490,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:52 GMT + - Tue, 03 Aug 2021 09:27:12 GMT expires: - '-1' pragma: @@ -3420,7 +3588,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:53 GMT + - Tue, 03 Aug 2021 09:27:13 GMT expires: - '-1' pragma: @@ -3526,7 +3694,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:53 GMT + - Tue, 03 Aug 2021 09:27:13 GMT expires: - '-1' pragma: @@ -3624,7 +3792,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:54 GMT + - Tue, 03 Aug 2021 09:27:14 GMT expires: - '-1' pragma: @@ -3726,7 +3894,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:55 GMT + - Tue, 03 Aug 2021 09:27:14 GMT expires: - '-1' pragma: @@ -3822,7 +3990,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:55 GMT + - Tue, 03 Aug 2021 09:27:15 GMT expires: - '-1' pragma: @@ -3923,7 +4091,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:56 GMT + - Tue, 03 Aug 2021 09:27:16 GMT expires: - '-1' pragma: @@ -4033,7 +4201,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:56 GMT + - Tue, 03 Aug 2021 09:27:16 GMT expires: - '-1' pragma: @@ -4131,7 +4299,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:57 GMT + - Tue, 03 Aug 2021 09:27:17 GMT expires: - '-1' pragma: @@ -4227,7 +4395,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:57 GMT + - Tue, 03 Aug 2021 09:27:17 GMT expires: - '-1' pragma: @@ -4325,7 +4493,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:58 GMT + - Tue, 03 Aug 2021 09:27:18 GMT expires: - '-1' pragma: @@ -4386,7 +4554,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:59 GMT + - Tue, 03 Aug 2021 09:27:19 GMT expires: - '-1' pragma: @@ -4492,7 +4660,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:29:59 GMT + - Tue, 03 Aug 2021 09:27:19 GMT expires: - '-1' pragma: @@ -4595,7 +4763,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:00 GMT + - Tue, 03 Aug 2021 09:27:20 GMT expires: - '-1' pragma: @@ -4697,7 +4865,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:00 GMT + - Tue, 03 Aug 2021 09:27:20 GMT expires: - '-1' pragma: @@ -4753,7 +4921,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:01 GMT + - Tue, 03 Aug 2021 09:27:21 GMT expires: - '-1' pragma: @@ -4844,7 +5012,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:02 GMT + - Tue, 03 Aug 2021 09:27:22 GMT expires: - '-1' pragma: @@ -4942,7 +5110,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:02 GMT + - Tue, 03 Aug 2021 09:27:22 GMT expires: - '-1' pragma: @@ -5046,7 +5214,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:03 GMT + - Tue, 03 Aug 2021 09:27:23 GMT expires: - '-1' pragma: @@ -5154,7 +5322,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:03 GMT + - Tue, 03 Aug 2021 09:27:23 GMT expires: - '-1' pragma: @@ -5256,7 +5424,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:04 GMT + - Tue, 03 Aug 2021 09:27:24 GMT expires: - '-1' pragma: @@ -5360,7 +5528,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:05 GMT + - Tue, 03 Aug 2021 09:27:24 GMT expires: - '-1' pragma: @@ -5466,7 +5634,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:05 GMT + - Tue, 03 Aug 2021 09:27:25 GMT expires: - '-1' pragma: @@ -5567,7 +5735,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:06 GMT + - Tue, 03 Aug 2021 09:27:26 GMT expires: - '-1' pragma: @@ -5683,7 +5851,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:07 GMT + - Tue, 03 Aug 2021 09:27:26 GMT expires: - '-1' pragma: @@ -5792,7 +5960,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:07 GMT + - Tue, 03 Aug 2021 09:27:27 GMT expires: - '-1' pragma: @@ -5892,7 +6060,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:08 GMT + - Tue, 03 Aug 2021 09:27:27 GMT expires: - '-1' pragma: @@ -5958,7 +6126,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:08 GMT + - Tue, 03 Aug 2021 09:27:28 GMT expires: - '-1' pragma: @@ -6052,7 +6220,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:09 GMT + - Tue, 03 Aug 2021 09:27:29 GMT expires: - '-1' pragma: @@ -6117,7 +6285,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:10 GMT + - Tue, 03 Aug 2021 09:27:29 GMT expires: - '-1' pragma: @@ -6223,7 +6391,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:10 GMT + - Tue, 03 Aug 2021 09:27:30 GMT expires: - '-1' pragma: @@ -6289,7 +6457,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:11 GMT + - Tue, 03 Aug 2021 09:27:30 GMT expires: - '-1' pragma: @@ -6340,7 +6508,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:11 GMT + - Tue, 03 Aug 2021 09:27:31 GMT expires: - '-1' pragma: @@ -6393,7 +6561,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:12 GMT + - Tue, 03 Aug 2021 09:27:32 GMT expires: - '-1' pragma: @@ -6459,7 +6627,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:13 GMT + - Tue, 03 Aug 2021 09:27:32 GMT expires: - '-1' pragma: @@ -6510,7 +6678,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:13 GMT + - Tue, 03 Aug 2021 09:27:33 GMT expires: - '-1' pragma: @@ -6585,7 +6753,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:14 GMT + - Tue, 03 Aug 2021 09:27:33 GMT expires: - '-1' pragma: @@ -6657,7 +6825,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:15 GMT + - Tue, 03 Aug 2021 09:27:34 GMT expires: - '-1' pragma: @@ -6709,7 +6877,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:15 GMT + - Tue, 03 Aug 2021 09:27:35 GMT expires: - '-1' pragma: @@ -6768,7 +6936,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:16 GMT + - Tue, 03 Aug 2021 09:27:35 GMT expires: - '-1' pragma: @@ -6848,7 +7016,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:16 GMT + - Tue, 03 Aug 2021 09:27:36 GMT expires: - '-1' pragma: @@ -6901,7 +7069,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:17 GMT + - Tue, 03 Aug 2021 09:27:36 GMT expires: - '-1' pragma: @@ -6974,7 +7142,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:18 GMT + - Tue, 03 Aug 2021 09:27:37 GMT expires: - '-1' pragma: @@ -7058,7 +7226,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:18 GMT + - Tue, 03 Aug 2021 09:27:37 GMT expires: - '-1' pragma: @@ -7114,7 +7282,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:19 GMT + - Tue, 03 Aug 2021 09:27:38 GMT expires: - '-1' pragma: @@ -7172,7 +7340,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:20 GMT + - Tue, 03 Aug 2021 09:27:38 GMT expires: - '-1' pragma: @@ -7230,7 +7398,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:20 GMT + - Tue, 03 Aug 2021 09:27:39 GMT expires: - '-1' pragma: @@ -7288,7 +7456,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:21 GMT + - Tue, 03 Aug 2021 09:27:39 GMT expires: - '-1' pragma: @@ -7354,7 +7522,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:22 GMT + - Tue, 03 Aug 2021 09:27:40 GMT expires: - '-1' pragma: @@ -7405,7 +7573,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:22 GMT + - Tue, 03 Aug 2021 09:27:41 GMT expires: - '-1' pragma: @@ -7482,7 +7650,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:23 GMT + - Tue, 03 Aug 2021 09:27:41 GMT expires: - '-1' pragma: @@ -7538,7 +7706,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:23 GMT + - Tue, 03 Aug 2021 09:27:42 GMT expires: - '-1' pragma: @@ -7591,7 +7759,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:24 GMT + - Tue, 03 Aug 2021 09:27:43 GMT expires: - '-1' pragma: @@ -7644,7 +7812,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:24 GMT + - Tue, 03 Aug 2021 09:27:43 GMT expires: - '-1' pragma: @@ -7695,7 +7863,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:25 GMT + - Tue, 03 Aug 2021 09:27:44 GMT expires: - '-1' pragma: @@ -7760,7 +7928,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:25 GMT + - Tue, 03 Aug 2021 09:27:44 GMT expires: - '-1' pragma: @@ -7820,7 +7988,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:26 GMT + - Tue, 03 Aug 2021 09:27:45 GMT expires: - '-1' pragma: @@ -7871,7 +8039,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:27 GMT + - Tue, 03 Aug 2021 09:27:45 GMT expires: - '-1' pragma: @@ -7922,7 +8090,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:27 GMT + - Tue, 03 Aug 2021 09:27:46 GMT expires: - '-1' pragma: @@ -7978,7 +8146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:28 GMT + - Tue, 03 Aug 2021 09:27:47 GMT expires: - '-1' pragma: @@ -8031,7 +8199,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:29 GMT + - Tue, 03 Aug 2021 09:27:47 GMT expires: - '-1' pragma: @@ -8082,7 +8250,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:29 GMT + - Tue, 03 Aug 2021 09:27:48 GMT expires: - '-1' pragma: @@ -8133,7 +8301,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:30 GMT + - Tue, 03 Aug 2021 09:27:48 GMT expires: - '-1' pragma: @@ -8184,7 +8352,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:30 GMT + - Tue, 03 Aug 2021 09:27:49 GMT expires: - '-1' pragma: @@ -8235,7 +8403,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:31 GMT + - Tue, 03 Aug 2021 09:27:49 GMT expires: - '-1' pragma: @@ -8286,7 +8454,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:32 GMT + - Tue, 03 Aug 2021 09:27:50 GMT expires: - '-1' pragma: @@ -8337,7 +8505,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:32 GMT + - Tue, 03 Aug 2021 09:27:51 GMT expires: - '-1' pragma: @@ -8390,7 +8558,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:33 GMT + - Tue, 03 Aug 2021 09:27:51 GMT expires: - '-1' pragma: @@ -8443,7 +8611,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:33 GMT + - Tue, 03 Aug 2021 09:27:52 GMT expires: - '-1' pragma: @@ -8503,7 +8671,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:34 GMT + - Tue, 03 Aug 2021 09:27:52 GMT expires: - '-1' pragma: @@ -8556,7 +8724,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:35 GMT + - Tue, 03 Aug 2021 09:27:53 GMT expires: - '-1' pragma: @@ -8609,7 +8777,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:35 GMT + - Tue, 03 Aug 2021 09:27:53 GMT expires: - '-1' pragma: @@ -8662,7 +8830,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:36 GMT + - Tue, 03 Aug 2021 09:27:54 GMT expires: - '-1' pragma: @@ -8707,8 +8875,8 @@ 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-02T22:28:39Z","expirationTime":"2021-08-03T00:30:46Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108020010002474","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-02T15:28:20Z","createdDate":"2021-08-02T22:28:39Z","modifiedDate":"2021-08-02T22:30:44Z"}}' + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-08-03T09:25:54Z","expirationTime":"2021-08-03T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108030010001057","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-03T02:25:38Z","createdDate":"2021-08-03T09:25:54Z","modifiedDate":"2021-08-03T09:28:02Z"}}' headers: cache-control: - no-cache @@ -8717,7 +8885,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:47 GMT + - Tue, 03 Aug 2021 09:28:05 GMT expires: - '-1' pragma: @@ -8763,8 +8931,8 @@ 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-02T22:28:39Z","expirationTime":"2021-08-03T14:31:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108020010002474","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-02T15:28:20Z","createdDate":"2021-08-02T22:28:39Z","modifiedDate":"2021-08-02T22:30:54Z"}}' + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-08-03T09:25:54Z","expirationTime":"2021-08-03T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108030010001057","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-03T02:25:38Z","createdDate":"2021-08-03T09:25:54Z","modifiedDate":"2021-08-03T09:28:14Z"}}' headers: cache-control: - no-cache @@ -8773,7 +8941,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:30:57 GMT + - Tue, 03 Aug 2021 09:28:17 GMT expires: - '-1' pragma: @@ -8819,8 +8987,8 @@ 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-02T22:28:39Z","expirationTime":"2021-08-03T14:31:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108020010002474","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-02T15:28:20Z","createdDate":"2021-08-02T22:28:39Z","modifiedDate":"2021-08-02T22:31:00Z"}}' + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-08-03T09:25:54Z","expirationTime":"2021-08-03T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108030010001057","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-03T02:25:38Z","createdDate":"2021-08-03T09:25:54Z","modifiedDate":"2021-08-03T09:28:22Z"}}' headers: cache-control: - no-cache @@ -8829,7 +8997,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:31:04 GMT + - Tue, 03 Aug 2021 09:28:25 GMT expires: - '-1' pragma: @@ -8871,8 +9039,8 @@ 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-02T22:28:39Z","expirationTime":"2021-08-03T14:31:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108020010002474","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-02T15:28:20Z","createdDate":"2021-08-02T22:28:39Z","modifiedDate":"2021-08-02T22:31:00Z"}}' + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-08-03T09:25:54Z","expirationTime":"2021-08-03T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108030010001057","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-03T02:25:38Z","createdDate":"2021-08-03T09:25:54Z","modifiedDate":"2021-08-03T09:28:22Z"}}' headers: cache-control: - no-cache @@ -8881,7 +9049,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:31:05 GMT + - Tue, 03 Aug 2021 09:28:27 GMT expires: - '-1' pragma: 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 a9e55db0152..30b7ccb16e8 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 @@ -33,7 +33,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:31:07 GMT + - Tue, 03 Aug 2021 09:28:28 GMT expires: - '-1' pragma: @@ -60,7 +60,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-02T15:31:07.000Z", + cli test. Do not assign and close after a day.", "problemStartTime": "2021-08-03T02:28:29.000Z", "serviceId": "/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc", "technicalTicketDetails": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Compute/virtualMachines/testserver"}}}' headers: @@ -89,17 +89,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/78574f5f-157b-4e72-9d1d-f91ecaa704e5?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/684e4f7f-c164-48db-b3cb-75d91cff2384?api-version=2020-04-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 02 Aug 2021 22:31:08 GMT + - Tue, 03 Aug 2021 09:28:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationResults/78574f5f-157b-4e72-9d1d-f91ecaa704e5?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationResults/684e4f7f-c164-48db-b3cb-75d91cff2384?api-version=2020-04-01 pragma: - no-cache server: @@ -131,10 +131,10 @@ interactions: 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/78574f5f-157b-4e72-9d1d-f91ecaa704e5?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/684e4f7f-c164-48db-b3cb-75d91cff2384?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/78574f5f-157b-4e72-9d1d-f91ecaa704e5","status":"Failed","error":{"code":"InvalidParameterValue","message":"Resource + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/684e4f7f-c164-48db-b3cb-75d91cff2384","status":"Failed","error":{"code":"InvalidParameterValue","message":"Resource Id /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Compute/virtualMachines/testserver is not valid. Provide a valid ResourceId for technical support ticket","target":"Resource Id /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Compute/virtualMachines/testserver @@ -147,7 +147,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:31:38 GMT + - Tue, 03 Aug 2021 09:29:01 GMT expires: - '-1' pragma: @@ -202,7 +202,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 22:31:40 GMT + - Tue, 03 Aug 2021 09:29:01 GMT expires: - '-1' pragma: From 30f77e8d0b91a7066966d0ce38dda3a4de96a334 Mon Sep 17 00:00:00 2001 From: Rudra Sharma Date: Tue, 3 Aug 2021 10:48:14 -0700 Subject: [PATCH 07/12] updates --- src/support/azext_support/vendored_sdks/py.typed | 1 - 1 file changed, 1 deletion(-) delete mode 100644 src/support/azext_support/vendored_sdks/py.typed diff --git a/src/support/azext_support/vendored_sdks/py.typed b/src/support/azext_support/vendored_sdks/py.typed deleted file mode 100644 index e5aff4f83af..00000000000 --- a/src/support/azext_support/vendored_sdks/py.typed +++ /dev/null @@ -1 +0,0 @@ -# Marker file for PEP 561. \ No newline at end of file From f53f9168a35a0c2aafdb4f680eb6a64c8b4ef932 Mon Sep 17 00:00:00 2001 From: Rudra Sharma Date: Tue, 3 Aug 2021 15:02:00 -0700 Subject: [PATCH 08/12] Update setup file --- .../recordings/test_support_services.yaml | 13 +- .../recordings/test_support_tickets.yaml | 1192 +++++++++-------- ...st_support_tickets_create_validations.yaml | 18 +- src/support/setup.py | 6 +- 4 files changed, 641 insertions(+), 588 deletions(-) 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 f1a056d2869..c45f7694188 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 @@ -241,7 +241,8 @@ interactions: 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\",\"resourceTypes\":[]}},{\"id\":\"/providers/Microsoft.Support/services/5d4f816f-f02c-f8f8-a8f4-423509f8b036\",\"name\":\"5d4f816f-f02c-f8f8-a8f4-423509f8b036\",\"type\":\"Microsoft.Support/services\",\"properties\":{\"displayName\":\"Queue + 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 @@ -296,11 +297,11 @@ interactions: cache-control: - no-cache content-length: - - '80958' + - '80969' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:25:33 GMT + - Tue, 03 Aug 2021 21:58:42 GMT expires: - '-1' pragma: @@ -347,7 +348,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:25:34 GMT + - Tue, 03 Aug 2021 21:58:42 GMT expires: - '-1' pragma: @@ -411,7 +412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:25:36 GMT + - Tue, 03 Aug 2021 21:58:43 GMT expires: - '-1' pragma: @@ -458,7 +459,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:25:36 GMT + - Tue, 03 Aug 2021 21:58:44 GMT expires: - '-1' pragma: 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 ec8daa4ebe5..116721b42ee 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 @@ -33,7 +33,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:25:38 GMT + - Tue, 03 Aug 2021 21:58:41 GMT expires: - '-1' pragma: @@ -60,7 +60,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-03T02:25:38.000Z", + cli test. Do not assign and close after a day.", "problemStartTime": "2021-08-03T14:58:42.000Z", "serviceId": "/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc"}}' headers: Accept: @@ -88,17 +88,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/f13ddba9-8cf5-454b-938b-adee70406ef4?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/c8547eb2-9dc2-4fbe-93c8-7f3b0534bfb9?api-version=2020-04-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 03 Aug 2021 09:25:39 GMT + - Tue, 03 Aug 2021 21:58:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationResults/f13ddba9-8cf5-454b-938b-adee70406ef4?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationResults/c8547eb2-9dc2-4fbe-93c8-7f3b0534bfb9?api-version=2020-04-01 pragma: - no-cache server: @@ -130,10 +130,10 @@ interactions: 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/f13ddba9-8cf5-454b-938b-adee70406ef4?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/c8547eb2-9dc2-4fbe-93c8-7f3b0534bfb9?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/f13ddba9-8cf5-454b-938b-adee70406ef4","status":"Succeeded","properties":{"supportTicketCreationWarning":""}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/c8547eb2-9dc2-4fbe-93c8-7f3b0534bfb9","status":"Succeeded","properties":{"supportTicketCreationWarning":""}}' headers: cache-control: - no-cache @@ -142,7 +142,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:26:10 GMT + - Tue, 03 Aug 2021 21:59:13 GMT expires: - '-1' pragma: @@ -184,8 +184,8 @@ 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","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-08-03T09:25:54Z","expirationTime":"2021-08-03T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108030010001057","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-03T02:25:38Z","createdDate":"2021-08-03T09:25:54Z","modifiedDate":"2021-08-03T09:26:09Z"}}' + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-08-03T21:58:55Z","expirationTime":"2021-08-04T13:59:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108030010002636","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-03T14:58:42Z","createdDate":"2021-08-03T21:58:55Z","modifiedDate":"2021-08-03T21:59:08Z"}}' headers: cache-control: - no-cache @@ -194,7 +194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:26:11 GMT + - Tue, 03 Aug 2021 21:59:14 GMT expires: - '-1' pragma: @@ -248,7 +248,7 @@ interactions: content-type: - application/json date: - - Tue, 03 Aug 2021 09:26:13 GMT + - Tue, 03 Aug 2021 21:59:16 GMT expires: - '-1' pragma: @@ -293,17 +293,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/658dd98a-568c-461d-8925-d8f24ff2ec22?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/33116498-cc30-4951-bb3e-e8a99fc36675?api-version=2020-04-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 03 Aug 2021 09:26:16 GMT + - Tue, 03 Aug 2021 21:59:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationResults/658dd98a-568c-461d-8925-d8f24ff2ec22?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationResults/33116498-cc30-4951-bb3e-e8a99fc36675?api-version=2020-04-01 pragma: - no-cache server: @@ -334,10 +334,10 @@ interactions: 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/658dd98a-568c-461d-8925-d8f24ff2ec22?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/33116498-cc30-4951-bb3e-e8a99fc36675?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/658dd98a-568c-461d-8925-d8f24ff2ec22","status":"Succeeded","properties":{"supportTicketCreationWarning":""}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/33116498-cc30-4951-bb3e-e8a99fc36675","status":"Succeeded","properties":{"supportTicketCreationWarning":""}}' headers: cache-control: - no-cache @@ -346,7 +346,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:26:46 GMT + - Tue, 03 Aug 2021 21:59:49 GMT expires: - '-1' pragma: @@ -385,8 +385,8 @@ interactions: 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#2108030010001057","body":"
test
-        body for communication posted from azure python cli
","createdDate":"2021-08-03T09:26:19Z"}}' + subject for communication posted from azur... - TrackingID#2108030010002636","body":"
test
+        body for communication posted from azure python cli
","createdDate":"2021-08-03T21:59:21Z"}}' headers: cache-control: - no-cache @@ -395,7 +395,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:26:47 GMT + - Tue, 03 Aug 2021 21:59:50 GMT expires: - '-1' pragma: @@ -433,9 +433,9 @@ interactions: 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#2108030010001057\",\"body\":\"
test
-        body for communication posted from azure python cli
\",\"createdDate\":\"2021-08-03T09:26:19Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001/communications/43686ccf-3cf4-eb11-94ee-002248231531\",\"name\":\"43686ccf-3cf4-eb11-94ee-002248231531\",\"type\":\"Microsoft.Support/communications\",\"properties\":{\"communicationType\":\"Web\",\"communicationDirection\":\"Outbound\",\"sender\":\"support@microsoftsupport.com\",\"subject\":\"\\nCase - 2108030010001057\u2009 Your question was succe... - TrackingID#2108030010001057\",\"body\":\"\\n\\ntest + body for communication posted from azure python cli\",\"createdDate\":\"2021-08-03T21:59:21Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001/communications/774494fd-a5f4-eb11-94ee-0022482310d1\",\"name\":\"774494fd-a5f4-eb11-94ee-0022482310d1\",\"type\":\"Microsoft.Support/communications\",\"properties\":{\"communicationType\":\"Web\",\"communicationDirection\":\"Outbound\",\"sender\":\"support@microsoftsupport.com\",\"subject\":\"\\nCase + 2108030010002636\u2009 Your question was succe... - TrackingID#2108030010002636\",\"body\":\"\\n\\n\\n\\n\\n
\\n
\\n
\\n
\\n
Support request number:\\n\\n2108030010001057\\n\\n\\n\\n2108030010002636\\n\\n\\n\\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
\\n\\n\\n\\n\\n\\n\\n\\n\\n\",\"createdDate\":\"2021-08-03T09:26:01Z\"}}]}" + width=\\\"71\\\" style=\\\"width:71px; height:15px\\\">\\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\",\"createdDate\":\"2021-08-03T21:59:01Z\"}}]}" headers: cache-control: - no-cache @@ -637,7 +637,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:26:52 GMT + - Tue, 03 Aug 2021 21:59:53 GMT expires: - '-1' pragma: @@ -675,8 +675,8 @@ interactions: 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#2108030010001057","body":"
test
-        body for communication posted from azure python cli
","createdDate":"2021-08-03T09:26:19Z"}}' + subject for communication posted from azur... - TrackingID#2108030010002636","body":"
test
+        body for communication posted from azure python cli
","createdDate":"2021-08-03T21:59:21Z"}}' headers: cache-control: - no-cache @@ -685,7 +685,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:26:53 GMT + - Tue, 03 Aug 2021 21:59:55 GMT expires: - '-1' pragma: @@ -725,8 +725,16 @@ interactions: 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-03T09:25:54Z","expirationTime":"2021-08-03T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108030010001057","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-03T02:25:38Z","createdDate":"2021-08-03T09:25:54Z","modifiedDate":"2021-08-03T09:26:21Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107280010003559","name":"2107280010003559","type":"Microsoft.Support/supportTickets","properties":{"description":"This + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-08-03T21:58:55Z","expirationTime":"2021-08-04T13:59:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108030010002636","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-03T14:58:42Z","createdDate":"2021-08-03T21:58:55Z","modifiedDate":"2021-08-03T21:59:23Z"}},{"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 @@ -767,28 +775,16 @@ interactions: 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"}},{"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"}}],"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-28T00%253A02%253A13Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8b8UAAAADADw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522true%2522%257D%255D"}' + 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: - - '15120' + - '15027' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:26:54 GMT + - Tue, 03 Aug 2021 21:59:56 GMT expires: - '-1' pragma: @@ -822,10 +818,22 @@ interactions: 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-28T00%253A02%253A13Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8b8UAAAADADw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522true%2522%257D%255D + 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/2107270010003125","name":"2107270010003125","type":"Microsoft.Support/supportTickets","properties":{"description":"Test + 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 @@ -835,17 +843,17 @@ interactions: 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-07-28T18:53:56Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107270010002434","name":"2107270010002434","type":"Microsoft.Support/supportTickets","properties":{"description":"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-07-28T18:36:59Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107270010002433","name":"2107270010002433","type":"Microsoft.Support/supportTickets","properties":{"description":"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-07-28T18:36:55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121072721000697","name":"121072721000697","type":"Microsoft.Support/supportTickets","properties":{"description":"This + 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 @@ -855,7 +863,7 @@ interactions: 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-07-28T13:00:04Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/2107260010002833","name":"2107260010002833","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud + 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 @@ -865,26 +873,16 @@ interactions: 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"}},{"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"}}],"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-07-26T21%253A04%253A36Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9X%252Bz4AAACgDg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-07-28T00%253A02%253A13Z%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"}' + 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: - - '14015' + - '14310' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:26:55 GMT + - Tue, 03 Aug 2021 21:59:57 GMT expires: - '-1' pragma: @@ -918,10 +916,20 @@ interactions: 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-07-26T21%253A04%253A36Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9X%252Bz4AAACgDg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-07-28T00%253A02%253A13Z%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+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/121072321001707","name":"121072321001707","type":"Microsoft.Support/supportTickets","properties":{"description":"This + 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 @@ -963,28 +971,16 @@ interactions: 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"}},{"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"}}],"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%25222021-07-22T23%253A50%253A47Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-I6UAAAAAgAA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-07-26T21%253A04%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"}' + 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: - - '14671' + - '14398' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:26:56 GMT + - Tue, 03 Aug 2021 21:59:58 GMT expires: - '-1' pragma: @@ -1018,10 +1014,22 @@ interactions: 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%25222021-07-22T23%253A50%253A47Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-I6UAAAAAgAA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-07-26T21%253A04%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 + 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/E2ETest637625900425420984","name":"E2ETest637625900425420984","type":"Microsoft.Support/supportTickets","properties":{"description":"test + 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 @@ -1063,26 +1071,16 @@ interactions: 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"}},{"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"}}],"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%25222021-07-20T05%253A50%253A21Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8v5UAAAAAgAA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522true%2522%257D%255D"}' + 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: - - '14064' + - '14680' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:26:56 GMT + - Tue, 03 Aug 2021 21:59:58 GMT expires: - '-1' pragma: @@ -1116,10 +1114,20 @@ interactions: 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%25222021-07-20T05%253A50%253A21Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8v5UAAAAAgAA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522true%2522%257D%255D + 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/2107200010000461","name":"2107200010000461","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud + 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 @@ -1159,26 +1167,16 @@ interactions: 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"}},{"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"}}],"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-07-16T15%253A40%253A37Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BX4kAAAADACg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-07-20T05%253A50%253A21Z%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"}' + 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: - - '13787' + - '13779' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:26:57 GMT + - Tue, 03 Aug 2021 21:59:59 GMT expires: - '-1' pragma: @@ -1212,10 +1210,20 @@ interactions: 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-07-16T15%253A40%253A37Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BX4kAAAADACg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-07-20T05%253A50%253A21Z%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+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/2107160010001537","name":"2107160010001537","type":"Microsoft.Support/supportTickets","properties":{"description":"Test + 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 @@ -1255,26 +1263,16 @@ interactions: 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"}},{"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"}}],"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%25222021-07-14T22%253A00%253A20Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8V4EAAAABADQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-07-16T15%253A40%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"}' + 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: - - '13969' + - '13639' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:26:57 GMT + - Tue, 03 Aug 2021 21:59:59 GMT expires: - '-1' pragma: @@ -1308,10 +1306,20 @@ interactions: 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%25222021-07-14T22%253A00%253A20Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8V4EAAAABADQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-07-16T15%253A40%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 + 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/2107140010002876","name":"2107140010002876","type":"Microsoft.Support/supportTickets","properties":{"description":"Test + 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 @@ -1351,26 +1359,16 @@ interactions: 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"}},{"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"}}],"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%25222021-07-13T16%253A14%253A57Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9m20AAAAAgDg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-07-14T22%253A00%253A20Z%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"}' + 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: - - '13910' + - '13915' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:26:59 GMT + - Tue, 03 Aug 2021 22:00:00 GMT expires: - '-1' pragma: @@ -1404,10 +1402,20 @@ interactions: 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%252205C1C9CD673398%2522%252C%2522max%2522%253A%252205C1CD673399C8%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-07-13T16%253A14%253A57Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9m20AAAAAgDg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-07-14T22%253A00%253A20Z%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+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/2107130010001831","name":"2107130010001831","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud + 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 @@ -1455,26 +1463,16 @@ interactions: 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"}},{"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"}}],"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-07T21%253A28%253A53Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-e2kAAAABACw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-07-13T16%253A14%253A57Z%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"}' + 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: - - '14862' + - '14984' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:00 GMT + - Tue, 03 Aug 2021 22:00:01 GMT expires: - '-1' pragma: @@ -1508,10 +1506,20 @@ interactions: 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-07T21%253A28%253A53Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-e2kAAAABACw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-07-13T16%253A14%253A57Z%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+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/E2ETest637612811054168071","name":"E2ETest637612811054168071","type":"Microsoft.Support/supportTickets","properties":{"description":"test + 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 @@ -1559,26 +1567,16 @@ interactions: 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"}},{"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"}}],"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%25222021-07-01T20%253A56%253A39Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8q0EAAAADADA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-07-07T21%253A28%253A53Z%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"}' + 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: - - '15134' + - '14975' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:00 GMT + - Tue, 03 Aug 2021 22:00:01 GMT expires: - '-1' pragma: @@ -1612,10 +1610,20 @@ interactions: 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%25222021-07-01T20%253A56%253A39Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8q0EAAAADADA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-07-07T21%253A28%253A53Z%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+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/121063021003303","name":"121063021003303","type":"Microsoft.Support/supportTickets","properties":{"description":"This + 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 @@ -1657,28 +1665,16 @@ interactions: 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"}},{"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"}}],"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%25222021-06-24T21%253A35%253A14Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-UxkAAAAAgAA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-07-01T20%253A56%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"}' + 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: - - '14579' + - '14371' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:01 GMT + - Tue, 03 Aug 2021 22:00:02 GMT expires: - '-1' pragma: @@ -1712,10 +1708,22 @@ interactions: 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%25222021-06-24T21%253A35%253A14Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-UxkAAAAAgAA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-07-01T20%253A56%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 + 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/E2ETest637601387970473303","name":"E2ETest637601387970473303","type":"Microsoft.Support/supportTickets","properties":{"description":"test + 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 @@ -1759,26 +1767,16 @@ interactions: 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"}},{"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"}}],"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-06-17T02%253A15%253A21Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8yvEAAAADACg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-06-24T21%253A35%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"}' + 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: - - '14169' + - '14531' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:01 GMT + - Tue, 03 Aug 2021 22:00:03 GMT expires: - '-1' pragma: @@ -1812,10 +1810,20 @@ interactions: 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-06-17T02%253A15%253A21Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8yvEAAAADACg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-06-24T21%253A35%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 + 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/2106170010000055","name":"2106170010000055","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud + 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 @@ -1859,17 +1867,7 @@ interactions: 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"}},{"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"}}],"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-06-14T22%253A49%253A26Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8yvEAAAABACw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-06-17T02%253A15%253A21Z%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"}' + 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 @@ -1878,7 +1876,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:02 GMT + - Tue, 03 Aug 2021 22:00:03 GMT expires: - '-1' pragma: @@ -1912,10 +1910,20 @@ interactions: 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-06-14T22%253A49%253A26Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8yvEAAAABACw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-06-17T02%253A15%253A21Z%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+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/2106100010003559","name":"2106100010003559","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud + 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 @@ -1957,30 +1965,16 @@ interactions: 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"}},{"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"}}],"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-06-08T07%253A51%253A04Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR93sEAAAADABA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-06-14T22%253A49%253A26Z%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"}' + 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: - - '14619' + - '13928' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:03 GMT + - Tue, 03 Aug 2021 22:00:04 GMT expires: - '-1' pragma: @@ -2014,23 +2008,37 @@ interactions: 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-06-08T07%253A51%253A04Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR93sEAAAADABA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-06-14T22%253A49%253A26Z%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+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/E2ETest637587196372055888","name":"E2ETest637587196372055888","type":"Microsoft.Support/supportTickets","properties":{"description":"test + 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 - 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 + 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-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 + 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 @@ -2059,26 +2067,16 @@ interactions: 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"}},{"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"}}],"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%25222021-06-02T04%253A14%253A55Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR843D4AAACgDQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-06-08T07%253A51%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"}' + 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: - - '14136' + - '14827' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:03 GMT + - Tue, 03 Aug 2021 22:00:05 GMT expires: - '-1' pragma: @@ -2112,10 +2110,20 @@ interactions: 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%25222021-06-02T04%253A14%253A55Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR843D4AAACgDQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-06-08T07%253A51%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 + 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/2106020010000436","name":"2106020010000436","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud + 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 @@ -2167,26 +2175,16 @@ interactions: 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"}},{"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"}}],"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%25222021-05-26T23%253A31%253A47Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8Qn0AAAADADQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-06-02T04%253A14%253A55Z%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"}' + 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: - - '15783' + - '15645' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:04 GMT + - Tue, 03 Aug 2021 22:00:05 GMT expires: - '-1' pragma: @@ -2220,10 +2218,20 @@ interactions: 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%25222021-05-26T23%253A31%253A47Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8Qn0AAAADADQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-06-02T04%253A14%253A55Z%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+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/121052621002601","name":"121052621002601","type":"Microsoft.Support/supportTickets","properties":{"description":"This + 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 @@ -2263,26 +2271,16 @@ interactions: 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"}},{"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"}}],"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-05-24T20%253A50%253A13Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-2nEAAAADAAg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-05-26T23%253A31%253A47Z%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"}' + 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: - - '13868' + - '13930' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:05 GMT + - Tue, 03 Aug 2021 22:00:06 GMT expires: - '-1' pragma: @@ -2316,10 +2314,20 @@ interactions: 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-05-24T20%253A50%253A13Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-2nEAAAADAAg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-05-26T23%253A31%253A47Z%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+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/2105240040005288","name":"2105240040005288","type":"Microsoft.Support/supportTickets","properties":{"description":"Test + 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 @@ -2359,26 +2367,16 @@ interactions: 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"}},{"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"}}],"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%25222021-05-20T15%253A37%253A34Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BK0j4AAACgCw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-05-24T20%253A50%253A13Z%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"}' + 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: - - '13908' + - '13841' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:05 GMT + - Tue, 03 Aug 2021 22:00:06 GMT expires: - '-1' pragma: @@ -2412,10 +2410,20 @@ interactions: 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%25222021-05-20T15%253A37%253A34Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BK0j4AAACgCw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-05-24T20%253A50%253A13Z%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+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/121051921001794","name":"121051921001794","type":"Microsoft.Support/supportTickets","properties":{"description":"This + 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 @@ -2456,26 +2464,16 @@ interactions: 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"}},{"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"}}],"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%25222021-05-14T21%253A22%253A37Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-Qk0AAAADABg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-05-20T15%253A37%253A34Z%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"}' + 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: - - '13927' + - '14065' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:06 GMT + - Tue, 03 Aug 2021 22:00:07 GMT expires: - '-1' pragma: @@ -2509,10 +2507,20 @@ interactions: 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%25222021-05-14T21%253A22%253A37Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-Qk0AAAADABg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-05-20T15%253A37%253A34Z%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+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/2105140010000580","name":"2105140010000580","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud + 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 @@ -2556,26 +2564,16 @@ interactions: 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"}},{"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"}}],"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%25222021-05-12T07%253A53%253A23Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BTi0AAAAAgDg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-05-14T21%253A22%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"}' + 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: - - '14204' + - '14200' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:07 GMT + - Tue, 03 Aug 2021 22:00:08 GMT expires: - '-1' pragma: @@ -2609,10 +2607,20 @@ interactions: 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%252205C1C9CD673398%2522%252C%2522max%2522%253A%252205C1CD673399C8%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-05-12T07%253A53%253A23Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BTi0AAAAAgDg%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-05-14T21%253A22%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 + 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/2105110010000489","name":"2105110010000489","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud + 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 @@ -2652,26 +2660,16 @@ interactions: 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-06-18T23:50:04Z"}},{"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"}}],"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-06T18%253A44%253A15Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BWg0AAAAAgDA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-05-12T07%253A53%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"}' + 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: - - '13542' + - '13466' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:07 GMT + - Tue, 03 Aug 2021 22:00:08 GMT expires: - '-1' pragma: @@ -2705,10 +2703,20 @@ interactions: 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-06T18%253A44%253A15Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BWg0AAAAAgDA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-05-12T07%253A53%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 + 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/2105060040005433","name":"2105060040005433","type":"Microsoft.Support/supportTickets","properties":{"description":"Test + 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 @@ -2752,26 +2760,16 @@ interactions: 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"}},{"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"}}],"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-05-01T00%253A20%253A35Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8YgkAAAADAAQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-05-06T18%253A44%253A15Z%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"}' + 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: - - '14369' + - '14373' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:08 GMT + - Tue, 03 Aug 2021 22:00:09 GMT expires: - '-1' pragma: @@ -2805,10 +2803,20 @@ interactions: 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-05-01T00%253A20%253A35Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8YgkAAAADAAQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-05-06T18%253A44%253A15Z%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+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/2104290010000799","name":"2104290010000799","type":"Microsoft.Support/supportTickets","properties":{"description":"Test + 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 @@ -2862,26 +2870,16 @@ interactions: 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"}},{"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"}}],"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%25222021-04-27T01%253A11%253A51Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8ieUAAAADABw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-05-01T00%253A20%253A35Z%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"}' + 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: - - '15924' + - '16000' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:08 GMT + - Tue, 03 Aug 2021 22:00:09 GMT expires: - '-1' pragma: @@ -2915,10 +2913,20 @@ interactions: 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%252205C1EB3399CD64%2522%252C%2522max%2522%253A%252205C1EB99CD6732%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-04-27T01%253A11%253A51Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8ieUAAAADABw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-05-01T00%253A20%253A35Z%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+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/2104260010010080","name":"2104260010010080","type":"Microsoft.Support/supportTickets","properties":{"description":"Test + 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 @@ -2960,26 +2968,16 @@ interactions: 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"}},{"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"}}],"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-04-20T04%253A22%253A25Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BCvT4AAABgBA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-04-27T01%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"}' + 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: - - '13995' + - '13991' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:09 GMT + - Tue, 03 Aug 2021 22:00:10 GMT expires: - '-1' pragma: @@ -3013,10 +3011,20 @@ interactions: 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-04-20T04%253A22%253A25Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BCvT4AAABgBA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-04-27T01%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 + 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/2104200010000381","name":"2104200010000381","type":"Microsoft.Support/supportTickets","properties":{"description":"Test + 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 @@ -3056,28 +3064,16 @@ interactions: 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"}},{"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"}}],"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-04-14T01%253A26%253A34Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-BakAAAABABw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-04-20T04%253A22%253A25Z%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"}' + 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: - - '13992' + - '13610' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:10 GMT + - Tue, 03 Aug 2021 22:00:11 GMT expires: - '-1' pragma: @@ -3111,10 +3107,22 @@ interactions: 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-04-14T01%253A26%253A34Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR-BakAAAABABw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-04-20T04%253A22%253A25Z%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+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/E2ETest637539017814405067","name":"E2ETest637539017814405067","type":"Microsoft.Support/supportTickets","properties":{"description":"test + 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 @@ -3158,26 +3166,16 @@ interactions: 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"}},{"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"}}],"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-04-08T20%253A12%253A52Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9Itj4AAACgDA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-04-14T01%253A26%253A34Z%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"}' + 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: - - '14206' + - '14588' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:10 GMT + - Tue, 03 Aug 2021 22:00:11 GMT expires: - '-1' pragma: @@ -3211,10 +3209,20 @@ interactions: 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-04-08T20%253A12%253A52Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR9Itj4AAACgDA%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%253D%2520%255C%25222021-04-14T01%253A26%253A34Z%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+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/2104080010003781","name":"2104080010003781","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud + 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 @@ -3264,28 +3272,16 @@ interactions: 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"}},{"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"}}],"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-04-06T22%253A22%253A11Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8AX0AAAABAAQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-04-08T20%253A12%253A52Z%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"}' + 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: - - '15645' + - '15256' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:11 GMT + - Tue, 03 Aug 2021 22:00:12 GMT expires: - '-1' pragma: @@ -3319,10 +3315,22 @@ interactions: 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-04-06T22%253A22%253A11Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8AX0AAAABAAQ%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-04-08T20%253A12%253A52Z%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+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/2104060010000125","name":"2104060010000125","type":"Microsoft.Support/supportTickets","properties":{"description":"Test + 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 @@ -3367,29 +3375,16 @@ interactions: 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"}},{"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"}}],"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-16T21%253A26%253A28.7975341Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8lQkAAAABADw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-04-06T22%253A22%253A11Z%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"}' + 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: - - '15252' + - '14967' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:11 GMT + - Tue, 03 Aug 2021 22:00:12 GMT expires: - '-1' pragma: @@ -3423,10 +3418,23 @@ interactions: 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-16T21%253A26%253A28.7975341Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR8lQkAAAABADw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-04-06T22%253A22%253A11Z%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+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/E2ETest637515170419110499","name":"E2ETest637515170419110499","type":"Microsoft.Support/supportTickets","properties":{"description":"test + 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 @@ -3471,26 +3479,16 @@ interactions: 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"}},{"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"}}],"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%25222021-03-11T16%253A45%253A15.1010777Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BiOkAAAAAgAw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-03-16T21%253A26%253A28.7975341Z%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"}' + 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: - - '14864' + - '15492' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:12 GMT + - Tue, 03 Aug 2021 22:00:13 GMT expires: - '-1' pragma: @@ -3524,10 +3522,20 @@ interactions: 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%252205C1B399CD6720%2522%252C%2522max%2522%253A%252205C1B9CD673390%2522%257D%257D%252C%2522orderByItems%2522%253A%255B%257B%2522item%2522%253A%25222021-03-11T16%253A45%253A15.1010777Z%2522%257D%255D%252C%2522rid%2522%253A%2522e6dtAI34RR%252BiOkAAAAAgAw%253D%253D%2522%252C%2522skipCount%2522%253A1%252C%2522filter%2522%253A%2522%2528%2520c.CreatedOn%2520%253C%2520%255C%25222021-03-16T21%253A26%253A28.7975341Z%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+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/121031121002535","name":"121031121002535","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud + 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 @@ -3569,7 +3577,53 @@ interactions: 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"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/121030921004700","name":"121030921004700","type":"Microsoft.Support/supportTickets","properties":{"description":"Cloud + 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:00: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%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 @@ -3579,16 +3633,16 @@ interactions: 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%253D%2520%255C%25222021-03-11T16%253A45%253A15.1010777Z%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"}' + 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: - - '13953' + - '3489' content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:13 GMT + - Tue, 03 Aug 2021 22:00:14 GMT expires: - '-1' pragma: @@ -3622,7 +3676,7 @@ interactions: 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%253D%2520%255C%25222021-03-11T16%253A45%253A15.1010777Z%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+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 @@ -3694,7 +3748,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:13 GMT + - Tue, 03 Aug 2021 22:00:15 GMT expires: - '-1' pragma: @@ -3792,7 +3846,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:14 GMT + - Tue, 03 Aug 2021 22:00:15 GMT expires: - '-1' pragma: @@ -3894,7 +3948,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:14 GMT + - Tue, 03 Aug 2021 22:00:16 GMT expires: - '-1' pragma: @@ -3990,7 +4044,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:15 GMT + - Tue, 03 Aug 2021 22:00:17 GMT expires: - '-1' pragma: @@ -4091,7 +4145,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:16 GMT + - Tue, 03 Aug 2021 22:00:17 GMT expires: - '-1' pragma: @@ -4201,7 +4255,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:16 GMT + - Tue, 03 Aug 2021 22:00:18 GMT expires: - '-1' pragma: @@ -4299,7 +4353,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:17 GMT + - Tue, 03 Aug 2021 22:00:19 GMT expires: - '-1' pragma: @@ -4395,7 +4449,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:17 GMT + - Tue, 03 Aug 2021 22:00:19 GMT expires: - '-1' pragma: @@ -4493,7 +4547,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:18 GMT + - Tue, 03 Aug 2021 22:00:20 GMT expires: - '-1' pragma: @@ -4554,7 +4608,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:19 GMT + - Tue, 03 Aug 2021 22:00:20 GMT expires: - '-1' pragma: @@ -4660,7 +4714,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:19 GMT + - Tue, 03 Aug 2021 22:00:21 GMT expires: - '-1' pragma: @@ -4763,7 +4817,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:20 GMT + - Tue, 03 Aug 2021 22:00:21 GMT expires: - '-1' pragma: @@ -4865,7 +4919,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:20 GMT + - Tue, 03 Aug 2021 22:00:22 GMT expires: - '-1' pragma: @@ -4921,7 +4975,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:21 GMT + - Tue, 03 Aug 2021 22:00:23 GMT expires: - '-1' pragma: @@ -5012,7 +5066,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:22 GMT + - Tue, 03 Aug 2021 22:00:23 GMT expires: - '-1' pragma: @@ -5110,7 +5164,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:22 GMT + - Tue, 03 Aug 2021 22:00:24 GMT expires: - '-1' pragma: @@ -5214,7 +5268,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:23 GMT + - Tue, 03 Aug 2021 22:00:24 GMT expires: - '-1' pragma: @@ -5322,7 +5376,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:23 GMT + - Tue, 03 Aug 2021 22:00:25 GMT expires: - '-1' pragma: @@ -5424,7 +5478,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:24 GMT + - Tue, 03 Aug 2021 22:00:26 GMT expires: - '-1' pragma: @@ -5528,7 +5582,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:24 GMT + - Tue, 03 Aug 2021 22:00:26 GMT expires: - '-1' pragma: @@ -5634,7 +5688,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:25 GMT + - Tue, 03 Aug 2021 22:00:27 GMT expires: - '-1' pragma: @@ -5735,7 +5789,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:26 GMT + - Tue, 03 Aug 2021 22:00:27 GMT expires: - '-1' pragma: @@ -5851,7 +5905,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:26 GMT + - Tue, 03 Aug 2021 22:00:28 GMT expires: - '-1' pragma: @@ -5960,7 +6014,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:27 GMT + - Tue, 03 Aug 2021 22:00:29 GMT expires: - '-1' pragma: @@ -6060,7 +6114,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:27 GMT + - Tue, 03 Aug 2021 22:00:29 GMT expires: - '-1' pragma: @@ -6126,7 +6180,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:28 GMT + - Tue, 03 Aug 2021 22:00:30 GMT expires: - '-1' pragma: @@ -6220,7 +6274,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:29 GMT + - Tue, 03 Aug 2021 22:00:31 GMT expires: - '-1' pragma: @@ -6285,7 +6339,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:29 GMT + - Tue, 03 Aug 2021 22:00:31 GMT expires: - '-1' pragma: @@ -6391,7 +6445,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:30 GMT + - Tue, 03 Aug 2021 22:00:32 GMT expires: - '-1' pragma: @@ -6457,7 +6511,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:30 GMT + - Tue, 03 Aug 2021 22:00:33 GMT expires: - '-1' pragma: @@ -6508,7 +6562,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:31 GMT + - Tue, 03 Aug 2021 22:00:33 GMT expires: - '-1' pragma: @@ -6561,7 +6615,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:32 GMT + - Tue, 03 Aug 2021 22:00:34 GMT expires: - '-1' pragma: @@ -6627,7 +6681,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:32 GMT + - Tue, 03 Aug 2021 22:00:34 GMT expires: - '-1' pragma: @@ -6678,7 +6732,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:33 GMT + - Tue, 03 Aug 2021 22:00:35 GMT expires: - '-1' pragma: @@ -6753,7 +6807,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:33 GMT + - Tue, 03 Aug 2021 22:00:35 GMT expires: - '-1' pragma: @@ -6825,7 +6879,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:34 GMT + - Tue, 03 Aug 2021 22:00:37 GMT expires: - '-1' pragma: @@ -6877,7 +6931,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:35 GMT + - Tue, 03 Aug 2021 22:00:38 GMT expires: - '-1' pragma: @@ -6936,7 +6990,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:35 GMT + - Tue, 03 Aug 2021 22:00:38 GMT expires: - '-1' pragma: @@ -7016,7 +7070,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:36 GMT + - Tue, 03 Aug 2021 22:00:39 GMT expires: - '-1' pragma: @@ -7069,7 +7123,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:36 GMT + - Tue, 03 Aug 2021 22:00:40 GMT expires: - '-1' pragma: @@ -7142,7 +7196,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:37 GMT + - Tue, 03 Aug 2021 22:00:40 GMT expires: - '-1' pragma: @@ -7226,7 +7280,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:37 GMT + - Tue, 03 Aug 2021 22:00:41 GMT expires: - '-1' pragma: @@ -7282,7 +7336,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:38 GMT + - Tue, 03 Aug 2021 22:00:42 GMT expires: - '-1' pragma: @@ -7340,7 +7394,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:38 GMT + - Tue, 03 Aug 2021 22:00:42 GMT expires: - '-1' pragma: @@ -7398,7 +7452,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:39 GMT + - Tue, 03 Aug 2021 22:00:43 GMT expires: - '-1' pragma: @@ -7456,7 +7510,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:39 GMT + - Tue, 03 Aug 2021 22:00:43 GMT expires: - '-1' pragma: @@ -7522,7 +7576,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:40 GMT + - Tue, 03 Aug 2021 22:00:44 GMT expires: - '-1' pragma: @@ -7573,7 +7627,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:41 GMT + - Tue, 03 Aug 2021 22:00:44 GMT expires: - '-1' pragma: @@ -7650,7 +7704,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:41 GMT + - Tue, 03 Aug 2021 22:00:45 GMT expires: - '-1' pragma: @@ -7706,7 +7760,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:42 GMT + - Tue, 03 Aug 2021 22:00:46 GMT expires: - '-1' pragma: @@ -7759,7 +7813,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:43 GMT + - Tue, 03 Aug 2021 22:00:46 GMT expires: - '-1' pragma: @@ -7812,7 +7866,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:43 GMT + - Tue, 03 Aug 2021 22:00:47 GMT expires: - '-1' pragma: @@ -7863,7 +7917,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:44 GMT + - Tue, 03 Aug 2021 22:00:47 GMT expires: - '-1' pragma: @@ -7928,7 +7982,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:44 GMT + - Tue, 03 Aug 2021 22:00:48 GMT expires: - '-1' pragma: @@ -7988,7 +8042,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:45 GMT + - Tue, 03 Aug 2021 22:00:48 GMT expires: - '-1' pragma: @@ -8039,7 +8093,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:45 GMT + - Tue, 03 Aug 2021 22:00:49 GMT expires: - '-1' pragma: @@ -8090,7 +8144,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:46 GMT + - Tue, 03 Aug 2021 22:00:50 GMT expires: - '-1' pragma: @@ -8146,7 +8200,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:47 GMT + - Tue, 03 Aug 2021 22:00:50 GMT expires: - '-1' pragma: @@ -8199,7 +8253,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:47 GMT + - Tue, 03 Aug 2021 22:00:51 GMT expires: - '-1' pragma: @@ -8250,7 +8304,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:48 GMT + - Tue, 03 Aug 2021 22:00:51 GMT expires: - '-1' pragma: @@ -8301,7 +8355,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:48 GMT + - Tue, 03 Aug 2021 22:00:52 GMT expires: - '-1' pragma: @@ -8352,7 +8406,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:49 GMT + - Tue, 03 Aug 2021 22:00:53 GMT expires: - '-1' pragma: @@ -8403,7 +8457,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:49 GMT + - Tue, 03 Aug 2021 22:00:53 GMT expires: - '-1' pragma: @@ -8454,7 +8508,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:50 GMT + - Tue, 03 Aug 2021 22:00:54 GMT expires: - '-1' pragma: @@ -8505,7 +8559,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:51 GMT + - Tue, 03 Aug 2021 22:00:54 GMT expires: - '-1' pragma: @@ -8558,7 +8612,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:51 GMT + - Tue, 03 Aug 2021 22:00:55 GMT expires: - '-1' pragma: @@ -8611,7 +8665,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:52 GMT + - Tue, 03 Aug 2021 22:00:55 GMT expires: - '-1' pragma: @@ -8671,7 +8725,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:52 GMT + - Tue, 03 Aug 2021 22:00:56 GMT expires: - '-1' pragma: @@ -8724,7 +8778,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:53 GMT + - Tue, 03 Aug 2021 22:00:56 GMT expires: - '-1' pragma: @@ -8777,7 +8831,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:53 GMT + - Tue, 03 Aug 2021 22:00:57 GMT expires: - '-1' pragma: @@ -8830,7 +8884,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:27:54 GMT + - Tue, 03 Aug 2021 22:00:58 GMT expires: - '-1' pragma: @@ -8875,8 +8929,8 @@ 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-03T09:25:54Z","expirationTime":"2021-08-03T15:00:00Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108030010001057","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-03T02:25:38Z","createdDate":"2021-08-03T09:25:54Z","modifiedDate":"2021-08-03T09:28:02Z"}}' + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-08-03T21:58:55Z","expirationTime":"2021-08-04T00:01:07Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108030010002636","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-03T14:58:42Z","createdDate":"2021-08-03T21:58:55Z","modifiedDate":"2021-08-03T22:01:05Z"}}' headers: cache-control: - no-cache @@ -8885,7 +8939,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:28:05 GMT + - Tue, 03 Aug 2021 22:01:08 GMT expires: - '-1' pragma: @@ -8931,8 +8985,8 @@ 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-03T09:25:54Z","expirationTime":"2021-08-03T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108030010001057","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-03T02:25:38Z","createdDate":"2021-08-03T09:25:54Z","modifiedDate":"2021-08-03T09:28:14Z"}}' + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-08-03T21:58:55Z","expirationTime":"2021-08-04T14:02:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108030010002636","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-03T14:58:42Z","createdDate":"2021-08-03T21:58:55Z","modifiedDate":"2021-08-03T22:01:15Z"}}' headers: cache-control: - no-cache @@ -8941,7 +8995,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:28:17 GMT + - Tue, 03 Aug 2021 22:01:18 GMT expires: - '-1' pragma: @@ -8987,8 +9041,8 @@ 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-03T09:25:54Z","expirationTime":"2021-08-03T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108030010001057","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-03T02:25:38Z","createdDate":"2021-08-03T09:25:54Z","modifiedDate":"2021-08-03T09:28:22Z"}}' + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-08-03T21:58:55Z","expirationTime":"2021-08-04T14:02:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108030010002636","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-03T14:58:42Z","createdDate":"2021-08-03T21:58:55Z","modifiedDate":"2021-08-03T22:01:22Z"}}' headers: cache-control: - no-cache @@ -8997,7 +9051,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:28:25 GMT + - Tue, 03 Aug 2021 22:01:27 GMT expires: - '-1' pragma: @@ -9039,8 +9093,8 @@ 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-03T09:25:54Z","expirationTime":"2021-08-03T17:00:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108030010001057","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-03T02:25:38Z","createdDate":"2021-08-03T09:25:54Z","modifiedDate":"2021-08-03T09:28:22Z"}}' + Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-08-03T21:58:55Z","expirationTime":"2021-08-04T14:02:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108030010002636","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-03T14:58:42Z","createdDate":"2021-08-03T21:58:55Z","modifiedDate":"2021-08-03T22:01:22Z"}}' headers: cache-control: - no-cache @@ -9049,7 +9103,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:28:27 GMT + - Tue, 03 Aug 2021 22:01:29 GMT expires: - '-1' pragma: 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 30b7ccb16e8..066e390b751 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 @@ -33,7 +33,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:28:28 GMT + - Tue, 03 Aug 2021 21:58:41 GMT expires: - '-1' pragma: @@ -60,7 +60,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-03T02:28:29.000Z", + cli test. Do not assign and close after a day.", "problemStartTime": "2021-08-03T14:58:42.000Z", "serviceId": "/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc", "technicalTicketDetails": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Compute/virtualMachines/testserver"}}}' headers: @@ -89,17 +89,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/684e4f7f-c164-48db-b3cb-75d91cff2384?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/81b61629-a233-4c92-bdf4-e6fe1fe48ac2?api-version=2020-04-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 03 Aug 2021 09:28:30 GMT + - Tue, 03 Aug 2021 21:58:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationResults/684e4f7f-c164-48db-b3cb-75d91cff2384?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationResults/81b61629-a233-4c92-bdf4-e6fe1fe48ac2?api-version=2020-04-01 pragma: - no-cache server: @@ -131,10 +131,10 @@ interactions: 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/684e4f7f-c164-48db-b3cb-75d91cff2384?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/81b61629-a233-4c92-bdf4-e6fe1fe48ac2?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/684e4f7f-c164-48db-b3cb-75d91cff2384","status":"Failed","error":{"code":"InvalidParameterValue","message":"Resource + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/81b61629-a233-4c92-bdf4-e6fe1fe48ac2","status":"Failed","error":{"code":"InvalidParameterValue","message":"Resource Id /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Compute/virtualMachines/testserver is not valid. Provide a valid ResourceId for technical support ticket","target":"Resource Id /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Compute/virtualMachines/testserver @@ -147,7 +147,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:29:01 GMT + - Tue, 03 Aug 2021 21:59:13 GMT expires: - '-1' pragma: @@ -202,7 +202,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 09:29:01 GMT + - Tue, 03 Aug 2021 21:59:14 GMT expires: - '-1' pragma: diff --git a/src/support/setup.py b/src/support/setup.py index 22b568b0ca7..f87cec763ca 100644 --- a/src/support/setup.py +++ b/src/support/setup.py @@ -24,12 +24,10 @@ 'Intended Audience :: Developers', 'Intended Audience :: System Administrators', 'Programming Language :: Python', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.4', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', 'License :: OSI Approved :: MIT License', ] From 84f5b34af0aafd0ab503161ecfc244efc3e2dfb2 Mon Sep 17 00:00:00 2001 From: Rudra Sharma Date: Tue, 3 Aug 2021 15:21:34 -0700 Subject: [PATCH 09/12] Updates --- src/support/azext_support/custom.py | 4 +- .../recordings/test_support_services.yaml | 8 +- .../recordings/test_support_tickets.yaml | 290 +++++++++--------- ...st_support_tickets_create_validations.yaml | 18 +- 4 files changed, 160 insertions(+), 160 deletions(-) diff --git a/src/support/azext_support/custom.py b/src/support/azext_support/custom.py index 2754f0170b0..2073f051a08 100644 --- a/src/support/azext_support/custom.py +++ b/src/support/azext_support/custom.py @@ -137,8 +137,8 @@ def create_support_tickets(cmd, client, if partner_tenant_id is not None: external_bearer_token = get_bearer_token(cmd, partner_tenant_id) - client.begin_create(support_ticket_name=ticket_name, create_support_ticket_parameters=body, - headers={'x-ms-authorization-auxiliary': external_bearer_token}) + return client.begin_create(support_ticket_name=ticket_name, create_support_ticket_parameters=body, + headers={'x-ms-authorization-auxiliary': external_bearer_token}) return client.begin_create(support_ticket_name=ticket_name, create_support_ticket_parameters=body) 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 c45f7694188..196d20d84d8 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 @@ -301,7 +301,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 21:58:42 GMT + - Tue, 03 Aug 2021 22:18:12 GMT expires: - '-1' pragma: @@ -348,7 +348,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 21:58:42 GMT + - Tue, 03 Aug 2021 22:18:14 GMT expires: - '-1' pragma: @@ -412,7 +412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 21:58:43 GMT + - Tue, 03 Aug 2021 22:18:14 GMT expires: - '-1' pragma: @@ -459,7 +459,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 21:58:44 GMT + - Tue, 03 Aug 2021 22:18:14 GMT expires: - '-1' pragma: 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 116721b42ee..cabe1202f5f 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 @@ -33,7 +33,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 21:58:41 GMT + - Tue, 03 Aug 2021 22:18:13 GMT expires: - '-1' pragma: @@ -60,7 +60,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-03T14:58:42.000Z", + cli test. Do not assign and close after a day.", "problemStartTime": "2021-08-03T15:18:13.000Z", "serviceId": "/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc"}}' headers: Accept: @@ -88,17 +88,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/c8547eb2-9dc2-4fbe-93c8-7f3b0534bfb9?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/3a65fef3-9316-4c36-a5ca-fc38e1dbd4ad?api-version=2020-04-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 03 Aug 2021 21:58:42 GMT + - Tue, 03 Aug 2021 22:18:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationResults/c8547eb2-9dc2-4fbe-93c8-7f3b0534bfb9?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationResults/3a65fef3-9316-4c36-a5ca-fc38e1dbd4ad?api-version=2020-04-01 pragma: - no-cache server: @@ -130,10 +130,10 @@ interactions: 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/c8547eb2-9dc2-4fbe-93c8-7f3b0534bfb9?api-version=2020-04-01 + 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 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/c8547eb2-9dc2-4fbe-93c8-7f3b0534bfb9","status":"Succeeded","properties":{"supportTicketCreationWarning":""}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/3a65fef3-9316-4c36-a5ca-fc38e1dbd4ad","status":"Succeeded","properties":{"supportTicketCreationWarning":""}}' headers: cache-control: - no-cache @@ -142,7 +142,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 21:59:13 GMT + - Tue, 03 Aug 2021 22:18:45 GMT expires: - '-1' pragma: @@ -184,8 +184,8 @@ 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","preferredTimeZone":"Pacific - Standard Time","country":"USA","preferredSupportLanguage":"en-US"},"serviceLevelAgreement":{"startTime":"2021-08-03T21:58:55Z","expirationTime":"2021-08-04T13:59:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108030010002636","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-03T14:58:42Z","createdDate":"2021-08-03T21:58:55Z","modifiedDate":"2021-08-03T21:59:08Z"}}' + 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 @@ -194,7 +194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 21:59:14 GMT + - Tue, 03 Aug 2021 22:18:46 GMT expires: - '-1' pragma: @@ -248,7 +248,7 @@ interactions: content-type: - application/json date: - - Tue, 03 Aug 2021 21:59:16 GMT + - Tue, 03 Aug 2021 22:18:48 GMT expires: - '-1' pragma: @@ -293,17 +293,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/33116498-cc30-4951-bb3e-e8a99fc36675?api-version=2020-04-01 + - 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 21:59:18 GMT + - 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/33116498-cc30-4951-bb3e-e8a99fc36675?api-version=2020-04-01 + - 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: @@ -334,10 +334,10 @@ interactions: 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/33116498-cc30-4951-bb3e-e8a99fc36675?api-version=2020-04-01 + 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/33116498-cc30-4951-bb3e-e8a99fc36675","status":"Succeeded","properties":{"supportTicketCreationWarning":""}}' + 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 @@ -346,7 +346,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 21:59:49 GMT + - Tue, 03 Aug 2021 22:19:20 GMT expires: - '-1' pragma: @@ -385,8 +385,8 @@ interactions: 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#2108030010002636","body":"
test
-        body for communication posted from azure python cli
","createdDate":"2021-08-03T21:59:21Z"}}' + 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 @@ -395,7 +395,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 21:59:50 GMT + - Tue, 03 Aug 2021 22:19:21 GMT expires: - '-1' pragma: @@ -433,9 +433,9 @@ interactions: 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#2108030010002636\",\"body\":\"
test
-        body for communication posted from azure python cli
\",\"createdDate\":\"2021-08-03T21:59:21Z\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/test_ticket_from_cli_000001/communications/774494fd-a5f4-eb11-94ee-0022482310d1\",\"name\":\"774494fd-a5f4-eb11-94ee-0022482310d1\",\"type\":\"Microsoft.Support/communications\",\"properties\":{\"communicationType\":\"Web\",\"communicationDirection\":\"Outbound\",\"sender\":\"support@microsoftsupport.com\",\"subject\":\"\\nCase - 2108030010002636\u2009 Your question was succe... - TrackingID#2108030010002636\",\"body\":\"\\n\\ntest + 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
Support request number:\\n\\n2108030010002636\\n\\n\\n\\n2108030010002669\\n\\n\\n\\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
\\n\\n\\n\\n\\n\\n\\n\\n\\n\",\"createdDate\":\"2021-08-03T21:59:01Z\"}}]}" + width=\\\"71\\\" style=\\\"width:71px; height:15px\\\">\\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\",\"createdDate\":\"2021-08-03T22:18:35Z\"}}]}" headers: cache-control: - no-cache @@ -637,7 +637,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 21:59:53 GMT + - Tue, 03 Aug 2021 22:19:25 GMT expires: - '-1' pragma: @@ -675,8 +675,8 @@ interactions: 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#2108030010002636","body":"
test
-        body for communication posted from azure python cli
","createdDate":"2021-08-03T21:59:21Z"}}' + 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 @@ -685,7 +685,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 21:59:55 GMT + - Tue, 03 Aug 2021 22:19:27 GMT expires: - '-1' pragma: @@ -725,8 +725,8 @@ interactions: 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-03T21:58:55Z","expirationTime":"2021-08-04T13:59:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108030010002636","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-03T14:58:42Z","createdDate":"2021-08-03T21:58:55Z","modifiedDate":"2021-08-03T21:59:23Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/supportTickets/BillingTestTicket","name":"BillingTestTicket","type":"Microsoft.Support/supportTickets","properties":{"description":"test + 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 @@ -784,7 +784,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 21:59:56 GMT + - Tue, 03 Aug 2021 22:19:28 GMT expires: - '-1' pragma: @@ -882,7 +882,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 21:59:57 GMT + - Tue, 03 Aug 2021 22:19:29 GMT expires: - '-1' pragma: @@ -980,7 +980,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 21:59:58 GMT + - Tue, 03 Aug 2021 22:19:29 GMT expires: - '-1' pragma: @@ -1080,7 +1080,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 21:59:58 GMT + - Tue, 03 Aug 2021 22:19:30 GMT expires: - '-1' pragma: @@ -1176,7 +1176,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 21:59:59 GMT + - Tue, 03 Aug 2021 22:19:30 GMT expires: - '-1' pragma: @@ -1272,7 +1272,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 21:59:59 GMT + - Tue, 03 Aug 2021 22:19:31 GMT expires: - '-1' pragma: @@ -1368,7 +1368,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:00 GMT + - Tue, 03 Aug 2021 22:19:32 GMT expires: - '-1' pragma: @@ -1472,7 +1472,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:01 GMT + - Tue, 03 Aug 2021 22:19:32 GMT expires: - '-1' pragma: @@ -1576,7 +1576,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:01 GMT + - Tue, 03 Aug 2021 22:19:33 GMT expires: - '-1' pragma: @@ -1674,7 +1674,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:02 GMT + - Tue, 03 Aug 2021 22:19:33 GMT expires: - '-1' pragma: @@ -1776,7 +1776,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:03 GMT + - Tue, 03 Aug 2021 22:19:34 GMT expires: - '-1' pragma: @@ -1876,7 +1876,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:03 GMT + - Tue, 03 Aug 2021 22:19:34 GMT expires: - '-1' pragma: @@ -1974,7 +1974,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:04 GMT + - Tue, 03 Aug 2021 22:19:35 GMT expires: - '-1' pragma: @@ -2076,7 +2076,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:05 GMT + - Tue, 03 Aug 2021 22:19:36 GMT expires: - '-1' pragma: @@ -2184,7 +2184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:05 GMT + - Tue, 03 Aug 2021 22:19:37 GMT expires: - '-1' pragma: @@ -2280,7 +2280,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:06 GMT + - Tue, 03 Aug 2021 22:19:37 GMT expires: - '-1' pragma: @@ -2376,7 +2376,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:06 GMT + - Tue, 03 Aug 2021 22:19:38 GMT expires: - '-1' pragma: @@ -2473,7 +2473,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:07 GMT + - Tue, 03 Aug 2021 22:19:39 GMT expires: - '-1' pragma: @@ -2573,7 +2573,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:08 GMT + - Tue, 03 Aug 2021 22:19:39 GMT expires: - '-1' pragma: @@ -2669,7 +2669,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:08 GMT + - Tue, 03 Aug 2021 22:19:40 GMT expires: - '-1' pragma: @@ -2769,7 +2769,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:09 GMT + - Tue, 03 Aug 2021 22:19:40 GMT expires: - '-1' pragma: @@ -2879,7 +2879,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:09 GMT + - Tue, 03 Aug 2021 22:19:41 GMT expires: - '-1' pragma: @@ -2977,7 +2977,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:10 GMT + - Tue, 03 Aug 2021 22:19:41 GMT expires: - '-1' pragma: @@ -3073,7 +3073,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:11 GMT + - Tue, 03 Aug 2021 22:19:42 GMT expires: - '-1' pragma: @@ -3175,7 +3175,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:11 GMT + - Tue, 03 Aug 2021 22:19:43 GMT expires: - '-1' pragma: @@ -3281,7 +3281,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:12 GMT + - Tue, 03 Aug 2021 22:19:43 GMT expires: - '-1' pragma: @@ -3384,7 +3384,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:12 GMT + - Tue, 03 Aug 2021 22:19:44 GMT expires: - '-1' pragma: @@ -3488,7 +3488,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:13 GMT + - Tue, 03 Aug 2021 22:19:45 GMT expires: - '-1' pragma: @@ -3586,7 +3586,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:14 GMT + - Tue, 03 Aug 2021 22:19:45 GMT expires: - '-1' pragma: @@ -3642,7 +3642,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:14 GMT + - Tue, 03 Aug 2021 22:19:46 GMT expires: - '-1' pragma: @@ -3748,7 +3748,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:15 GMT + - Tue, 03 Aug 2021 22:19:46 GMT expires: - '-1' pragma: @@ -3846,7 +3846,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:15 GMT + - Tue, 03 Aug 2021 22:19:47 GMT expires: - '-1' pragma: @@ -3948,7 +3948,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:16 GMT + - Tue, 03 Aug 2021 22:19:48 GMT expires: - '-1' pragma: @@ -4044,7 +4044,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:17 GMT + - Tue, 03 Aug 2021 22:19:48 GMT expires: - '-1' pragma: @@ -4145,7 +4145,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:17 GMT + - Tue, 03 Aug 2021 22:19:49 GMT expires: - '-1' pragma: @@ -4255,7 +4255,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:18 GMT + - Tue, 03 Aug 2021 22:19:49 GMT expires: - '-1' pragma: @@ -4353,7 +4353,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:19 GMT + - Tue, 03 Aug 2021 22:19:50 GMT expires: - '-1' pragma: @@ -4449,7 +4449,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:19 GMT + - Tue, 03 Aug 2021 22:19:51 GMT expires: - '-1' pragma: @@ -4547,7 +4547,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:20 GMT + - Tue, 03 Aug 2021 22:19:51 GMT expires: - '-1' pragma: @@ -4608,7 +4608,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:20 GMT + - Tue, 03 Aug 2021 22:19:52 GMT expires: - '-1' pragma: @@ -4714,7 +4714,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:21 GMT + - Tue, 03 Aug 2021 22:19:52 GMT expires: - '-1' pragma: @@ -4817,7 +4817,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:21 GMT + - Tue, 03 Aug 2021 22:19:53 GMT expires: - '-1' pragma: @@ -4919,7 +4919,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:22 GMT + - Tue, 03 Aug 2021 22:19:54 GMT expires: - '-1' pragma: @@ -4975,7 +4975,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:23 GMT + - Tue, 03 Aug 2021 22:19:54 GMT expires: - '-1' pragma: @@ -5066,7 +5066,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:23 GMT + - Tue, 03 Aug 2021 22:19:55 GMT expires: - '-1' pragma: @@ -5164,7 +5164,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:24 GMT + - Tue, 03 Aug 2021 22:19:55 GMT expires: - '-1' pragma: @@ -5268,7 +5268,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:24 GMT + - Tue, 03 Aug 2021 22:19:56 GMT expires: - '-1' pragma: @@ -5376,7 +5376,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:25 GMT + - Tue, 03 Aug 2021 22:19:57 GMT expires: - '-1' pragma: @@ -5478,7 +5478,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:26 GMT + - Tue, 03 Aug 2021 22:19:58 GMT expires: - '-1' pragma: @@ -5582,7 +5582,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:26 GMT + - Tue, 03 Aug 2021 22:19:58 GMT expires: - '-1' pragma: @@ -5688,7 +5688,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:27 GMT + - Tue, 03 Aug 2021 22:19:59 GMT expires: - '-1' pragma: @@ -5789,7 +5789,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:27 GMT + - Tue, 03 Aug 2021 22:20:00 GMT expires: - '-1' pragma: @@ -5905,7 +5905,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:28 GMT + - Tue, 03 Aug 2021 22:20:00 GMT expires: - '-1' pragma: @@ -6014,7 +6014,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:29 GMT + - Tue, 03 Aug 2021 22:20:01 GMT expires: - '-1' pragma: @@ -6114,7 +6114,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:29 GMT + - Tue, 03 Aug 2021 22:20:02 GMT expires: - '-1' pragma: @@ -6180,7 +6180,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:30 GMT + - Tue, 03 Aug 2021 22:20:02 GMT expires: - '-1' pragma: @@ -6274,7 +6274,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:31 GMT + - Tue, 03 Aug 2021 22:20:03 GMT expires: - '-1' pragma: @@ -6339,7 +6339,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:31 GMT + - Tue, 03 Aug 2021 22:20:03 GMT expires: - '-1' pragma: @@ -6445,7 +6445,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:32 GMT + - Tue, 03 Aug 2021 22:20:04 GMT expires: - '-1' pragma: @@ -6511,7 +6511,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:33 GMT + - Tue, 03 Aug 2021 22:20:04 GMT expires: - '-1' pragma: @@ -6562,7 +6562,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:33 GMT + - Tue, 03 Aug 2021 22:20:05 GMT expires: - '-1' pragma: @@ -6615,7 +6615,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:34 GMT + - Tue, 03 Aug 2021 22:20:05 GMT expires: - '-1' pragma: @@ -6681,7 +6681,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:34 GMT + - Tue, 03 Aug 2021 22:20:06 GMT expires: - '-1' pragma: @@ -6732,7 +6732,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:35 GMT + - Tue, 03 Aug 2021 22:20:07 GMT expires: - '-1' pragma: @@ -6807,7 +6807,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:35 GMT + - Tue, 03 Aug 2021 22:20:07 GMT expires: - '-1' pragma: @@ -6879,7 +6879,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:37 GMT + - Tue, 03 Aug 2021 22:20:08 GMT expires: - '-1' pragma: @@ -6931,7 +6931,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:38 GMT + - Tue, 03 Aug 2021 22:20:08 GMT expires: - '-1' pragma: @@ -6990,7 +6990,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:38 GMT + - Tue, 03 Aug 2021 22:20:09 GMT expires: - '-1' pragma: @@ -7070,7 +7070,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:39 GMT + - Tue, 03 Aug 2021 22:20:09 GMT expires: - '-1' pragma: @@ -7123,7 +7123,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:40 GMT + - Tue, 03 Aug 2021 22:20:10 GMT expires: - '-1' pragma: @@ -7196,7 +7196,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:40 GMT + - Tue, 03 Aug 2021 22:20:10 GMT expires: - '-1' pragma: @@ -7280,7 +7280,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:41 GMT + - Tue, 03 Aug 2021 22:20:11 GMT expires: - '-1' pragma: @@ -7336,7 +7336,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:42 GMT + - Tue, 03 Aug 2021 22:20:12 GMT expires: - '-1' pragma: @@ -7394,7 +7394,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:42 GMT + - Tue, 03 Aug 2021 22:20:13 GMT expires: - '-1' pragma: @@ -7452,7 +7452,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:43 GMT + - Tue, 03 Aug 2021 22:20:13 GMT expires: - '-1' pragma: @@ -7510,7 +7510,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:43 GMT + - Tue, 03 Aug 2021 22:20:14 GMT expires: - '-1' pragma: @@ -7576,7 +7576,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:44 GMT + - Tue, 03 Aug 2021 22:20:14 GMT expires: - '-1' pragma: @@ -7627,7 +7627,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:44 GMT + - Tue, 03 Aug 2021 22:20:15 GMT expires: - '-1' pragma: @@ -7704,7 +7704,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:45 GMT + - Tue, 03 Aug 2021 22:20:16 GMT expires: - '-1' pragma: @@ -7760,7 +7760,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:46 GMT + - Tue, 03 Aug 2021 22:20:16 GMT expires: - '-1' pragma: @@ -7813,7 +7813,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:46 GMT + - Tue, 03 Aug 2021 22:20:17 GMT expires: - '-1' pragma: @@ -7866,7 +7866,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:47 GMT + - Tue, 03 Aug 2021 22:20:18 GMT expires: - '-1' pragma: @@ -7917,7 +7917,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:47 GMT + - Tue, 03 Aug 2021 22:20:18 GMT expires: - '-1' pragma: @@ -7982,7 +7982,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:48 GMT + - Tue, 03 Aug 2021 22:20:19 GMT expires: - '-1' pragma: @@ -8042,7 +8042,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:48 GMT + - Tue, 03 Aug 2021 22:20:19 GMT expires: - '-1' pragma: @@ -8093,7 +8093,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:49 GMT + - Tue, 03 Aug 2021 22:20:20 GMT expires: - '-1' pragma: @@ -8144,7 +8144,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:50 GMT + - Tue, 03 Aug 2021 22:20:21 GMT expires: - '-1' pragma: @@ -8200,7 +8200,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:50 GMT + - Tue, 03 Aug 2021 22:20:21 GMT expires: - '-1' pragma: @@ -8253,7 +8253,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:51 GMT + - Tue, 03 Aug 2021 22:20:22 GMT expires: - '-1' pragma: @@ -8304,7 +8304,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:51 GMT + - Tue, 03 Aug 2021 22:20:22 GMT expires: - '-1' pragma: @@ -8355,7 +8355,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:52 GMT + - Tue, 03 Aug 2021 22:20:23 GMT expires: - '-1' pragma: @@ -8406,7 +8406,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:53 GMT + - Tue, 03 Aug 2021 22:20:24 GMT expires: - '-1' pragma: @@ -8457,7 +8457,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:53 GMT + - Tue, 03 Aug 2021 22:20:24 GMT expires: - '-1' pragma: @@ -8508,7 +8508,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:54 GMT + - Tue, 03 Aug 2021 22:20:25 GMT expires: - '-1' pragma: @@ -8559,7 +8559,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:54 GMT + - Tue, 03 Aug 2021 22:20:26 GMT expires: - '-1' pragma: @@ -8612,7 +8612,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:55 GMT + - Tue, 03 Aug 2021 22:20:26 GMT expires: - '-1' pragma: @@ -8665,7 +8665,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:55 GMT + - Tue, 03 Aug 2021 22:20:27 GMT expires: - '-1' pragma: @@ -8725,7 +8725,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:56 GMT + - Tue, 03 Aug 2021 22:20:29 GMT expires: - '-1' pragma: @@ -8778,7 +8778,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:56 GMT + - Tue, 03 Aug 2021 22:20:30 GMT expires: - '-1' pragma: @@ -8831,7 +8831,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:57 GMT + - Tue, 03 Aug 2021 22:20:30 GMT expires: - '-1' pragma: @@ -8884,7 +8884,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:00:58 GMT + - Tue, 03 Aug 2021 22:20:31 GMT expires: - '-1' pragma: @@ -8929,8 +8929,8 @@ 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-03T21:58:55Z","expirationTime":"2021-08-04T00:01:07Z","slaMinutes":120},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108030010002636","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-03T14:58:42Z","createdDate":"2021-08-03T21:58:55Z","modifiedDate":"2021-08-03T22:01:05Z"}}' + 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"}}' headers: cache-control: - no-cache @@ -8939,7 +8939,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:01:08 GMT + - Tue, 03 Aug 2021 22:20:44 GMT expires: - '-1' pragma: @@ -8985,8 +8985,8 @@ 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-03T21:58:55Z","expirationTime":"2021-08-04T14:02:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108030010002636","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-03T14:58:42Z","createdDate":"2021-08-03T21:58:55Z","modifiedDate":"2021-08-03T22:01:15Z"}}' + 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"}}' headers: cache-control: - no-cache @@ -8995,7 +8995,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:01:18 GMT + - Tue, 03 Aug 2021 22:20:55 GMT expires: - '-1' pragma: @@ -9041,8 +9041,8 @@ 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-03T21:58:55Z","expirationTime":"2021-08-04T14:02:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108030010002636","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-03T14:58:42Z","createdDate":"2021-08-03T21:58:55Z","modifiedDate":"2021-08-03T22:01:22Z"}}' + 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"}}' headers: cache-control: - no-cache @@ -9051,7 +9051,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:01:27 GMT + - Tue, 03 Aug 2021 22:21:03 GMT expires: - '-1' pragma: @@ -9093,8 +9093,8 @@ 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-03T21:58:55Z","expirationTime":"2021-08-04T14:02:00Z","slaMinutes":240},"supportEngineer":{},"supportPlanType":"Premier","supportTicketId":"2108030010002636","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-03T14:58:42Z","createdDate":"2021-08-03T21:58:55Z","modifiedDate":"2021-08-03T22:01:22Z"}}' + 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"}}' headers: cache-control: - no-cache @@ -9103,7 +9103,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:01:29 GMT + - Tue, 03 Aug 2021 22:21:04 GMT expires: - '-1' pragma: 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 066e390b751..69c1d340df4 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 @@ -33,7 +33,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 21:58:41 GMT + - Tue, 03 Aug 2021 22:18:13 GMT expires: - '-1' pragma: @@ -60,7 +60,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-03T14:58:42.000Z", + cli test. Do not assign and close after a day.", "problemStartTime": "2021-08-03T15:18:13.000Z", "serviceId": "/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc", "technicalTicketDetails": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Compute/virtualMachines/testserver"}}}' headers: @@ -89,17 +89,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/81b61629-a233-4c92-bdf4-e6fe1fe48ac2?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/73427ccd-6ccf-437f-aa95-c9636c202988?api-version=2020-04-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 03 Aug 2021 21:58:43 GMT + - Tue, 03 Aug 2021 22:18:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationResults/81b61629-a233-4c92-bdf4-e6fe1fe48ac2?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationResults/73427ccd-6ccf-437f-aa95-c9636c202988?api-version=2020-04-01 pragma: - no-cache server: @@ -131,10 +131,10 @@ interactions: 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/81b61629-a233-4c92-bdf4-e6fe1fe48ac2?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/73427ccd-6ccf-437f-aa95-c9636c202988?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/81b61629-a233-4c92-bdf4-e6fe1fe48ac2","status":"Failed","error":{"code":"InvalidParameterValue","message":"Resource + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/73427ccd-6ccf-437f-aa95-c9636c202988","status":"Failed","error":{"code":"InvalidParameterValue","message":"Resource Id /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Compute/virtualMachines/testserver is not valid. Provide a valid ResourceId for technical support ticket","target":"Resource Id /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Compute/virtualMachines/testserver @@ -147,7 +147,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 21:59:13 GMT + - Tue, 03 Aug 2021 22:18:44 GMT expires: - '-1' pragma: @@ -202,7 +202,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 21:59:14 GMT + - Tue, 03 Aug 2021 22:18:46 GMT expires: - '-1' pragma: From b56375805a751e425f5bfe4b31b8a39d3cc3cc18 Mon Sep 17 00:00:00 2001 From: Rudra Sharma Date: Wed, 20 Oct 2021 11:55:38 -0700 Subject: [PATCH 10/12] Updates --- ...st_support_tickets_create_validations.yaml | 170 +----------------- 1 file changed, 2 insertions(+), 168 deletions(-) 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 69c1d340df4..f889ef0cd51 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 @@ -1,170 +1,4 @@ interactions: -- request: - body: '{"name": "test_ticket_from_cli_000001", "type": "Microsoft.Support/supportTickets"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets create - Connection: - - keep-alive - Content-Length: - - '86' - Content-Type: - - application/json - 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 --technical-resource - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/checkNameAvailability?api-version=2020-04-01 - response: - body: - string: '{"nameAvailable":true}' - headers: - cache-control: - - no-cache - content-length: - - '22' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:18: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 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"description": "test ticket from python cli test. Do not - assign and close after a day.", "problemClassificationId": "/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/ef8b3865-0c5a-247b-dcaa-d70fd7611a3c", - "severity": "minimal", "require24X7Response": false, "contactDetails": {"firstName": - "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", - "serviceId": "/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc", - "technicalTicketDetails": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Compute/virtualMachines/testserver"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - support tickets create - Connection: - - keep-alive - Content-Length: - - '962' - Content-Type: - - application/json - 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 --technical-resource - 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?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/73427ccd-6ccf-437f-aa95-c9636c202988?api-version=2020-04-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 03 Aug 2021 22:18:15 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationResults/73427ccd-6ccf-437f-aa95-c9636c202988?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 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 --technical-resource - 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/73427ccd-6ccf-437f-aa95-c9636c202988?api-version=2020-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/operationsStatus/73427ccd-6ccf-437f-aa95-c9636c202988","status":"Failed","error":{"code":"InvalidParameterValue","message":"Resource - Id /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Compute/virtualMachines/testserver - is not valid. Provide a valid ResourceId for technical support ticket","target":"Resource - Id /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Compute/virtualMachines/testserver - is not valid. Provide a valid ResourceId for technical support ticket","details":[]}}' - headers: - cache-control: - - no-cache - content-length: - - '655' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 Aug 2021 22:18: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: '{"name": "12345", "type": "Microsoft.Support/supportTickets"}' headers: @@ -185,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.29.0 azsdk-python-mgmt-support/6.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Support/checkNameAvailability?api-version=2020-04-01 response: @@ -202,7 +36,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Aug 2021 22:18:46 GMT + - Wed, 20 Oct 2021 18:53:55 GMT expires: - '-1' pragma: From 4d85d0f138951b0a95e156c35623bc96fd49249a Mon Sep 17 00:00:00 2001 From: Rudra Sharma Date: Tue, 26 Oct 2021 18:13:49 -0700 Subject: [PATCH 11/12] Per comments --- src/support/azext_support/_utils.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/support/azext_support/_utils.py b/src/support/azext_support/_utils.py index b13df024134..a0dba193490 100644 --- a/src/support/azext_support/_utils.py +++ b/src/support/azext_support/_utils.py @@ -6,8 +6,8 @@ import re from azure.cli.core._profile import Profile +from azure.cli.core.azclierror import UnauthorizedError from knack.log import get_logger -from knack.util import CLIError logger = get_logger(__name__) @@ -48,8 +48,9 @@ def get_bearer_token(cmd, tenant_id): try: logger.debug("Retrieving access token for tenant %s", tenant_id) creds, _, _ = client.get_raw_token(tenant=tenant_id) - except CLIError as cli_error: - raise CLIError("Can't find authorization for {0}. ".format(tenant_id) + - "Run \'az login -t --allow-no-subscriptions\' and try again.") from cli_error + except UnauthorizedError as unauthorized_error: + raise UnauthorizedError("Can't find authorization for {0}. ".format(tenant_id) + + "Run \'az login -t --allow-no-subscriptions\' and try again.") from \ + unauthorized_error return "Bearer " + creds[1] From 194d81bdf4d88c956d30449395b94a9108b4aa1e Mon Sep 17 00:00:00 2001 From: Yu Chen Date: Wed, 27 Oct 2021 09:35:05 +0800 Subject: [PATCH 12/12] Apply suggestions from code review --- src/support/azext_support/_utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/support/azext_support/_utils.py b/src/support/azext_support/_utils.py index a0dba193490..9429828d972 100644 --- a/src/support/azext_support/_utils.py +++ b/src/support/azext_support/_utils.py @@ -7,6 +7,7 @@ from azure.cli.core._profile import Profile from azure.cli.core.azclierror import UnauthorizedError +from knack.util import CLIError from knack.log import get_logger logger = get_logger(__name__) @@ -48,7 +49,7 @@ def get_bearer_token(cmd, tenant_id): try: logger.debug("Retrieving access token for tenant %s", tenant_id) creds, _, _ = client.get_raw_token(tenant=tenant_id) - except UnauthorizedError as unauthorized_error: + except CLIError as unauthorized_error: raise UnauthorizedError("Can't find authorization for {0}. ".format(tenant_id) + "Run \'az login -t --allow-no-subscriptions\' and try again.") from \ unauthorized_error