From e2721c084bf131e137312458163b4dd801420ba0 Mon Sep 17 00:00:00 2001 From: SDK Automation Date: Mon, 19 Oct 2020 07:14:52 +0000 Subject: [PATCH 1/4] Generated from ae2cf6d4c24c8c13596b8f5249c6726f7293e1ab update java read me --- .../azure-mgmt-healthcareapis/README.md | 30 +- .../_healthcare_apis_management_client.py | 12 +- .../mgmt/healthcareapis/models/__init__.py | 43 ++ ...healthcare_apis_management_client_enums.py | 27 + .../mgmt/healthcareapis/models/_models.py | 487 +++++++++++++++-- .../mgmt/healthcareapis/models/_models_py3.py | 499 ++++++++++++++++-- .../healthcareapis/models/_paged_models.py | 13 + .../healthcareapis/operations/__init__.py | 4 + .../_operation_results_operations.py | 6 +- .../healthcareapis/operations/_operations.py | 6 +- ...private_endpoint_connections_operations.py | 371 +++++++++++++ .../_private_link_resources_operations.py | 166 ++++++ .../operations/_services_operations.py | 30 +- .../azure-mgmt-healthcareapis/setup.py | 5 +- 14 files changed, 1570 insertions(+), 129 deletions(-) create mode 100644 sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/operations/_private_endpoint_connections_operations.py create mode 100644 sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/operations/_private_link_resources_operations.py diff --git a/sdk/healthcareapis/azure-mgmt-healthcareapis/README.md b/sdk/healthcareapis/azure-mgmt-healthcareapis/README.md index b8354473f458..539d59d859cf 100644 --- a/sdk/healthcareapis/azure-mgmt-healthcareapis/README.md +++ b/sdk/healthcareapis/azure-mgmt-healthcareapis/README.md @@ -1,29 +1,21 @@ -## Microsoft Azure SDK for Python +# Microsoft Azure SDK for Python This is the Microsoft Azure MyService Management Client Library. +This package has been tested with Python 2.7, 3.5, 3.6, 3.7 and 3.8. +For a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all). -Azure Resource Manager (ARM) is the next generation of management APIs -that replace the old Azure Service Management (ASM). -This package has been tested with Python 2.7, 3.5, 3.6 and 3.7. +# Usage -For the older Azure Service Management (ASM) libraries, see -[azure-servicemanagement-legacy](https://pypi.python.org/pypi/azure-servicemanagement-legacy) -library. +For code examples, see [MyService Management](https://docs.microsoft.com/python/api/overview/azure/) +on docs.microsoft.com. -For a more complete set of Azure libraries, see the -[azure sdk python release](https://aka.ms/azsdk/python/all). -## Usage +# Provide Feedback -For code examples, see [MyService -Management](https://docs.microsoft.com/python/api/overview/azure/) on -docs.microsoft.com. - -## Provide Feedback - -If you encounter any bugs or have suggestions, please file an issue in -the [Issues](https://github.com/Azure/azure-sdk-for-python/issues) +If you encounter any bugs or have suggestions, please file an issue in the +[Issues](https://github.com/Azure/azure-sdk-for-python/issues) section of the project. -![image](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-python%2Fazure-mgmt-healthcareapis%2FREADME.png) + +![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-python%2Fazure-mgmt-healthcareapis%2FREADME.png) diff --git a/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/_healthcare_apis_management_client.py b/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/_healthcare_apis_management_client.py index 61807f835bc4..19bb1ab7c1d7 100644 --- a/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/_healthcare_apis_management_client.py +++ b/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/_healthcare_apis_management_client.py @@ -16,6 +16,8 @@ from .operations import ServicesOperations from .operations import Operations from .operations import OperationResultsOperations +from .operations import PrivateEndpointConnectionsOperations +from .operations import PrivateLinkResourcesOperations from . import models @@ -31,6 +33,10 @@ class HealthcareApisManagementClient(SDKClient): :vartype operations: azure.mgmt.healthcareapis.operations.Operations :ivar operation_results: OperationResults operations :vartype operation_results: azure.mgmt.healthcareapis.operations.OperationResultsOperations + :ivar private_endpoint_connections: PrivateEndpointConnections operations + :vartype private_endpoint_connections: azure.mgmt.healthcareapis.operations.PrivateEndpointConnectionsOperations + :ivar private_link_resources: PrivateLinkResources operations + :vartype private_link_resources: azure.mgmt.healthcareapis.operations.PrivateLinkResourcesOperations :param credentials: Credentials needed for the client to connect to Azure. :type credentials: :mod:`A msrestazure Credentials @@ -47,7 +53,7 @@ def __init__( super(HealthcareApisManagementClient, self).__init__(self.config.credentials, self.config) client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} - self.api_version = '2018-08-20-preview' + self.api_version = '2020-03-30' self._serialize = Serializer(client_models) self._deserialize = Deserializer(client_models) @@ -57,3 +63,7 @@ def __init__( self._client, self.config, self._serialize, self._deserialize) self.operation_results = OperationResultsOperations( self._client, self.config, self._serialize, self._deserialize) + self.private_endpoint_connections = PrivateEndpointConnectionsOperations( + self._client, self.config, self._serialize, self._deserialize) + self.private_link_resources = PrivateLinkResourcesOperations( + self._client, self.config, self._serialize, self._deserialize) diff --git a/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/models/__init__.py b/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/models/__init__.py index cb27d5affb6e..f3c49c7ac97d 100644 --- a/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/models/__init__.py +++ b/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/models/__init__.py @@ -10,66 +10,109 @@ # -------------------------------------------------------------------------- try: + from ._models_py3 import AzureEntityResource from ._models_py3 import CheckNameAvailabilityParameters from ._models_py3 import ErrorDetails, ErrorDetailsException from ._models_py3 import ErrorDetailsInternal from ._models_py3 import Operation from ._models_py3 import OperationDisplay from ._models_py3 import OperationResultsDescription + from ._models_py3 import PrivateEndpoint + from ._models_py3 import PrivateEndpointConnection + from ._models_py3 import PrivateLinkResource + from ._models_py3 import PrivateLinkResourceListResult + from ._models_py3 import PrivateLinkServiceConnectionState + from ._models_py3 import ProxyResource from ._models_py3 import Resource from ._models_py3 import ServiceAccessPolicyEntry from ._models_py3 import ServiceAuthenticationConfigurationInfo from ._models_py3 import ServiceCorsConfigurationInfo from ._models_py3 import ServiceCosmosDbConfigurationInfo + from ._models_py3 import ServiceExportConfigurationInfo from ._models_py3 import ServicesDescription from ._models_py3 import ServicesNameAvailabilityInfo from ._models_py3 import ServicesPatchDescription from ._models_py3 import ServicesProperties + from ._models_py3 import ServicesResource + from ._models_py3 import ServicesResourceIdentity + from ._models_py3 import TrackedResource except (SyntaxError, ImportError): + from ._models import AzureEntityResource from ._models import CheckNameAvailabilityParameters from ._models import ErrorDetails, ErrorDetailsException from ._models import ErrorDetailsInternal from ._models import Operation from ._models import OperationDisplay from ._models import OperationResultsDescription + from ._models import PrivateEndpoint + from ._models import PrivateEndpointConnection + from ._models import PrivateLinkResource + from ._models import PrivateLinkResourceListResult + from ._models import PrivateLinkServiceConnectionState + from ._models import ProxyResource from ._models import Resource from ._models import ServiceAccessPolicyEntry from ._models import ServiceAuthenticationConfigurationInfo from ._models import ServiceCorsConfigurationInfo from ._models import ServiceCosmosDbConfigurationInfo + from ._models import ServiceExportConfigurationInfo from ._models import ServicesDescription from ._models import ServicesNameAvailabilityInfo from ._models import ServicesPatchDescription from ._models import ServicesProperties + from ._models import ServicesResource + from ._models import ServicesResourceIdentity + from ._models import TrackedResource from ._paged_models import OperationPaged +from ._paged_models import PrivateEndpointConnectionPaged from ._paged_models import ServicesDescriptionPaged from ._healthcare_apis_management_client_enums import ( ProvisioningState, + PrivateEndpointServiceConnectionStatus, + PrivateEndpointConnectionProvisioningState, + PublicNetworkAccess, Kind, + ManagedServiceIdentityType, ServiceNameUnavailabilityReason, OperationResultStatus, ) __all__ = [ + 'AzureEntityResource', 'CheckNameAvailabilityParameters', 'ErrorDetails', 'ErrorDetailsException', 'ErrorDetailsInternal', 'Operation', 'OperationDisplay', 'OperationResultsDescription', + 'PrivateEndpoint', + 'PrivateEndpointConnection', + 'PrivateLinkResource', + 'PrivateLinkResourceListResult', + 'PrivateLinkServiceConnectionState', + 'ProxyResource', 'Resource', 'ServiceAccessPolicyEntry', 'ServiceAuthenticationConfigurationInfo', 'ServiceCorsConfigurationInfo', 'ServiceCosmosDbConfigurationInfo', + 'ServiceExportConfigurationInfo', 'ServicesDescription', 'ServicesNameAvailabilityInfo', 'ServicesPatchDescription', 'ServicesProperties', + 'ServicesResource', + 'ServicesResourceIdentity', + 'TrackedResource', 'ServicesDescriptionPaged', 'OperationPaged', + 'PrivateEndpointConnectionPaged', 'ProvisioningState', + 'PrivateEndpointServiceConnectionStatus', + 'PrivateEndpointConnectionProvisioningState', + 'PublicNetworkAccess', 'Kind', + 'ManagedServiceIdentityType', 'ServiceNameUnavailabilityReason', 'OperationResultStatus', ] diff --git a/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/models/_healthcare_apis_management_client_enums.py b/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/models/_healthcare_apis_management_client_enums.py index a910aebf78d1..8732899f1fac 100644 --- a/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/models/_healthcare_apis_management_client_enums.py +++ b/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/models/_healthcare_apis_management_client_enums.py @@ -25,6 +25,27 @@ class ProvisioningState(str, Enum): deprovisioned = "Deprovisioned" +class PrivateEndpointServiceConnectionStatus(str, Enum): + + pending = "Pending" + approved = "Approved" + rejected = "Rejected" + + +class PrivateEndpointConnectionProvisioningState(str, Enum): + + succeeded = "Succeeded" + creating = "Creating" + deleting = "Deleting" + failed = "Failed" + + +class PublicNetworkAccess(str, Enum): + + enabled = "Enabled" + disabled = "Disabled" + + class Kind(str, Enum): fhir = "fhir" @@ -32,6 +53,12 @@ class Kind(str, Enum): fhir_r4 = "fhir-R4" +class ManagedServiceIdentityType(str, Enum): + + system_assigned = "SystemAssigned" + none = "None" + + class ServiceNameUnavailabilityReason(str, Enum): invalid = "Invalid" diff --git a/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/models/_models.py b/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/models/_models.py index 5993183ed587..86c1441f9498 100644 --- a/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/models/_models.py +++ b/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/models/_models.py @@ -13,6 +13,79 @@ from msrest.exceptions import HttpOperationError +class Resource(Model): + """Resource. + + Variables are only populated by the server, and will be ignored when + sending a request. + + :ivar id: Fully qualified resource Id for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + :vartype id: str + :ivar name: The name of the resource + :vartype name: str + :ivar type: The type of the resource. Ex- + Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. + :vartype type: str + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(Resource, self).__init__(**kwargs) + self.id = None + self.name = None + self.type = None + + +class AzureEntityResource(Resource): + """The resource model definition for a Azure Resource Manager resource with an + etag. + + Variables are only populated by the server, and will be ignored when + sending a request. + + :ivar id: Fully qualified resource Id for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + :vartype id: str + :ivar name: The name of the resource + :vartype name: str + :ivar type: The type of the resource. Ex- + Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. + :vartype type: str + :ivar etag: Resource Etag. + :vartype etag: str + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(AzureEntityResource, self).__init__(**kwargs) + self.etag = None + + class CheckNameAvailabilityParameters(Model): """Input values. @@ -226,60 +299,205 @@ def __init__(self, **kwargs): self.properties = kwargs.get('properties', None) -class Resource(Model): - """The common properties of a service. +class PrivateEndpoint(Model): + """The Private Endpoint resource. + + Variables are only populated by the server, and will be ignored when + sending a request. + + :ivar id: The ARM identifier for Private Endpoint + :vartype id: str + """ + + _validation = { + 'id': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(PrivateEndpoint, self).__init__(**kwargs) + self.id = None + + +class PrivateEndpointConnection(Resource): + """The Private Endpoint Connection 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: The resource identifier. + :ivar id: Fully qualified resource Id for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} :vartype id: str - :ivar name: The resource name. + :ivar name: The name of the resource :vartype name: str - :ivar type: The resource type. + :ivar type: The type of the resource. Ex- + Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. :vartype type: str - :param kind: Required. The kind of the service. Valid values are: fhir, - fhir-Stu3 and fhir-R4. Possible values include: 'fhir', 'fhir-Stu3', - 'fhir-R4' - :type kind: str or ~azure.mgmt.healthcareapis.models.Kind - :param location: Required. The resource location. - :type location: str - :param tags: The resource tags. - :type tags: dict[str, str] - :param etag: An etag associated with the resource, used for optimistic - concurrency when editing it. - :type etag: str + :param private_endpoint: The resource of private end point. + :type private_endpoint: ~azure.mgmt.healthcareapis.models.PrivateEndpoint + :param private_link_service_connection_state: Required. A collection of + information about the state of the connection between service consumer and + provider. + :type private_link_service_connection_state: + ~azure.mgmt.healthcareapis.models.PrivateLinkServiceConnectionState + :param provisioning_state: The provisioning state of the private endpoint + connection resource. Possible values include: 'Succeeded', 'Creating', + 'Deleting', 'Failed' + :type provisioning_state: str or + ~azure.mgmt.healthcareapis.models.PrivateEndpointConnectionProvisioningState """ _validation = { 'id': {'readonly': True}, - 'name': {'readonly': True, 'pattern': r'^[a-z0-9][a-z0-9-]{1,21}[a-z0-9]$'}, + 'name': {'readonly': True}, 'type': {'readonly': True}, - 'kind': {'required': True}, - 'location': {'required': True}, + 'private_link_service_connection_state': {'required': True}, } _attribute_map = { 'id': {'key': 'id', 'type': 'str'}, 'name': {'key': 'name', 'type': 'str'}, 'type': {'key': 'type', 'type': 'str'}, - 'kind': {'key': 'kind', 'type': 'Kind'}, - 'location': {'key': 'location', 'type': 'str'}, - 'tags': {'key': 'tags', 'type': '{str}'}, - 'etag': {'key': 'etag', 'type': 'str'}, + 'private_endpoint': {'key': 'properties.privateEndpoint', 'type': 'PrivateEndpoint'}, + 'private_link_service_connection_state': {'key': 'properties.privateLinkServiceConnectionState', 'type': 'PrivateLinkServiceConnectionState'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, } def __init__(self, **kwargs): - super(Resource, self).__init__(**kwargs) - self.id = None - self.name = None - self.type = None - self.kind = kwargs.get('kind', None) - self.location = kwargs.get('location', None) - self.tags = kwargs.get('tags', None) - self.etag = kwargs.get('etag', None) + super(PrivateEndpointConnection, self).__init__(**kwargs) + self.private_endpoint = kwargs.get('private_endpoint', None) + self.private_link_service_connection_state = kwargs.get('private_link_service_connection_state', None) + self.provisioning_state = kwargs.get('provisioning_state', None) + + +class PrivateLinkResource(Resource): + """A private link resource. + + Variables are only populated by the server, and will be ignored when + sending a request. + + :ivar id: Fully qualified resource Id for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + :vartype id: str + :ivar name: The name of the resource + :vartype name: str + :ivar type: The type of the resource. Ex- + Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. + :vartype type: str + :ivar group_id: The private link resource group id. + :vartype group_id: str + :ivar required_members: The private link resource required member names. + :vartype required_members: list[str] + :param required_zone_names: The private link resource Private link DNS + zone name. + :type required_zone_names: list[str] + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'group_id': {'readonly': True}, + 'required_members': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'group_id': {'key': 'properties.groupId', 'type': 'str'}, + 'required_members': {'key': 'properties.requiredMembers', 'type': '[str]'}, + 'required_zone_names': {'key': 'properties.requiredZoneNames', 'type': '[str]'}, + } + + def __init__(self, **kwargs): + super(PrivateLinkResource, self).__init__(**kwargs) + self.group_id = None + self.required_members = None + self.required_zone_names = kwargs.get('required_zone_names', None) + + +class PrivateLinkResourceListResult(Model): + """A list of private link resources. + + :param value: Array of private link resources + :type value: list[~azure.mgmt.healthcareapis.models.PrivateLinkResource] + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[PrivateLinkResource]'}, + } + + def __init__(self, **kwargs): + super(PrivateLinkResourceListResult, self).__init__(**kwargs) + self.value = kwargs.get('value', None) + + +class PrivateLinkServiceConnectionState(Model): + """A collection of information about the state of the connection between + service consumer and provider. + + :param status: Indicates whether the connection has been + Approved/Rejected/Removed by the owner of the service. Possible values + include: 'Pending', 'Approved', 'Rejected' + :type status: str or + ~azure.mgmt.healthcareapis.models.PrivateEndpointServiceConnectionStatus + :param description: The reason for approval/rejection of the connection. + :type description: str + :param actions_required: A message indicating if changes on the service + provider require any updates on the consumer. + :type actions_required: str + """ + + _attribute_map = { + 'status': {'key': 'status', 'type': 'str'}, + 'description': {'key': 'description', 'type': 'str'}, + 'actions_required': {'key': 'actionsRequired', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(PrivateLinkServiceConnectionState, self).__init__(**kwargs) + self.status = kwargs.get('status', None) + self.description = kwargs.get('description', None) + self.actions_required = kwargs.get('actions_required', None) + + +class ProxyResource(Resource): + """The resource model definition for a ARM proxy resource. It will have + everything other than required location and tags. + + Variables are only populated by the server, and will be ignored when + sending a request. + + :ivar id: Fully qualified resource Id for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + :vartype id: str + :ivar name: The name of the resource + :vartype name: str + :ivar type: The type of the resource. Ex- + Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. + :vartype type: str + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(ProxyResource, self).__init__(**kwargs) class ServiceAccessPolicyEntry(Model): @@ -287,8 +505,8 @@ class ServiceAccessPolicyEntry(Model): All required parameters must be populated in order to send to Azure. - :param object_id: Required. An object ID that is allowed access to the - FHIR service. + :param object_id: Required. An Azure AD object ID (User or Apps) that is + allowed access to the FHIR service. :type object_id: str """ @@ -371,6 +589,9 @@ class ServiceCosmosDbConfigurationInfo(Model): :param offer_throughput: The provisioned throughput for the backing database. :type offer_throughput: int + :param key_vault_key_uri: The URI of the customer-managed key for the + backing database. + :type key_vault_key_uri: str """ _validation = { @@ -379,14 +600,93 @@ class ServiceCosmosDbConfigurationInfo(Model): _attribute_map = { 'offer_throughput': {'key': 'offerThroughput', 'type': 'int'}, + 'key_vault_key_uri': {'key': 'keyVaultKeyUri', 'type': 'str'}, } def __init__(self, **kwargs): super(ServiceCosmosDbConfigurationInfo, self).__init__(**kwargs) self.offer_throughput = kwargs.get('offer_throughput', None) + self.key_vault_key_uri = kwargs.get('key_vault_key_uri', None) + + +class ServiceExportConfigurationInfo(Model): + """Export operation configuration information. + + :param storage_account_name: The name of the default export storage + account. + :type storage_account_name: str + """ + + _attribute_map = { + 'storage_account_name': {'key': 'storageAccountName', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(ServiceExportConfigurationInfo, self).__init__(**kwargs) + self.storage_account_name = kwargs.get('storage_account_name', None) + + +class ServicesResource(Model): + """The common properties of a service. + + 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: The resource identifier. + :vartype id: str + :ivar name: The resource name. + :vartype name: str + :ivar type: The resource type. + :vartype type: str + :param kind: Required. The kind of the service. Possible values include: + 'fhir', 'fhir-Stu3', 'fhir-R4' + :type kind: str or ~azure.mgmt.healthcareapis.models.Kind + :param location: Required. The resource location. + :type location: str + :param tags: The resource tags. + :type tags: dict[str, str] + :param etag: An etag associated with the resource, used for optimistic + concurrency when editing it. + :type etag: str + :param identity: Setting indicating whether the service has a managed + identity associated with it. + :type identity: ~azure.mgmt.healthcareapis.models.ServicesResourceIdentity + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True, 'pattern': r'^[a-z0-9][a-z0-9-]{1,21}[a-z0-9]$'}, + 'type': {'readonly': True}, + 'kind': {'required': True}, + 'location': {'required': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'kind': {'key': 'kind', 'type': 'Kind'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'identity': {'key': 'identity', 'type': 'ServicesResourceIdentity'}, + } + + def __init__(self, **kwargs): + super(ServicesResource, self).__init__(**kwargs) + self.id = None + self.name = None + self.type = None + self.kind = kwargs.get('kind', None) + self.location = kwargs.get('location', None) + self.tags = kwargs.get('tags', None) + self.etag = kwargs.get('etag', None) + self.identity = kwargs.get('identity', None) -class ServicesDescription(Resource): +class ServicesDescription(ServicesResource): """The description of the service. Variables are only populated by the server, and will be ignored when @@ -400,9 +700,8 @@ class ServicesDescription(Resource): :vartype name: str :ivar type: The resource type. :vartype type: str - :param kind: Required. The kind of the service. Valid values are: fhir, - fhir-Stu3 and fhir-R4. Possible values include: 'fhir', 'fhir-Stu3', - 'fhir-R4' + :param kind: Required. The kind of the service. Possible values include: + 'fhir', 'fhir-Stu3', 'fhir-R4' :type kind: str or ~azure.mgmt.healthcareapis.models.Kind :param location: Required. The resource location. :type location: str @@ -411,6 +710,9 @@ class ServicesDescription(Resource): :param etag: An etag associated with the resource, used for optimistic concurrency when editing it. :type etag: str + :param identity: Setting indicating whether the service has a managed + identity associated with it. + :type identity: ~azure.mgmt.healthcareapis.models.ServicesResourceIdentity :param properties: The common properties of a service. :type properties: ~azure.mgmt.healthcareapis.models.ServicesProperties """ @@ -431,6 +733,7 @@ class ServicesDescription(Resource): 'location': {'key': 'location', 'type': 'str'}, 'tags': {'key': 'tags', 'type': '{str}'}, 'etag': {'key': 'etag', 'type': 'str'}, + 'identity': {'key': 'identity', 'type': 'ServicesResourceIdentity'}, 'properties': {'key': 'properties', 'type': 'ServicesProperties'}, } @@ -479,15 +782,22 @@ class ServicesPatchDescription(Model): :param tags: Instance tags :type tags: dict[str, str] + :param public_network_access: Control permission for data plane traffic + coming from public networks while private endpoint is enabled. Possible + values include: 'Enabled', 'Disabled' + :type public_network_access: str or + ~azure.mgmt.healthcareapis.models.PublicNetworkAccess """ _attribute_map = { 'tags': {'key': 'tags', 'type': '{str}'}, + 'public_network_access': {'key': 'properties.publicNetworkAccess', 'type': 'str'}, } def __init__(self, **kwargs): super(ServicesPatchDescription, self).__init__(**kwargs) self.tags = kwargs.get('tags', None) + self.public_network_access = kwargs.get('public_network_access', None) class ServicesProperties(Model): @@ -496,15 +806,12 @@ class ServicesProperties(Model): 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 provisioning_state: The provisioning state. Possible values include: 'Deleting', 'Succeeded', 'Creating', 'Accepted', 'Verifying', 'Updating', 'Failed', 'Canceled', 'Deprovisioned' :vartype provisioning_state: str or ~azure.mgmt.healthcareapis.models.ProvisioningState - :param access_policies: Required. The access policies of the service - instance. + :param access_policies: The access policies of the service instance. :type access_policies: list[~azure.mgmt.healthcareapis.models.ServiceAccessPolicyEntry] :param cosmos_db_configuration: The settings for the Cosmos DB database @@ -519,11 +826,23 @@ class ServicesProperties(Model): service instance. :type cors_configuration: ~azure.mgmt.healthcareapis.models.ServiceCorsConfigurationInfo + :param export_configuration: The settings for the export operation of the + service instance. + :type export_configuration: + ~azure.mgmt.healthcareapis.models.ServiceExportConfigurationInfo + :param private_endpoint_connections: The list of private endpoint + connections that are set up for this resource. + :type private_endpoint_connections: + list[~azure.mgmt.healthcareapis.models.PrivateEndpointConnection] + :param public_network_access: Control permission for data plane traffic + coming from public networks while private endpoint is enabled. Possible + values include: 'Enabled', 'Disabled' + :type public_network_access: str or + ~azure.mgmt.healthcareapis.models.PublicNetworkAccess """ _validation = { 'provisioning_state': {'readonly': True}, - 'access_policies': {'required': True}, } _attribute_map = { @@ -532,6 +851,9 @@ class ServicesProperties(Model): 'cosmos_db_configuration': {'key': 'cosmosDbConfiguration', 'type': 'ServiceCosmosDbConfigurationInfo'}, 'authentication_configuration': {'key': 'authenticationConfiguration', 'type': 'ServiceAuthenticationConfigurationInfo'}, 'cors_configuration': {'key': 'corsConfiguration', 'type': 'ServiceCorsConfigurationInfo'}, + 'export_configuration': {'key': 'exportConfiguration', 'type': 'ServiceExportConfigurationInfo'}, + 'private_endpoint_connections': {'key': 'privateEndpointConnections', 'type': '[PrivateEndpointConnection]'}, + 'public_network_access': {'key': 'publicNetworkAccess', 'type': 'str'}, } def __init__(self, **kwargs): @@ -541,3 +863,84 @@ def __init__(self, **kwargs): self.cosmos_db_configuration = kwargs.get('cosmos_db_configuration', None) self.authentication_configuration = kwargs.get('authentication_configuration', None) self.cors_configuration = kwargs.get('cors_configuration', None) + self.export_configuration = kwargs.get('export_configuration', None) + self.private_endpoint_connections = kwargs.get('private_endpoint_connections', None) + self.public_network_access = kwargs.get('public_network_access', None) + + +class ServicesResourceIdentity(Model): + """Setting indicating whether the service has a managed identity associated + with it. + + Variables are only populated by the server, and will be ignored when + sending a request. + + :ivar principal_id: The principal ID of the resource identity. + :vartype principal_id: str + :ivar tenant_id: The tenant ID of the resource. + :vartype tenant_id: str + :param type: Type of identity being specified, currently SystemAssigned + and None are allowed. Possible values include: 'SystemAssigned', 'None' + :type type: str or + ~azure.mgmt.healthcareapis.models.ManagedServiceIdentityType + """ + + _validation = { + 'principal_id': {'readonly': True}, + 'tenant_id': {'readonly': True}, + } + + _attribute_map = { + 'principal_id': {'key': 'principalId', 'type': 'str'}, + 'tenant_id': {'key': 'tenantId', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(ServicesResourceIdentity, self).__init__(**kwargs) + self.principal_id = None + self.tenant_id = None + self.type = kwargs.get('type', None) + + +class TrackedResource(Resource): + """The resource model definition for a ARM tracked top level 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: Fully qualified resource Id for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + :vartype id: str + :ivar name: The name of the resource + :vartype name: str + :ivar type: The type of the resource. Ex- + Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. + :vartype type: str + :param tags: Resource tags. + :type tags: dict[str, str] + :param location: Required. The geo-location where the resource lives + :type location: str + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'location': {'required': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'location': {'key': 'location', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(TrackedResource, self).__init__(**kwargs) + self.tags = kwargs.get('tags', None) + self.location = kwargs.get('location', None) diff --git a/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/models/_models_py3.py b/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/models/_models_py3.py index 8070f9eec9dc..2cbb07d2611e 100644 --- a/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/models/_models_py3.py +++ b/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/models/_models_py3.py @@ -13,6 +13,79 @@ from msrest.exceptions import HttpOperationError +class Resource(Model): + """Resource. + + Variables are only populated by the server, and will be ignored when + sending a request. + + :ivar id: Fully qualified resource Id for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + :vartype id: str + :ivar name: The name of the resource + :vartype name: str + :ivar type: The type of the resource. Ex- + Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. + :vartype type: str + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + } + + def __init__(self, **kwargs) -> None: + super(Resource, self).__init__(**kwargs) + self.id = None + self.name = None + self.type = None + + +class AzureEntityResource(Resource): + """The resource model definition for a Azure Resource Manager resource with an + etag. + + Variables are only populated by the server, and will be ignored when + sending a request. + + :ivar id: Fully qualified resource Id for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + :vartype id: str + :ivar name: The name of the resource + :vartype name: str + :ivar type: The type of the resource. Ex- + Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. + :vartype type: str + :ivar etag: Resource Etag. + :vartype etag: str + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + } + + def __init__(self, **kwargs) -> None: + super(AzureEntityResource, self).__init__(**kwargs) + self.etag = None + + class CheckNameAvailabilityParameters(Model): """Input values. @@ -226,60 +299,205 @@ def __init__(self, *, properties=None, **kwargs) -> None: self.properties = properties -class Resource(Model): - """The common properties of a service. +class PrivateEndpoint(Model): + """The Private Endpoint resource. + + Variables are only populated by the server, and will be ignored when + sending a request. + + :ivar id: The ARM identifier for Private Endpoint + :vartype id: str + """ + + _validation = { + 'id': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + } + + def __init__(self, **kwargs) -> None: + super(PrivateEndpoint, self).__init__(**kwargs) + self.id = None + + +class PrivateEndpointConnection(Resource): + """The Private Endpoint Connection 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: The resource identifier. + :ivar id: Fully qualified resource Id for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} :vartype id: str - :ivar name: The resource name. + :ivar name: The name of the resource :vartype name: str - :ivar type: The resource type. + :ivar type: The type of the resource. Ex- + Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. :vartype type: str - :param kind: Required. The kind of the service. Valid values are: fhir, - fhir-Stu3 and fhir-R4. Possible values include: 'fhir', 'fhir-Stu3', - 'fhir-R4' - :type kind: str or ~azure.mgmt.healthcareapis.models.Kind - :param location: Required. The resource location. - :type location: str - :param tags: The resource tags. - :type tags: dict[str, str] - :param etag: An etag associated with the resource, used for optimistic - concurrency when editing it. - :type etag: str + :param private_endpoint: The resource of private end point. + :type private_endpoint: ~azure.mgmt.healthcareapis.models.PrivateEndpoint + :param private_link_service_connection_state: Required. A collection of + information about the state of the connection between service consumer and + provider. + :type private_link_service_connection_state: + ~azure.mgmt.healthcareapis.models.PrivateLinkServiceConnectionState + :param provisioning_state: The provisioning state of the private endpoint + connection resource. Possible values include: 'Succeeded', 'Creating', + 'Deleting', 'Failed' + :type provisioning_state: str or + ~azure.mgmt.healthcareapis.models.PrivateEndpointConnectionProvisioningState """ _validation = { 'id': {'readonly': True}, - 'name': {'readonly': True, 'pattern': r'^[a-z0-9][a-z0-9-]{1,21}[a-z0-9]$'}, + 'name': {'readonly': True}, 'type': {'readonly': True}, - 'kind': {'required': True}, - 'location': {'required': True}, + 'private_link_service_connection_state': {'required': True}, } _attribute_map = { 'id': {'key': 'id', 'type': 'str'}, 'name': {'key': 'name', 'type': 'str'}, 'type': {'key': 'type', 'type': 'str'}, - 'kind': {'key': 'kind', 'type': 'Kind'}, - 'location': {'key': 'location', 'type': 'str'}, - 'tags': {'key': 'tags', 'type': '{str}'}, - 'etag': {'key': 'etag', 'type': 'str'}, + 'private_endpoint': {'key': 'properties.privateEndpoint', 'type': 'PrivateEndpoint'}, + 'private_link_service_connection_state': {'key': 'properties.privateLinkServiceConnectionState', 'type': 'PrivateLinkServiceConnectionState'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, } - def __init__(self, *, kind, location: str, tags=None, etag: str=None, **kwargs) -> None: - super(Resource, self).__init__(**kwargs) - self.id = None - self.name = None - self.type = None - self.kind = kind - self.location = location - self.tags = tags - self.etag = etag + def __init__(self, *, private_link_service_connection_state, private_endpoint=None, provisioning_state=None, **kwargs) -> None: + super(PrivateEndpointConnection, self).__init__(**kwargs) + self.private_endpoint = private_endpoint + self.private_link_service_connection_state = private_link_service_connection_state + self.provisioning_state = provisioning_state + + +class PrivateLinkResource(Resource): + """A private link resource. + + Variables are only populated by the server, and will be ignored when + sending a request. + + :ivar id: Fully qualified resource Id for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + :vartype id: str + :ivar name: The name of the resource + :vartype name: str + :ivar type: The type of the resource. Ex- + Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. + :vartype type: str + :ivar group_id: The private link resource group id. + :vartype group_id: str + :ivar required_members: The private link resource required member names. + :vartype required_members: list[str] + :param required_zone_names: The private link resource Private link DNS + zone name. + :type required_zone_names: list[str] + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'group_id': {'readonly': True}, + 'required_members': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'group_id': {'key': 'properties.groupId', 'type': 'str'}, + 'required_members': {'key': 'properties.requiredMembers', 'type': '[str]'}, + 'required_zone_names': {'key': 'properties.requiredZoneNames', 'type': '[str]'}, + } + + def __init__(self, *, required_zone_names=None, **kwargs) -> None: + super(PrivateLinkResource, self).__init__(**kwargs) + self.group_id = None + self.required_members = None + self.required_zone_names = required_zone_names + + +class PrivateLinkResourceListResult(Model): + """A list of private link resources. + + :param value: Array of private link resources + :type value: list[~azure.mgmt.healthcareapis.models.PrivateLinkResource] + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[PrivateLinkResource]'}, + } + + def __init__(self, *, value=None, **kwargs) -> None: + super(PrivateLinkResourceListResult, self).__init__(**kwargs) + self.value = value + + +class PrivateLinkServiceConnectionState(Model): + """A collection of information about the state of the connection between + service consumer and provider. + + :param status: Indicates whether the connection has been + Approved/Rejected/Removed by the owner of the service. Possible values + include: 'Pending', 'Approved', 'Rejected' + :type status: str or + ~azure.mgmt.healthcareapis.models.PrivateEndpointServiceConnectionStatus + :param description: The reason for approval/rejection of the connection. + :type description: str + :param actions_required: A message indicating if changes on the service + provider require any updates on the consumer. + :type actions_required: str + """ + + _attribute_map = { + 'status': {'key': 'status', 'type': 'str'}, + 'description': {'key': 'description', 'type': 'str'}, + 'actions_required': {'key': 'actionsRequired', 'type': 'str'}, + } + + def __init__(self, *, status=None, description: str=None, actions_required: str=None, **kwargs) -> None: + super(PrivateLinkServiceConnectionState, self).__init__(**kwargs) + self.status = status + self.description = description + self.actions_required = actions_required + + +class ProxyResource(Resource): + """The resource model definition for a ARM proxy resource. It will have + everything other than required location and tags. + + Variables are only populated by the server, and will be ignored when + sending a request. + + :ivar id: Fully qualified resource Id for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + :vartype id: str + :ivar name: The name of the resource + :vartype name: str + :ivar type: The type of the resource. Ex- + Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. + :vartype type: str + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + } + + def __init__(self, **kwargs) -> None: + super(ProxyResource, self).__init__(**kwargs) class ServiceAccessPolicyEntry(Model): @@ -287,8 +505,8 @@ class ServiceAccessPolicyEntry(Model): All required parameters must be populated in order to send to Azure. - :param object_id: Required. An object ID that is allowed access to the - FHIR service. + :param object_id: Required. An Azure AD object ID (User or Apps) that is + allowed access to the FHIR service. :type object_id: str """ @@ -371,6 +589,9 @@ class ServiceCosmosDbConfigurationInfo(Model): :param offer_throughput: The provisioned throughput for the backing database. :type offer_throughput: int + :param key_vault_key_uri: The URI of the customer-managed key for the + backing database. + :type key_vault_key_uri: str """ _validation = { @@ -379,14 +600,93 @@ class ServiceCosmosDbConfigurationInfo(Model): _attribute_map = { 'offer_throughput': {'key': 'offerThroughput', 'type': 'int'}, + 'key_vault_key_uri': {'key': 'keyVaultKeyUri', 'type': 'str'}, } - def __init__(self, *, offer_throughput: int=None, **kwargs) -> None: + def __init__(self, *, offer_throughput: int=None, key_vault_key_uri: str=None, **kwargs) -> None: super(ServiceCosmosDbConfigurationInfo, self).__init__(**kwargs) self.offer_throughput = offer_throughput + self.key_vault_key_uri = key_vault_key_uri + + +class ServiceExportConfigurationInfo(Model): + """Export operation configuration information. + + :param storage_account_name: The name of the default export storage + account. + :type storage_account_name: str + """ + + _attribute_map = { + 'storage_account_name': {'key': 'storageAccountName', 'type': 'str'}, + } + + def __init__(self, *, storage_account_name: str=None, **kwargs) -> None: + super(ServiceExportConfigurationInfo, self).__init__(**kwargs) + self.storage_account_name = storage_account_name + + +class ServicesResource(Model): + """The common properties of a service. + + 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: The resource identifier. + :vartype id: str + :ivar name: The resource name. + :vartype name: str + :ivar type: The resource type. + :vartype type: str + :param kind: Required. The kind of the service. Possible values include: + 'fhir', 'fhir-Stu3', 'fhir-R4' + :type kind: str or ~azure.mgmt.healthcareapis.models.Kind + :param location: Required. The resource location. + :type location: str + :param tags: The resource tags. + :type tags: dict[str, str] + :param etag: An etag associated with the resource, used for optimistic + concurrency when editing it. + :type etag: str + :param identity: Setting indicating whether the service has a managed + identity associated with it. + :type identity: ~azure.mgmt.healthcareapis.models.ServicesResourceIdentity + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True, 'pattern': r'^[a-z0-9][a-z0-9-]{1,21}[a-z0-9]$'}, + 'type': {'readonly': True}, + 'kind': {'required': True}, + 'location': {'required': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'kind': {'key': 'kind', 'type': 'Kind'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'identity': {'key': 'identity', 'type': 'ServicesResourceIdentity'}, + } + + def __init__(self, *, kind, location: str, tags=None, etag: str=None, identity=None, **kwargs) -> None: + super(ServicesResource, self).__init__(**kwargs) + self.id = None + self.name = None + self.type = None + self.kind = kind + self.location = location + self.tags = tags + self.etag = etag + self.identity = identity -class ServicesDescription(Resource): +class ServicesDescription(ServicesResource): """The description of the service. Variables are only populated by the server, and will be ignored when @@ -400,9 +700,8 @@ class ServicesDescription(Resource): :vartype name: str :ivar type: The resource type. :vartype type: str - :param kind: Required. The kind of the service. Valid values are: fhir, - fhir-Stu3 and fhir-R4. Possible values include: 'fhir', 'fhir-Stu3', - 'fhir-R4' + :param kind: Required. The kind of the service. Possible values include: + 'fhir', 'fhir-Stu3', 'fhir-R4' :type kind: str or ~azure.mgmt.healthcareapis.models.Kind :param location: Required. The resource location. :type location: str @@ -411,6 +710,9 @@ class ServicesDescription(Resource): :param etag: An etag associated with the resource, used for optimistic concurrency when editing it. :type etag: str + :param identity: Setting indicating whether the service has a managed + identity associated with it. + :type identity: ~azure.mgmt.healthcareapis.models.ServicesResourceIdentity :param properties: The common properties of a service. :type properties: ~azure.mgmt.healthcareapis.models.ServicesProperties """ @@ -431,11 +733,12 @@ class ServicesDescription(Resource): 'location': {'key': 'location', 'type': 'str'}, 'tags': {'key': 'tags', 'type': '{str}'}, 'etag': {'key': 'etag', 'type': 'str'}, + 'identity': {'key': 'identity', 'type': 'ServicesResourceIdentity'}, 'properties': {'key': 'properties', 'type': 'ServicesProperties'}, } - def __init__(self, *, kind, location: str, tags=None, etag: str=None, properties=None, **kwargs) -> None: - super(ServicesDescription, self).__init__(kind=kind, location=location, tags=tags, etag=etag, **kwargs) + def __init__(self, *, kind, location: str, tags=None, etag: str=None, identity=None, properties=None, **kwargs) -> None: + super(ServicesDescription, self).__init__(kind=kind, location=location, tags=tags, etag=etag, identity=identity, **kwargs) self.properties = properties @@ -479,15 +782,22 @@ class ServicesPatchDescription(Model): :param tags: Instance tags :type tags: dict[str, str] + :param public_network_access: Control permission for data plane traffic + coming from public networks while private endpoint is enabled. Possible + values include: 'Enabled', 'Disabled' + :type public_network_access: str or + ~azure.mgmt.healthcareapis.models.PublicNetworkAccess """ _attribute_map = { 'tags': {'key': 'tags', 'type': '{str}'}, + 'public_network_access': {'key': 'properties.publicNetworkAccess', 'type': 'str'}, } - def __init__(self, *, tags=None, **kwargs) -> None: + def __init__(self, *, tags=None, public_network_access=None, **kwargs) -> None: super(ServicesPatchDescription, self).__init__(**kwargs) self.tags = tags + self.public_network_access = public_network_access class ServicesProperties(Model): @@ -496,15 +806,12 @@ class ServicesProperties(Model): 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 provisioning_state: The provisioning state. Possible values include: 'Deleting', 'Succeeded', 'Creating', 'Accepted', 'Verifying', 'Updating', 'Failed', 'Canceled', 'Deprovisioned' :vartype provisioning_state: str or ~azure.mgmt.healthcareapis.models.ProvisioningState - :param access_policies: Required. The access policies of the service - instance. + :param access_policies: The access policies of the service instance. :type access_policies: list[~azure.mgmt.healthcareapis.models.ServiceAccessPolicyEntry] :param cosmos_db_configuration: The settings for the Cosmos DB database @@ -519,11 +826,23 @@ class ServicesProperties(Model): service instance. :type cors_configuration: ~azure.mgmt.healthcareapis.models.ServiceCorsConfigurationInfo + :param export_configuration: The settings for the export operation of the + service instance. + :type export_configuration: + ~azure.mgmt.healthcareapis.models.ServiceExportConfigurationInfo + :param private_endpoint_connections: The list of private endpoint + connections that are set up for this resource. + :type private_endpoint_connections: + list[~azure.mgmt.healthcareapis.models.PrivateEndpointConnection] + :param public_network_access: Control permission for data plane traffic + coming from public networks while private endpoint is enabled. Possible + values include: 'Enabled', 'Disabled' + :type public_network_access: str or + ~azure.mgmt.healthcareapis.models.PublicNetworkAccess """ _validation = { 'provisioning_state': {'readonly': True}, - 'access_policies': {'required': True}, } _attribute_map = { @@ -532,12 +851,96 @@ class ServicesProperties(Model): 'cosmos_db_configuration': {'key': 'cosmosDbConfiguration', 'type': 'ServiceCosmosDbConfigurationInfo'}, 'authentication_configuration': {'key': 'authenticationConfiguration', 'type': 'ServiceAuthenticationConfigurationInfo'}, 'cors_configuration': {'key': 'corsConfiguration', 'type': 'ServiceCorsConfigurationInfo'}, + 'export_configuration': {'key': 'exportConfiguration', 'type': 'ServiceExportConfigurationInfo'}, + 'private_endpoint_connections': {'key': 'privateEndpointConnections', 'type': '[PrivateEndpointConnection]'}, + 'public_network_access': {'key': 'publicNetworkAccess', 'type': 'str'}, } - def __init__(self, *, access_policies, cosmos_db_configuration=None, authentication_configuration=None, cors_configuration=None, **kwargs) -> None: + def __init__(self, *, access_policies=None, cosmos_db_configuration=None, authentication_configuration=None, cors_configuration=None, export_configuration=None, private_endpoint_connections=None, public_network_access=None, **kwargs) -> None: super(ServicesProperties, self).__init__(**kwargs) self.provisioning_state = None self.access_policies = access_policies self.cosmos_db_configuration = cosmos_db_configuration self.authentication_configuration = authentication_configuration self.cors_configuration = cors_configuration + self.export_configuration = export_configuration + self.private_endpoint_connections = private_endpoint_connections + self.public_network_access = public_network_access + + +class ServicesResourceIdentity(Model): + """Setting indicating whether the service has a managed identity associated + with it. + + Variables are only populated by the server, and will be ignored when + sending a request. + + :ivar principal_id: The principal ID of the resource identity. + :vartype principal_id: str + :ivar tenant_id: The tenant ID of the resource. + :vartype tenant_id: str + :param type: Type of identity being specified, currently SystemAssigned + and None are allowed. Possible values include: 'SystemAssigned', 'None' + :type type: str or + ~azure.mgmt.healthcareapis.models.ManagedServiceIdentityType + """ + + _validation = { + 'principal_id': {'readonly': True}, + 'tenant_id': {'readonly': True}, + } + + _attribute_map = { + 'principal_id': {'key': 'principalId', 'type': 'str'}, + 'tenant_id': {'key': 'tenantId', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + } + + def __init__(self, *, type=None, **kwargs) -> None: + super(ServicesResourceIdentity, self).__init__(**kwargs) + self.principal_id = None + self.tenant_id = None + self.type = type + + +class TrackedResource(Resource): + """The resource model definition for a ARM tracked top level 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: Fully qualified resource Id for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + :vartype id: str + :ivar name: The name of the resource + :vartype name: str + :ivar type: The type of the resource. Ex- + Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. + :vartype type: str + :param tags: Resource tags. + :type tags: dict[str, str] + :param location: Required. The geo-location where the resource lives + :type location: str + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'location': {'required': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'location': {'key': 'location', 'type': 'str'}, + } + + def __init__(self, *, location: str, tags=None, **kwargs) -> None: + super(TrackedResource, self).__init__(**kwargs) + self.tags = tags + self.location = location diff --git a/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/models/_paged_models.py b/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/models/_paged_models.py index 646be2a168cc..d5962601e97d 100644 --- a/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/models/_paged_models.py +++ b/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/models/_paged_models.py @@ -38,3 +38,16 @@ class OperationPaged(Paged): def __init__(self, *args, **kwargs): super(OperationPaged, self).__init__(*args, **kwargs) +class PrivateEndpointConnectionPaged(Paged): + """ + A paging container for iterating over a list of :class:`PrivateEndpointConnection ` object + """ + + _attribute_map = { + 'next_link': {'key': 'nextLink', 'type': 'str'}, + 'current_page': {'key': 'value', 'type': '[PrivateEndpointConnection]'} + } + + def __init__(self, *args, **kwargs): + + super(PrivateEndpointConnectionPaged, self).__init__(*args, **kwargs) diff --git a/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/operations/__init__.py b/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/operations/__init__.py index 6bca9ee351e6..8d0eb723291e 100644 --- a/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/operations/__init__.py +++ b/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/operations/__init__.py @@ -12,9 +12,13 @@ from ._services_operations import ServicesOperations from ._operations import Operations from ._operation_results_operations import OperationResultsOperations +from ._private_endpoint_connections_operations import PrivateEndpointConnectionsOperations +from ._private_link_resources_operations import PrivateLinkResourcesOperations __all__ = [ 'ServicesOperations', 'Operations', 'OperationResultsOperations', + 'PrivateEndpointConnectionsOperations', + 'PrivateLinkResourcesOperations', ] diff --git a/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/operations/_operation_results_operations.py b/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/operations/_operation_results_operations.py index 7050fa3cc564..d5634ea93687 100644 --- a/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/operations/_operation_results_operations.py +++ b/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/operations/_operation_results_operations.py @@ -24,7 +24,7 @@ class OperationResultsOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The version of the API. Constant value: "2018-08-20-preview". + :ivar api_version: Client Api Version. Constant value: "2020-03-30". """ models = models @@ -34,7 +34,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2018-08-20-preview" + self.api_version = "2020-03-30" self.config = config @@ -67,7 +67,7 @@ def get( # Construct parameters query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str', min_length=10) + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') # Construct headers header_parameters = {} diff --git a/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/operations/_operations.py b/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/operations/_operations.py index e60e1aff1e7d..d5a6c91f93eb 100644 --- a/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/operations/_operations.py +++ b/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/operations/_operations.py @@ -24,7 +24,7 @@ class Operations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The version of the API. Constant value: "2018-08-20-preview". + :ivar api_version: Client Api Version. Constant value: "2020-03-30". """ models = models @@ -34,7 +34,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2018-08-20-preview" + self.api_version = "2020-03-30" self.config = config @@ -60,7 +60,7 @@ def prepare_request(next_link=None): # Construct parameters query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str', min_length=10) + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') else: url = next_link diff --git a/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/operations/_private_endpoint_connections_operations.py b/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/operations/_private_endpoint_connections_operations.py new file mode 100644 index 000000000000..e813e4d88885 --- /dev/null +++ b/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/operations/_private_endpoint_connections_operations.py @@ -0,0 +1,371 @@ +# 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. +# -------------------------------------------------------------------------- + +import uuid +from msrest.pipeline import ClientRawResponse +from msrest.polling import LROPoller, NoPolling +from msrestazure.polling.arm_polling import ARMPolling + +from .. import models + + +class PrivateEndpointConnectionsOperations(object): + """PrivateEndpointConnectionsOperations operations. + + You should not instantiate directly this class, but create a Client instance that will create it for you and attach it as attribute. + + :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: Client Api Version. Constant value: "2020-03-30". + """ + + models = models + + def __init__(self, client, config, serializer, deserializer): + + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self.api_version = "2020-03-30" + + self.config = config + + def list_by_service( + self, resource_group_name, resource_name, custom_headers=None, raw=False, **operation_config): + """Lists all private endpoint connections for a service. + + :param resource_group_name: The name of the resource group that + contains the service instance. + :type resource_group_name: str + :param resource_name: The name of the service instance. + :type resource_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 PrivateEndpointConnection + :rtype: + ~azure.mgmt.healthcareapis.models.PrivateEndpointConnectionPaged[~azure.mgmt.healthcareapis.models.PrivateEndpointConnection] + :raises: + :class:`ErrorDetailsException` + """ + def prepare_request(next_link=None): + if not next_link: + # Construct URL + url = self.list_by_service.metadata['url'] + path_format_arguments = { + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=24, min_length=3) + } + 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') + + 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) + return request + + def internal_paging(next_link=None): + request = prepare_request(next_link) + + response = self._client.send(request, stream=False, **operation_config) + + if response.status_code not in [200]: + raise models.ErrorDetailsException(self._deserialize, response) + + return response + + # Deserialize response + header_dict = None + if raw: + header_dict = {} + deserialized = models.PrivateEndpointConnectionPaged(internal_paging, self._deserialize.dependencies, header_dict) + + return deserialized + list_by_service.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthcareApis/services/{resourceName}/privateEndpointConnections'} + + def get( + self, resource_group_name, resource_name, private_endpoint_connection_name, custom_headers=None, raw=False, **operation_config): + """Gets the specified private endpoint connection associated with the + service. + + :param resource_group_name: The name of the resource group that + contains the service instance. + :type resource_group_name: str + :param resource_name: The name of the service instance. + :type resource_name: str + :param private_endpoint_connection_name: The name of the private + endpoint connection associated with the Azure resource + :type private_endpoint_connection_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: PrivateEndpointConnection or ClientRawResponse if raw=true + :rtype: ~azure.mgmt.healthcareapis.models.PrivateEndpointConnection or + ~msrest.pipeline.ClientRawResponse + :raises: + :class:`ErrorDetailsException` + """ + # Construct URL + url = self.get.metadata['url'] + path_format_arguments = { + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=24, min_length=3), + 'privateEndpointConnectionName': self._serialize.url("private_endpoint_connection_name", private_endpoint_connection_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') + + # 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) + response = self._client.send(request, stream=False, **operation_config) + + if response.status_code not in [200]: + raise models.ErrorDetailsException(self._deserialize, response) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('PrivateEndpointConnection', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthcareApis/services/{resourceName}/privateEndpointConnections/{privateEndpointConnectionName}'} + + + def _create_or_update_initial( + self, resource_group_name, resource_name, private_endpoint_connection_name, properties, custom_headers=None, raw=False, **operation_config): + # Construct URL + url = self.create_or_update.metadata['url'] + path_format_arguments = { + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=24, min_length=3), + 'privateEndpointConnectionName': self._serialize.url("private_endpoint_connection_name", private_endpoint_connection_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') + + # 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(properties, 'PrivateEndpointConnection') + + # Construct and send request + request = self._client.put(url, query_parameters, header_parameters, body_content) + response = self._client.send(request, stream=False, **operation_config) + + if response.status_code not in [200]: + raise models.ErrorDetailsException(self._deserialize, response) + + deserialized = None + + if response.status_code == 200: + deserialized = self._deserialize('PrivateEndpointConnection', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + + def create_or_update( + self, resource_group_name, resource_name, private_endpoint_connection_name, properties, custom_headers=None, raw=False, polling=True, **operation_config): + """Update the state of the specified private endpoint connection + associated with the service. + + :param resource_group_name: The name of the resource group that + contains the service instance. + :type resource_group_name: str + :param resource_name: The name of the service instance. + :type resource_name: str + :param private_endpoint_connection_name: The name of the private + endpoint connection associated with the Azure resource + :type private_endpoint_connection_name: str + :param properties: The private endpoint connection properties. + :type properties: + ~azure.mgmt.healthcareapis.models.PrivateEndpointConnection + :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 + polling object for personal polling strategy + :return: An instance of LROPoller that returns + PrivateEndpointConnection or + ClientRawResponse if raw==True + :rtype: + ~msrestazure.azure_operation.AzureOperationPoller[~azure.mgmt.healthcareapis.models.PrivateEndpointConnection] + or + ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[~azure.mgmt.healthcareapis.models.PrivateEndpointConnection]] + :raises: + :class:`ErrorDetailsException` + """ + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + private_endpoint_connection_name=private_endpoint_connection_name, + properties=properties, + custom_headers=custom_headers, + raw=True, + **operation_config + ) + + def get_long_running_output(response): + deserialized = self._deserialize('PrivateEndpointConnection', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + 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) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthcareApis/services/{resourceName}/privateEndpointConnections/{privateEndpointConnectionName}'} + + + def _delete_initial( + self, resource_group_name, resource_name, private_endpoint_connection_name, custom_headers=None, raw=False, **operation_config): + # Construct URL + url = self.delete.metadata['url'] + path_format_arguments = { + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=24, min_length=3), + 'privateEndpointConnectionName': self._serialize.url("private_endpoint_connection_name", private_endpoint_connection_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') + + # Construct headers + header_parameters = {} + 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.delete(url, query_parameters, header_parameters) + response = self._client.send(request, stream=False, **operation_config) + + if response.status_code not in [200, 202, 204]: + raise models.ErrorDetailsException(self._deserialize, response) + + if raw: + client_raw_response = ClientRawResponse(None, response) + return client_raw_response + + def delete( + self, resource_group_name, resource_name, private_endpoint_connection_name, custom_headers=None, raw=False, polling=True, **operation_config): + """Deletes a private endpoint connection. + + :param resource_group_name: The name of the resource group that + contains the service instance. + :type resource_group_name: str + :param resource_name: The name of the service instance. + :type resource_name: str + :param private_endpoint_connection_name: The name of the private + endpoint connection associated with the Azure resource + :type private_endpoint_connection_name: str + :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 + polling object for personal polling strategy + :return: An instance of LROPoller that returns None or + ClientRawResponse if raw==True + :rtype: ~msrestazure.azure_operation.AzureOperationPoller[None] or + ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[None]] + :raises: + :class:`ErrorDetailsException` + """ + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + private_endpoint_connection_name=private_endpoint_connection_name, + custom_headers=custom_headers, + raw=True, + **operation_config + ) + + def get_long_running_output(response): + if raw: + client_raw_response = ClientRawResponse(None, response) + return client_raw_response + + 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) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthcareApis/services/{resourceName}/privateEndpointConnections/{privateEndpointConnectionName}'} diff --git a/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/operations/_private_link_resources_operations.py b/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/operations/_private_link_resources_operations.py new file mode 100644 index 000000000000..731407758a0c --- /dev/null +++ b/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/operations/_private_link_resources_operations.py @@ -0,0 +1,166 @@ +# 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. +# -------------------------------------------------------------------------- + +import uuid +from msrest.pipeline import ClientRawResponse + +from .. import models + + +class PrivateLinkResourcesOperations(object): + """PrivateLinkResourcesOperations operations. + + You should not instantiate directly this class, but create a Client instance that will create it for you and attach it as attribute. + + :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: Client Api Version. Constant value: "2020-03-30". + """ + + models = models + + def __init__(self, client, config, serializer, deserializer): + + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self.api_version = "2020-03-30" + + self.config = config + + def list_by_service( + self, resource_group_name, resource_name, custom_headers=None, raw=False, **operation_config): + """Gets the private link resources that need to be created for a service. + + :param resource_group_name: The name of the resource group that + contains the service instance. + :type resource_group_name: str + :param resource_name: The name of the service instance. + :type resource_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: PrivateLinkResourceListResult or ClientRawResponse if + raw=true + :rtype: + ~azure.mgmt.healthcareapis.models.PrivateLinkResourceListResult or + ~msrest.pipeline.ClientRawResponse + :raises: + :class:`ErrorDetailsException` + """ + # Construct URL + url = self.list_by_service.metadata['url'] + path_format_arguments = { + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=24, min_length=3) + } + 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') + + # 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) + response = self._client.send(request, stream=False, **operation_config) + + if response.status_code not in [200]: + raise models.ErrorDetailsException(self._deserialize, response) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('PrivateLinkResourceListResult', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + list_by_service.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthcareApis/services/{resourceName}/privateLinkResources'} + + def get( + self, resource_group_name, resource_name, group_name, custom_headers=None, raw=False, **operation_config): + """Gets a private link resource that need to be created for a service. + + :param resource_group_name: The name of the resource group that + contains the service instance. + :type resource_group_name: str + :param resource_name: The name of the service instance. + :type resource_name: str + :param group_name: The name of the private link resource group. + :type group_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: PrivateLinkResource or ClientRawResponse if raw=true + :rtype: ~azure.mgmt.healthcareapis.models.PrivateLinkResource or + ~msrest.pipeline.ClientRawResponse + :raises: + :class:`ErrorDetailsException` + """ + # Construct URL + url = self.get.metadata['url'] + path_format_arguments = { + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=24, min_length=3), + 'groupName': self._serialize.url("group_name", group_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') + + # 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) + response = self._client.send(request, stream=False, **operation_config) + + if response.status_code not in [200]: + raise models.ErrorDetailsException(self._deserialize, response) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('PrivateLinkResource', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthcareApis/services/{resourceName}/privateLinkResources/{groupName}'} diff --git a/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/operations/_services_operations.py b/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/operations/_services_operations.py index 76ee198c35a8..1939600079a3 100644 --- a/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/operations/_services_operations.py +++ b/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/operations/_services_operations.py @@ -26,7 +26,7 @@ class ServicesOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The version of the API. Constant value: "2018-08-20-preview". + :ivar api_version: Client Api Version. Constant value: "2020-03-30". """ models = models @@ -36,7 +36,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2018-08-20-preview" + self.api_version = "2020-03-30" self.config = config @@ -71,7 +71,7 @@ def get( # Construct parameters query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str', min_length=10) + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') # Construct headers header_parameters = {} @@ -115,7 +115,7 @@ def _create_or_update_initial( # Construct parameters query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str', min_length=10) + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') # Construct headers header_parameters = {} @@ -206,8 +206,8 @@ def get_long_running_output(response): def _update_initial( - self, resource_group_name, resource_name, tags=None, custom_headers=None, raw=False, **operation_config): - service_patch_description = models.ServicesPatchDescription(tags=tags) + self, resource_group_name, resource_name, tags=None, public_network_access=None, custom_headers=None, raw=False, **operation_config): + service_patch_description = models.ServicesPatchDescription(tags=tags, public_network_access=public_network_access) # Construct URL url = self.update.metadata['url'] @@ -220,7 +220,7 @@ def _update_initial( # Construct parameters query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str', min_length=10) + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') # Construct headers header_parameters = {} @@ -255,7 +255,7 @@ def _update_initial( return deserialized def update( - self, resource_group_name, resource_name, tags=None, custom_headers=None, raw=False, polling=True, **operation_config): + self, resource_group_name, resource_name, tags=None, public_network_access=None, custom_headers=None, raw=False, polling=True, **operation_config): """Update the metadata of a service instance. :param resource_group_name: The name of the resource group that @@ -265,6 +265,11 @@ def update( :type resource_name: str :param tags: Instance tags :type tags: dict[str, str] + :param public_network_access: Control permission for data plane + traffic coming from public networks while private endpoint is enabled. + Possible values include: 'Enabled', 'Disabled' + :type public_network_access: str or + ~azure.mgmt.healthcareapis.models.PublicNetworkAccess :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 @@ -283,6 +288,7 @@ def update( resource_group_name=resource_group_name, resource_name=resource_name, tags=tags, + public_network_access=public_network_access, custom_headers=custom_headers, raw=True, **operation_config @@ -320,7 +326,7 @@ def _delete_initial( # Construct parameters query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str', min_length=10) + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') # Construct headers header_parameters = {} @@ -411,7 +417,7 @@ def prepare_request(next_link=None): # Construct parameters query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str', min_length=10) + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') else: url = next_link @@ -480,7 +486,7 @@ def prepare_request(next_link=None): # Construct parameters query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str', min_length=10) + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') else: url = next_link @@ -550,7 +556,7 @@ def check_name_availability( # Construct parameters query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str', min_length=10) + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') # Construct headers header_parameters = {} diff --git a/sdk/healthcareapis/azure-mgmt-healthcareapis/setup.py b/sdk/healthcareapis/azure-mgmt-healthcareapis/setup.py index dd69baa72137..61ddf28b3a20 100644 --- a/sdk/healthcareapis/azure-mgmt-healthcareapis/setup.py +++ b/sdk/healthcareapis/azure-mgmt-healthcareapis/setup.py @@ -36,7 +36,9 @@ pass # Version extraction inspired from 'requests' -with open(os.path.join(package_folder_path, 'version.py'), 'r') as fd: +with open(os.path.join(package_folder_path, 'version.py') + if os.path.exists(os.path.join(package_folder_path, 'version.py')) + else os.path.join(package_folder_path, '_version.py'), 'r') as fd: version = re.search(r'^VERSION\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTILINE).group(1) @@ -67,6 +69,7 @@ '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', ], zip_safe=False, From bc75dfc67d4e5ff087f050f3da3dc653e9aa8c65 Mon Sep 17 00:00:00 2001 From: Yuchao Yan Date: Thu, 29 Oct 2020 11:13:37 +0800 Subject: [PATCH 2/4] test,version,changelog --- .../azure-mgmt-healthcareapis/CHANGELOG.md | 21 + .../azure/mgmt/healthcareapis/version.py | 2 +- ...mt_healthcareapis.test_healthcareapis.yaml | 2318 +---------------- .../tests/test_cli_mgmt_healthcareapis.py | 2 +- 4 files changed, 38 insertions(+), 2305 deletions(-) diff --git a/sdk/healthcareapis/azure-mgmt-healthcareapis/CHANGELOG.md b/sdk/healthcareapis/azure-mgmt-healthcareapis/CHANGELOG.md index d4aa4a38a75e..0b2045446ccd 100644 --- a/sdk/healthcareapis/azure-mgmt-healthcareapis/CHANGELOG.md +++ b/sdk/healthcareapis/azure-mgmt-healthcareapis/CHANGELOG.md @@ -1,5 +1,26 @@ # Release History +## 0.2.0 (2020-10-29) + +**Features** + + - Model ServiceCosmosDbConfigurationInfo has a new parameter key_vault_key_uri + - Model ServicesPatchDescription has a new parameter public_network_access + - Model ServicesDescription has a new parameter identity + - Model ServicesProperties has a new parameter public_network_access + - Model ServicesProperties has a new parameter export_configuration + - Model ServicesProperties has a new parameter private_endpoint_connections + - Added operation group PrivateEndpointConnectionsOperations + - Added operation group PrivateLinkResourcesOperations + +**Breaking changes** + + - Operation ServicesOperations.update has a new signature + - Model Resource no longer has parameter kind + - Model Resource no longer has parameter tags + - Model Resource no longer has parameter etag + - Model Resource no longer has parameter location + ## 0.1.0 (2019-08-03) - Initial Release diff --git a/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/version.py b/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/version.py index e0ec669828cb..9bd1dfac7ecb 100644 --- a/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/version.py +++ b/sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/version.py @@ -9,5 +9,5 @@ # regenerated. # -------------------------------------------------------------------------- -VERSION = "0.1.0" +VERSION = "0.2.0" diff --git a/sdk/healthcareapis/azure-mgmt-healthcareapis/tests/recordings/test_cli_mgmt_healthcareapis.test_healthcareapis.yaml b/sdk/healthcareapis/azure-mgmt-healthcareapis/tests/recordings/test_cli_mgmt_healthcareapis.test_healthcareapis.yaml index b73c8a64374f..f976ada5dcc7 100644 --- a/sdk/healthcareapis/azure-mgmt-healthcareapis/tests/recordings/test_cli_mgmt_healthcareapis.test_healthcareapis.yaml +++ b/sdk/healthcareapis/azure-mgmt-healthcareapis/tests/recordings/test_cli_mgmt_healthcareapis.test_healthcareapis.yaml @@ -19,2328 +19,40 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_healthcareapis_test_healthcareapise0d71394/providers/Microsoft.HealthcareApis/services/myapimrndxyzabc?api-version=2018-08-20-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_healthcareapis_test_healthcareapise0d71394/providers/Microsoft.HealthcareApis/services/myapimrndxyzabc1?api-version=2020-03-30 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_healthcareapis_test_healthcareapise0d71394/providers/Microsoft.HealthcareApis/services/myapimrndxyzabc","name":"myapimrndxyzabc","type":"Microsoft.HealthcareApis/services","etag":"\"12000fbc-0000-0400-0000-5e5743540000\"","location":"eastus","kind":"fhir","properties":{"secondaryLocations":null,"accessPolicies":[{"objectId":"c487e7d1-3210-41a3-8ccc-e9372b78da47"},{"objectId":"5b307da8-43d4-492b-8b66-b0294ade872f"}],"cosmosDbConfiguration":{"offerThroughput":1000},"authenticationConfiguration":{"authority":"https://login.microsoftonline.com/abfde7b2-df0f-47e6-aabf-2462b07508dc","audience":"https://azurehealthcareapis.com","smartProxyEnabled":true},"corsConfiguration":{"origins":["*"],"headers":["*"],"methods":["DELETE","GET","OPTIONS","PATCH","POST","PUT"],"maxAge":1440,"allowCredentials":false},"exportConfiguration":{"storageAccountName":null},"provisioningState":"Creating"}}' + string: '{"error":{"code":"NoRegisteredProviderFound","message":"No registered + resource provider found for location ''eastus'' and API version ''2020-03-30'' + for type ''services''. The supported api-versions are ''2018-08-20-preview, + 2019-09-16, 2020-03-15''. The supported locations are ''ukwest, northcentralus, + westus2, australiaeast, southeastasia, uksouth, eastus, westeurope, southcentralus, + eastus2, northeurope, westcentralus, japaneast, germanywestcentral''."}}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3?api-version=2018-08-20-preview cache-control: - no-cache content-length: - - '976' + - '451' content-type: - application/json; charset=utf-8 date: - - Thu, 27 Feb 2020 04:19:35 GMT - etag: - - '"12000fbc-0000-0400-0000-5e5743540000"' + - Tue, 20 Oct 2020 09:38:42 GMT expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-request-id: - - 8b0c7a3dc7e25549ac6a4739323d6aa9 + x-ms-failure-cause: + - gateway status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","name":"4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","status":"Running","startTime":"2020-02-27T04:19:32.9482065Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:20:05 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - 526ab1a4380f4945a51224607eea9814 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","name":"4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","status":"Running","startTime":"2020-02-27T04:19:32.9482065Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:20:35 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - c2927b4010816e48b9a3c057e2b469f2 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","name":"4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","status":"Running","startTime":"2020-02-27T04:19:32.9482065Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:21:06 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - 7128e548f4bfb942b0fbdcf961df9caf - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","name":"4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","status":"Running","startTime":"2020-02-27T04:19:32.9482065Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:21:37 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - bc824480a48e3e4ab3e10ecc462b424e - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","name":"4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","status":"Running","startTime":"2020-02-27T04:19:32.9482065Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:22:08 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - 585878441395d84aa599086161d634f3 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","name":"4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","status":"Running","startTime":"2020-02-27T04:19:32.9482065Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:23:40 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - ddec1a223a5d70449cd84d80d57f16c0 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","name":"4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","status":"Running","startTime":"2020-02-27T04:19:32.9482065Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:24:10 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - 0a6aa59c18be644aa2549f13fff3cb40 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","name":"4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","status":"Running","startTime":"2020-02-27T04:19:32.9482065Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:24:41 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - 26b687880072a847ab25f3361d06a2a9 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","name":"4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","status":"Running","startTime":"2020-02-27T04:19:32.9482065Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:25:12 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - d05eec661c8e974d94d7dff110d7569e - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","name":"4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","status":"Running","startTime":"2020-02-27T04:19:32.9482065Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:25:42 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - 8e4e661374dac546948d87c75df8aae9 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","name":"4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","status":"Running","startTime":"2020-02-27T04:19:32.9482065Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:26:13 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - 815f4e52f4cb9e4599b43ca65bba9888 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","name":"4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","status":"Running","startTime":"2020-02-27T04:19:32.9482065Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:26:43 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - 81a43a864a2f014a95dde9ea704f38d5 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","name":"4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","status":"Running","startTime":"2020-02-27T04:19:32.9482065Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:27:14 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - ea93ed2c4e93d24887822bb8bfaf1129 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","name":"4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","status":"Running","startTime":"2020-02-27T04:19:32.9482065Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:27:46 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - e029c3ec6893324cb1c7acacbff85bb7 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","name":"4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","status":"Running","startTime":"2020-02-27T04:19:32.9482065Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:28:16 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - 580639cc71e7b449b8bccb6829d0a49d - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","name":"4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","status":"Running","startTime":"2020-02-27T04:19:32.9482065Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:28:47 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - e79da1bc660a474b9974171671d5e349 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","name":"4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","status":"Running","startTime":"2020-02-27T04:19:32.9482065Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:29:17 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - df7ca6a4e82b4e4d99a51d7dd0861228 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","name":"4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","status":"Running","startTime":"2020-02-27T04:19:32.9482065Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:29:49 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - d51021e5f005f045a8ed134029026689 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","name":"4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","status":"Running","startTime":"2020-02-27T04:19:32.9482065Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:30:19 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - 1f3292ca624d5442900ef91da371cab0 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","name":"4822b081-d0ff-4a27-ac0a-7fbae2dd19e3","status":"Succeeded","startTime":"2020-02-27T04:19:32.9482065Z"}' - headers: - cache-control: - - no-cache - content-length: - - '276' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:30:50 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - b0d330bdb449b8469ce58dcf1b3b781a - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_healthcareapis_test_healthcareapise0d71394/providers/Microsoft.HealthcareApis/services/myapimrndxyzabc?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_healthcareapis_test_healthcareapise0d71394/providers/Microsoft.HealthcareApis/services/myapimrndxyzabc","name":"myapimrndxyzabc","type":"Microsoft.HealthcareApis/services","etag":"\"120040ce-0000-0400-0000-5e5745e50000\"","location":"eastus","kind":"fhir","tags":{},"properties":{"secondaryLocations":null,"accessPolicies":[{"objectId":"c487e7d1-3210-41a3-8ccc-e9372b78da47"},{"objectId":"5b307da8-43d4-492b-8b66-b0294ade872f"}],"cosmosDbConfiguration":{"offerThroughput":1000},"authenticationConfiguration":{"authority":"https://login.microsoftonline.com/abfde7b2-df0f-47e6-aabf-2462b07508dc","audience":"https://azurehealthcareapis.com","smartProxyEnabled":true},"corsConfiguration":{"origins":["*"],"headers":["*"],"methods":["DELETE","GET","OPTIONS","PATCH","POST","PUT"],"maxAge":1440,"allowCredentials":false},"exportConfiguration":{"storageAccountName":null},"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '987' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:30:53 GMT - etag: - - '"120040ce-0000-0400-0000-5e5745e50000"' - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - 021421bf595ae04998044f59362eba54 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/read?api-version=2018-08-20-preview - response: - body: - string: '{"error":{"code":"OperationResultNotFound","message":"The operation - result was not found."}}' - headers: - cache-control: - - no-cache - content-length: - - '92' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:31:00 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-request-id: - - adff337dc5b4144e846674736f793485 - status: - code: 404 - message: Not Found -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_healthcareapis_test_healthcareapise0d71394/providers/Microsoft.HealthcareApis/services/myapimrndxyzabc?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_healthcareapis_test_healthcareapise0d71394/providers/Microsoft.HealthcareApis/services/myapimrndxyzabc","name":"myapimrndxyzabc","type":"Microsoft.HealthcareApis/services","etag":"\"120040ce-0000-0400-0000-5e5745e50000\"","location":"eastus","kind":"fhir","tags":{},"properties":{"secondaryLocations":null,"accessPolicies":[{"objectId":"c487e7d1-3210-41a3-8ccc-e9372b78da47"},{"objectId":"5b307da8-43d4-492b-8b66-b0294ade872f"}],"cosmosDbConfiguration":{"offerThroughput":1000},"authenticationConfiguration":{"authority":"https://login.microsoftonline.com/abfde7b2-df0f-47e6-aabf-2462b07508dc","audience":"https://azurehealthcareapis.com","smartProxyEnabled":true},"corsConfiguration":{"origins":["*"],"headers":["*"],"methods":["DELETE","GET","OPTIONS","PATCH","POST","PUT"],"maxAge":1440,"allowCredentials":false},"exportConfiguration":{"storageAccountName":null},"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '987' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:31:04 GMT - etag: - - '"120040ce-0000-0400-0000-5e5745e50000"' - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - ff92905b412aaf4e87a954beec2ea52d - status: - code: 200 - message: OK -- request: - body: '{"tags": {"tags": "{''tag1'': ''value1'', ''tag2'': ''value2''}"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '58' - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - accept-language: - - en-US - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_healthcareapis_test_healthcareapise0d71394/providers/Microsoft.HealthcareApis/services/myapimrndxyzabc?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_healthcareapis_test_healthcareapise0d71394/providers/Microsoft.HealthcareApis/services/myapimrndxyzabc","name":"myapimrndxyzabc","type":"Microsoft.HealthcareApis/services","etag":"\"120096cf-0000-0400-0000-5e5746130000\"","location":"eastus","kind":"fhir","tags":{"tags":"{''tag1'': - ''value1'', ''tag2'': ''value2''}"},"properties":{"secondaryLocations":null,"accessPolicies":[{"objectId":"c487e7d1-3210-41a3-8ccc-e9372b78da47"},{"objectId":"5b307da8-43d4-492b-8b66-b0294ade872f"}],"cosmosDbConfiguration":{"offerThroughput":1000},"authenticationConfiguration":{"authority":"https://login.microsoftonline.com/abfde7b2-df0f-47e6-aabf-2462b07508dc","audience":"https://azurehealthcareapis.com","smartProxyEnabled":true},"corsConfiguration":{"origins":["*"],"headers":["*"],"methods":["DELETE","GET","OPTIONS","PATCH","POST","PUT"],"maxAge":1440,"allowCredentials":false},"exportConfiguration":{"storageAccountName":null},"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '1032' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:31:18 GMT - etag: - - '"120096cf-0000-0400-0000-5e5746130000"' - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - x-request-id: - - 8f1b296a6d4d274486d58a91de42b090 - status: - code: 200 - message: OK -- request: - body: '{"name": "myapimrndxyzabcABC", "type": "Microsoft.HealthcareApis/services"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '75' - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/checkNameAvailability?api-version=2018-08-20-preview - response: - body: - string: '{"nameAvailable":false,"reason":"Invalid","message":"Name can contain - only lowercase letters, numbers and the ''-'' character."}' - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:31:18 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - 317982c51e373a4aa2923e3469f3f094 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_healthcareapis_test_healthcareapise0d71394/providers/Microsoft.HealthcareApis/services/myapimrndxyzabc?api-version=2018-08-20-preview - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611?api-version=2018-08-20-preview - cache-control: - - no-cache - content-length: - - '0' - date: - - Thu, 27 Feb 2020 04:31:23 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611?api-version=2018-08-20-preview&operationResultResponseType=Location - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-request-id: - - 8e66a41507ad184783663bfa56f80254 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611","name":"fecf5034-778e-466e-a613-9517eda91611","status":"Running","startTime":"2020-02-27T04:31:23.7933336Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:31:54 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - 9d5d5e82f9c79545bfcad5f9a97c699c - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611","name":"fecf5034-778e-466e-a613-9517eda91611","status":"Running","startTime":"2020-02-27T04:31:23.7933336Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:32:25 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - 62d75de001c0f34093fa676ac144a6fb - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611","name":"fecf5034-778e-466e-a613-9517eda91611","status":"Running","startTime":"2020-02-27T04:31:23.7933336Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:32:56 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - e9f3b2814f32eb4fbe525877da01ca15 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611","name":"fecf5034-778e-466e-a613-9517eda91611","status":"Running","startTime":"2020-02-27T04:31:23.7933336Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:33:26 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - 89851ac3dbce2c4e84a8450e0c4b1d4e - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611","name":"fecf5034-778e-466e-a613-9517eda91611","status":"Running","startTime":"2020-02-27T04:31:23.7933336Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:33:57 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - 46c1bb568808934b82bd7224480e5492 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611","name":"fecf5034-778e-466e-a613-9517eda91611","status":"Running","startTime":"2020-02-27T04:31:23.7933336Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:34:28 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - 406abceee452dc4b82f87c00d0f45bb2 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611","name":"fecf5034-778e-466e-a613-9517eda91611","status":"Running","startTime":"2020-02-27T04:31:23.7933336Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:34:58 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - 5e11f1701bec094eb46570860a878204 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611","name":"fecf5034-778e-466e-a613-9517eda91611","status":"Running","startTime":"2020-02-27T04:31:23.7933336Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:35:29 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - a7e873188b74de4da829a32dcda5a061 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611","name":"fecf5034-778e-466e-a613-9517eda91611","status":"Running","startTime":"2020-02-27T04:31:23.7933336Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:35:59 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - f3bab752881c424e8dd5e61d7337cba5 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611","name":"fecf5034-778e-466e-a613-9517eda91611","status":"Running","startTime":"2020-02-27T04:31:23.7933336Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:36:29 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - 3855a7a9a2b0364197b323ba18ab9153 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611","name":"fecf5034-778e-466e-a613-9517eda91611","status":"Running","startTime":"2020-02-27T04:31:23.7933336Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:37:01 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - c3fbaf7b16f8154390ffd2c9c3ada135 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611","name":"fecf5034-778e-466e-a613-9517eda91611","status":"Running","startTime":"2020-02-27T04:31:23.7933336Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:37:32 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - 972db7334e245d4fbb75dd601bbfa5f2 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611","name":"fecf5034-778e-466e-a613-9517eda91611","status":"Running","startTime":"2020-02-27T04:31:23.7933336Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:38:03 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - 91aa4e4e8de38c4ea7e3bc51432fdda4 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611","name":"fecf5034-778e-466e-a613-9517eda91611","status":"Running","startTime":"2020-02-27T04:31:23.7933336Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:38:33 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - fa864c52acbbdc45999e13abcebf4060 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611","name":"fecf5034-778e-466e-a613-9517eda91611","status":"Running","startTime":"2020-02-27T04:31:23.7933336Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:39:04 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - 8f7efccf124d1148becc2168a659a16b - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611","name":"fecf5034-778e-466e-a613-9517eda91611","status":"Running","startTime":"2020-02-27T04:31:23.7933336Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:39:34 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - 4d1bac391abbe2489b6dcf7ff5afada2 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611","name":"fecf5034-778e-466e-a613-9517eda91611","status":"Running","startTime":"2020-02-27T04:31:23.7933336Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:40:06 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - 55fc9e29d99b204a804d926d2e250fcb - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611","name":"fecf5034-778e-466e-a613-9517eda91611","status":"Running","startTime":"2020-02-27T04:31:23.7933336Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:40:36 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - e07ea35b607a0341b1417296ee0177f1 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611","name":"fecf5034-778e-466e-a613-9517eda91611","status":"Running","startTime":"2020-02-27T04:31:23.7933336Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:41:07 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - 36786f6805387b4881f14e50a62d447f - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611","name":"fecf5034-778e-466e-a613-9517eda91611","status":"Running","startTime":"2020-02-27T04:31:23.7933336Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:41:38 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - 4673a2ccbdb2234eb724e78852ec816a - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611","name":"fecf5034-778e-466e-a613-9517eda91611","status":"Running","startTime":"2020-02-27T04:31:23.7933336Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:42:09 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - 7eca90529b635a44b88773abf7039a11 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611?api-version=2018-08-20-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/fecf5034-778e-466e-a613-9517eda91611","name":"fecf5034-778e-466e-a613-9517eda91611","status":"Succeeded","startTime":"2020-02-27T04:31:23.7933336Z"}' - headers: - cache-control: - - no-cache - content-length: - - '276' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 27 Feb 2020 04:42:42 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-request-id: - - fac616eee9487a408688eada2625e104 - status: - code: 200 - message: OK + code: 400 + message: Bad Request version: 1 diff --git a/sdk/healthcareapis/azure-mgmt-healthcareapis/tests/test_cli_mgmt_healthcareapis.py b/sdk/healthcareapis/azure-mgmt-healthcareapis/tests/test_cli_mgmt_healthcareapis.py index 30103130f8a6..d674aa329876 100644 --- a/sdk/healthcareapis/azure-mgmt-healthcareapis/tests/test_cli_mgmt_healthcareapis.py +++ b/sdk/healthcareapis/azure-mgmt-healthcareapis/tests/test_cli_mgmt_healthcareapis.py @@ -34,7 +34,7 @@ def setUp(self): @ResourceGroupPreparer(location=AZURE_LOCATION) def test_healthcareapis(self, resource_group): - SERVICE_NAME = "myapimrndxyzabc" + SERVICE_NAME = "myapimrndxyzabc1" OPERATIONRESULT_NAME = "read" LOCATION_NAME = AZURE_LOCATION From 08592a78809e4d9ec9b9ecfa1824c1e79fc9367c Mon Sep 17 00:00:00 2001 From: Yuchao Yan Date: Thu, 29 Oct 2020 11:16:29 +0800 Subject: [PATCH 3/4] test --- ...mt_healthcareapis.test_healthcareapis.yaml | 3017 ++++++++++++++++- 1 file changed, 3005 insertions(+), 12 deletions(-) diff --git a/sdk/healthcareapis/azure-mgmt-healthcareapis/tests/recordings/test_cli_mgmt_healthcareapis.test_healthcareapis.yaml b/sdk/healthcareapis/azure-mgmt-healthcareapis/tests/recordings/test_cli_mgmt_healthcareapis.test_healthcareapis.yaml index f976ada5dcc7..4b9c8668b47f 100644 --- a/sdk/healthcareapis/azure-mgmt-healthcareapis/tests/recordings/test_cli_mgmt_healthcareapis.test_healthcareapis.yaml +++ b/sdk/healthcareapis/azure-mgmt-healthcareapis/tests/recordings/test_cli_mgmt_healthcareapis.test_healthcareapis.yaml @@ -27,32 +27,3025 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_healthcareapis_test_healthcareapise0d71394/providers/Microsoft.HealthcareApis/services/myapimrndxyzabc1?api-version=2020-03-30 response: body: - string: '{"error":{"code":"NoRegisteredProviderFound","message":"No registered - resource provider found for location ''eastus'' and API version ''2020-03-30'' - for type ''services''. The supported api-versions are ''2018-08-20-preview, - 2019-09-16, 2020-03-15''. The supported locations are ''ukwest, northcentralus, - westus2, australiaeast, southeastasia, uksouth, eastus, westeurope, southcentralus, - eastus2, northeurope, westcentralus, japaneast, germanywestcentral''."}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_healthcareapis_test_healthcareapise0d71394/providers/Microsoft.HealthcareApis/services/myapimrndxyzabc1","name":"myapimrndxyzabc1","type":"Microsoft.HealthcareApis/services","etag":"\"1600d8a2-0000-0400-0000-5f9a2bcd0000\"","location":"eastus","kind":"fhir","properties":{"secondaryLocations":null,"accessPolicies":[{"objectId":"c487e7d1-3210-41a3-8ccc-e9372b78da47"},{"objectId":"5b307da8-43d4-492b-8b66-b0294ade872f"}],"cosmosDbConfiguration":{"offerThroughput":1000},"authenticationConfiguration":{"authority":"https://login.microsoftonline.com/abfde7b2-df0f-47e6-aabf-2462b07508dc","audience":"https://azurehealthcareapis.com","smartProxyEnabled":true},"corsConfiguration":{"origins":["*"],"headers":["*"],"methods":["DELETE","GET","OPTIONS","PATCH","POST","PUT"],"maxAge":1440,"allowCredentials":false},"exportConfiguration":{"storageAccountName":null},"privateEndpointConnections":[],"publicNetworkAccess":null,"provisioningState":"Creating"}}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31?api-version=2020-03-30 cache-control: - no-cache content-length: - - '451' + - '1037' content-type: - application/json; charset=utf-8 date: - - Tue, 20 Oct 2020 09:38:42 GMT + - Thu, 29 Oct 2020 02:41:20 GMT + etag: + - '"1600d8a2-0000-0400-0000-5f9a2bcd0000"' expires: - '-1' pragma: - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-failure-cause: - - gateway + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-request-id: + - 0301042539860445beb3180209bf0bad status: - code: 400 - message: Bad Request + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","name":"97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","status":"Running","startTime":"2020-10-29T02:41:17.9734036Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:41:50 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 2eaee929e16ee643a100c9d84279faef + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","name":"97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","status":"Running","startTime":"2020-10-29T02:41:17.9734036Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:42:20 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 187677b0d558fa4b8a7b27550101eae5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","name":"97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","status":"Running","startTime":"2020-10-29T02:41:17.9734036Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:42:51 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 4a8b01768c8bad45ac5aaa1a4ffa48d9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","name":"97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","status":"Running","startTime":"2020-10-29T02:41:17.9734036Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:43:21 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 7eb5ce372f8dc243b569d258076c4bd4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","name":"97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","status":"Running","startTime":"2020-10-29T02:41:17.9734036Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:43:51 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 10c185557198b347a768e8b1b8c9f686 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","name":"97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","status":"Running","startTime":"2020-10-29T02:41:17.9734036Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:44:22 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - d2f1bc06b2a2e34f9d5bb69c75500fe9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","name":"97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","status":"Running","startTime":"2020-10-29T02:41:17.9734036Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:44:52 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 5b3d03081c58eb48adb76dd009e37757 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","name":"97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","status":"Running","startTime":"2020-10-29T02:41:17.9734036Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:45:23 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - da1e418fb1d2cb458173a1ece4f182ae + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","name":"97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","status":"Running","startTime":"2020-10-29T02:41:17.9734036Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:45:53 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 669c0af4c61fd949aefa2008bbc12dfa + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","name":"97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","status":"Running","startTime":"2020-10-29T02:41:17.9734036Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:46:23 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - dbde3f38e632ac4cb54c337250b67faf + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","name":"97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","status":"Running","startTime":"2020-10-29T02:41:17.9734036Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:46:53 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - b17d6876f100624ab4c5ec14c75c6739 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","name":"97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","status":"Running","startTime":"2020-10-29T02:41:17.9734036Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:47:23 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 6238c49fd69a224c8d5d2013a47dad48 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","name":"97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","status":"Running","startTime":"2020-10-29T02:41:17.9734036Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:47:54 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - a088b443e7cca143bba53760c89c3fe3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","name":"97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","status":"Running","startTime":"2020-10-29T02:41:17.9734036Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:48:25 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 49819375f942834caa35bf2a97d7257d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","name":"97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","status":"Running","startTime":"2020-10-29T02:41:17.9734036Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:48:55 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 3087ff64851ad24ba60e1afe167c9fcc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","name":"97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","status":"Running","startTime":"2020-10-29T02:41:17.9734036Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:49:25 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - e7d0901c5dda8540894d4b1b8ee43e7e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","name":"97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","status":"Running","startTime":"2020-10-29T02:41:17.9734036Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:49:56 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - cb4d8dd78593cc4da7300987f635ac37 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","name":"97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","status":"Running","startTime":"2020-10-29T02:41:17.9734036Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:50:26 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 1caaa16b845f1349a9fa518f5df729dc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","name":"97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","status":"Running","startTime":"2020-10-29T02:41:17.9734036Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:50:56 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 93b40211df4b904fa7d193921dba6e52 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","name":"97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","status":"Running","startTime":"2020-10-29T02:41:17.9734036Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:51:27 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 01a46a5353320146a658dcb97fb941bb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","name":"97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","status":"Running","startTime":"2020-10-29T02:41:17.9734036Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:51:57 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - d4dc2be281150d4eb5dea956bfaf6089 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","name":"97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","status":"Running","startTime":"2020-10-29T02:41:17.9734036Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:52:27 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 5ec71e9998e7334b9138596cab19f4cb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","name":"97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","status":"Running","startTime":"2020-10-29T02:41:17.9734036Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:52:57 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - cad86ffa9dad0344bffdf62c71606369 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","name":"97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","status":"Running","startTime":"2020-10-29T02:41:17.9734036Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:53:27 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - ca85177f6fed18478c04a404821dfc0e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","name":"97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","status":"Running","startTime":"2020-10-29T02:41:17.9734036Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:53:59 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 7ee5e0558a57d14caa59a4b53ba3349d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","name":"97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","status":"Running","startTime":"2020-10-29T02:41:17.9734036Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:54:29 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 8af78664bbe3e54a847f32805495bfc7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","name":"97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","status":"Running","startTime":"2020-10-29T02:41:17.9734036Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:54:59 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - eeadeae57fdbbf4d87fce1a09e98fbc8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","name":"97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","status":"Running","startTime":"2020-10-29T02:41:17.9734036Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:55:29 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - d480a8f01a165342a013485d84220e46 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","name":"97cd9c1b-2928-4b2a-9a4c-d525cf3ccc31","status":"Succeeded","startTime":"2020-10-29T02:41:17.9734036Z"}' + headers: + cache-control: + - no-cache + content-length: + - '276' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:55:59 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 915e0c5f89dc354bb2f0de1720ca5b8d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_healthcareapis_test_healthcareapise0d71394/providers/Microsoft.HealthcareApis/services/myapimrndxyzabc1?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_healthcareapis_test_healthcareapise0d71394/providers/Microsoft.HealthcareApis/services/myapimrndxyzabc1","name":"myapimrndxyzabc1","type":"Microsoft.HealthcareApis/services","etag":"\"1600b6be-0000-0400-0000-5f9a2f330000\"","location":"eastus","kind":"fhir","tags":{},"properties":{"secondaryLocations":null,"accessPolicies":[{"objectId":"c487e7d1-3210-41a3-8ccc-e9372b78da47"},{"objectId":"5b307da8-43d4-492b-8b66-b0294ade872f"}],"cosmosDbConfiguration":{"offerThroughput":1000},"authenticationConfiguration":{"authority":"https://login.microsoftonline.com/abfde7b2-df0f-47e6-aabf-2462b07508dc","audience":"https://azurehealthcareapis.com","smartProxyEnabled":true},"corsConfiguration":{"origins":["*"],"headers":["*"],"methods":["DELETE","GET","OPTIONS","PATCH","POST","PUT"],"maxAge":1440,"allowCredentials":false},"exportConfiguration":{"storageAccountName":null},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1053' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:56:04 GMT + etag: + - '"1600b6be-0000-0400-0000-5f9a2f330000"' + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 0590eeec14226d47b419f26216618787 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/read?api-version=2020-03-30 + response: + body: + string: '{"error":{"code":"OperationResultNotFound","message":"The operation + result was not found."}}' + headers: + cache-control: + - no-cache + content-length: + - '92' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:56:04 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-request-id: + - b2ff8e7fab5e1f4a90a7e761b1342fd0 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_healthcareapis_test_healthcareapise0d71394/providers/Microsoft.HealthcareApis/services/myapimrndxyzabc1?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_healthcareapis_test_healthcareapise0d71394/providers/Microsoft.HealthcareApis/services/myapimrndxyzabc1","name":"myapimrndxyzabc1","type":"Microsoft.HealthcareApis/services","etag":"\"1600b6be-0000-0400-0000-5f9a2f330000\"","location":"eastus","kind":"fhir","tags":{},"properties":{"secondaryLocations":null,"accessPolicies":[{"objectId":"c487e7d1-3210-41a3-8ccc-e9372b78da47"},{"objectId":"5b307da8-43d4-492b-8b66-b0294ade872f"}],"cosmosDbConfiguration":{"offerThroughput":1000},"authenticationConfiguration":{"authority":"https://login.microsoftonline.com/abfde7b2-df0f-47e6-aabf-2462b07508dc","audience":"https://azurehealthcareapis.com","smartProxyEnabled":true},"corsConfiguration":{"origins":["*"],"headers":["*"],"methods":["DELETE","GET","OPTIONS","PATCH","POST","PUT"],"maxAge":1440,"allowCredentials":false},"exportConfiguration":{"storageAccountName":null},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1053' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:56:08 GMT + etag: + - '"1600b6be-0000-0400-0000-5f9a2f330000"' + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 82a8b64b3bad5b4fb82d786db5d09466 + status: + code: 200 + message: OK +- request: + body: '{"tags": {"tags": "{''tag1'': ''value1'', ''tag2'': ''value2''}"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '58' + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + accept-language: + - en-US + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_healthcareapis_test_healthcareapise0d71394/providers/Microsoft.HealthcareApis/services/myapimrndxyzabc1?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_healthcareapis_test_healthcareapise0d71394/providers/Microsoft.HealthcareApis/services/myapimrndxyzabc1","name":"myapimrndxyzabc1","type":"Microsoft.HealthcareApis/services","etag":"\"1600c5bf-0000-0400-0000-5f9a2f530000\"","location":"eastus","kind":"fhir","tags":{"tags":"{''tag1'': + ''value1'', ''tag2'': ''value2''}"},"properties":{"secondaryLocations":null,"accessPolicies":[{"objectId":"c487e7d1-3210-41a3-8ccc-e9372b78da47"},{"objectId":"5b307da8-43d4-492b-8b66-b0294ade872f"}],"cosmosDbConfiguration":{"offerThroughput":1000},"authenticationConfiguration":{"authority":"https://login.microsoftonline.com/abfde7b2-df0f-47e6-aabf-2462b07508dc","audience":"https://azurehealthcareapis.com","smartProxyEnabled":true},"corsConfiguration":{"origins":["*"],"headers":["*"],"methods":["DELETE","GET","OPTIONS","PATCH","POST","PUT"],"maxAge":1440,"allowCredentials":false},"exportConfiguration":{"storageAccountName":null},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1098' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:56:24 GMT + etag: + - '"1600c5bf-0000-0400-0000-5f9a2f530000"' + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-request-id: + - 7dc5f3eb1dd51b4d8dd3b608758edaf1 + status: + code: 200 + message: OK +- request: + body: '{"name": "myapimrndxyzabc1ABC", "type": "Microsoft.HealthcareApis/services"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '76' + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/checkNameAvailability?api-version=2020-03-30 + response: + body: + string: '{"nameAvailable":false,"reason":"Invalid","message":"Name can contain + only lowercase letters, numbers and the ''-'' character."}' + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:56:24 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 064531430e244e48b4eac23b5ec2912d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_healthcareapis_test_healthcareapise0d71394/providers/Microsoft.HealthcareApis/services/myapimrndxyzabc1?api-version=2020-03-30 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55?api-version=2020-03-30 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 29 Oct 2020 02:56:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55?api-version=2020-03-30&operationResultResponseType=Location + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-request-id: + - 12bb6d4837365f44b7c3a6fe7b28672e + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55","name":"074a4026-5bf4-4454-9879-c7d5a2df0e55","status":"Running","startTime":"2020-10-29T02:56:29.2040912Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:56:59 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 174367ebe2835247802c7d193b7707a2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55","name":"074a4026-5bf4-4454-9879-c7d5a2df0e55","status":"Running","startTime":"2020-10-29T02:56:29.2040912Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:57:29 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - ac73cdd0ed8a2f4f92e988f57998db43 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55","name":"074a4026-5bf4-4454-9879-c7d5a2df0e55","status":"Running","startTime":"2020-10-29T02:56:29.2040912Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:57:59 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 514d370d81b50e4bbeb3ab8c4546cb9e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55","name":"074a4026-5bf4-4454-9879-c7d5a2df0e55","status":"Running","startTime":"2020-10-29T02:56:29.2040912Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:58:31 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - f2b15d6552b9454ba238aa29ec48bd16 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55","name":"074a4026-5bf4-4454-9879-c7d5a2df0e55","status":"Running","startTime":"2020-10-29T02:56:29.2040912Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:59:01 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 4a1e351af0d84148b96aae304acdca26 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55","name":"074a4026-5bf4-4454-9879-c7d5a2df0e55","status":"Running","startTime":"2020-10-29T02:56:29.2040912Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 02:59:31 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 4377d7806dc1bf45b30b4beba6c2f54e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55","name":"074a4026-5bf4-4454-9879-c7d5a2df0e55","status":"Running","startTime":"2020-10-29T02:56:29.2040912Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 03:00:01 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - cf7eb6683514d24db2f60bb3869eea00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55","name":"074a4026-5bf4-4454-9879-c7d5a2df0e55","status":"Running","startTime":"2020-10-29T02:56:29.2040912Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 03:00:31 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 6ce1ef5cebfbc24597506f115bb38ffe + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55","name":"074a4026-5bf4-4454-9879-c7d5a2df0e55","status":"Running","startTime":"2020-10-29T02:56:29.2040912Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 03:01:02 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 344dabbbc651134d98d4644ad521f4be + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55","name":"074a4026-5bf4-4454-9879-c7d5a2df0e55","status":"Running","startTime":"2020-10-29T02:56:29.2040912Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 03:01:32 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 81634e4845e3424d97678d54f3feb2af + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55","name":"074a4026-5bf4-4454-9879-c7d5a2df0e55","status":"Running","startTime":"2020-10-29T02:56:29.2040912Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 03:02:03 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - b2885e48fec14745a0b4038eaa06e3db + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55","name":"074a4026-5bf4-4454-9879-c7d5a2df0e55","status":"Running","startTime":"2020-10-29T02:56:29.2040912Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 03:02:33 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 574bd02b231b8a4a97dfa58e291831fa + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55","name":"074a4026-5bf4-4454-9879-c7d5a2df0e55","status":"Running","startTime":"2020-10-29T02:56:29.2040912Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 03:03:03 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 04e4464debdc0645a3357aa8a09e70c7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55","name":"074a4026-5bf4-4454-9879-c7d5a2df0e55","status":"Running","startTime":"2020-10-29T02:56:29.2040912Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 03:03:33 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - f90b866f0a496044b1ac1f92afe8b571 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55","name":"074a4026-5bf4-4454-9879-c7d5a2df0e55","status":"Running","startTime":"2020-10-29T02:56:29.2040912Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 03:04:04 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 307dc9b121f5c7438a8632a715e82c99 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55","name":"074a4026-5bf4-4454-9879-c7d5a2df0e55","status":"Running","startTime":"2020-10-29T02:56:29.2040912Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 03:04:34 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - fba332334ab6504abf847e9ef70e3f95 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55","name":"074a4026-5bf4-4454-9879-c7d5a2df0e55","status":"Running","startTime":"2020-10-29T02:56:29.2040912Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 03:05:05 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 43bc1095b85d324abc7780a21390def4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55","name":"074a4026-5bf4-4454-9879-c7d5a2df0e55","status":"Running","startTime":"2020-10-29T02:56:29.2040912Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 03:05:35 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 881b6150a9a6fb4f982281096840943a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55","name":"074a4026-5bf4-4454-9879-c7d5a2df0e55","status":"Running","startTime":"2020-10-29T02:56:29.2040912Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 03:06:05 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 88873971e750cd428357dc7af109a61c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55","name":"074a4026-5bf4-4454-9879-c7d5a2df0e55","status":"Running","startTime":"2020-10-29T02:56:29.2040912Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 03:06:36 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 55c3798df0777142b0ee8a50f09a0ff5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55","name":"074a4026-5bf4-4454-9879-c7d5a2df0e55","status":"Running","startTime":"2020-10-29T02:56:29.2040912Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 03:07:06 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - b678c8244b0cd84c96085d77b2ceefef + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55","name":"074a4026-5bf4-4454-9879-c7d5a2df0e55","status":"Running","startTime":"2020-10-29T02:56:29.2040912Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 03:07:36 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 7d726e1731b4d64f862b6de675bb7b85 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55","name":"074a4026-5bf4-4454-9879-c7d5a2df0e55","status":"Running","startTime":"2020-10-29T02:56:29.2040912Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 03:08:06 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - f1f25e8e933c5d42afec003ac0ee0d6c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55","name":"074a4026-5bf4-4454-9879-c7d5a2df0e55","status":"Running","startTime":"2020-10-29T02:56:29.2040912Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 03:08:38 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 0e711bbf76a89a4a83f69c0c29a8c2d5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55","name":"074a4026-5bf4-4454-9879-c7d5a2df0e55","status":"Running","startTime":"2020-10-29T02:56:29.2040912Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 03:09:08 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 567416b8e4412244924f82e512cb75c7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55","name":"074a4026-5bf4-4454-9879-c7d5a2df0e55","status":"Running","startTime":"2020-10-29T02:56:29.2040912Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 03:09:38 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 5e7f193d96e8c946b3c62b12588c58cf + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55","name":"074a4026-5bf4-4454-9879-c7d5a2df0e55","status":"Running","startTime":"2020-10-29T02:56:29.2040912Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 03:10:08 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - 7046cddc19a9fb49a5e5ec2c5dec6356 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-healthcareapis/0.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55?api-version=2020-03-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HealthcareApis/locations/eastus/operationresults/074a4026-5bf4-4454-9879-c7d5a2df0e55","name":"074a4026-5bf4-4454-9879-c7d5a2df0e55","status":"Succeeded","startTime":"2020-10-29T02:56:29.2040912Z"}' + headers: + cache-control: + - no-cache + content-length: + - '276' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 03:10:38 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-request-id: + - a2f252e34470ac42a94531b936469db7 + status: + code: 200 + message: OK version: 1 From 0d94e4a8cf0bbf743a8bf2396b7498cf922afcab Mon Sep 17 00:00:00 2001 From: msyyc <70930885+msyyc@users.noreply.github.com> Date: Thu, 29 Oct 2020 11:20:09 +0800 Subject: [PATCH 4/4] Update CHANGELOG.md --- sdk/healthcareapis/azure-mgmt-healthcareapis/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/healthcareapis/azure-mgmt-healthcareapis/CHANGELOG.md b/sdk/healthcareapis/azure-mgmt-healthcareapis/CHANGELOG.md index 0b2045446ccd..c8a838b17aff 100644 --- a/sdk/healthcareapis/azure-mgmt-healthcareapis/CHANGELOG.md +++ b/sdk/healthcareapis/azure-mgmt-healthcareapis/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 0.2.0 (2020-10-29) +## 0.2.0 (2020-11-02) **Features**