Skip to content

Commit 3858e52

Browse files
azclibotmsyyc
andauthored
[AutoRelease] t2-healthcareapis-2022-03-23-18192(Do not merge) (Azure#23614)
* code and test * Update CHANGELOG.md Co-authored-by: PythonSdkPipelines <PythonSdkPipelines> Co-authored-by: Yuchao Yan <[email protected]>
1 parent ed1f54e commit 3858e52

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+7063
-5738
lines changed

sdk/healthcareapis/azure-mgmt-healthcareapis/CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
11
# Release History
22

3+
## 1.1.0 (2022-03-31)
4+
5+
**Features**
6+
7+
- Added operation group WorkspacePrivateEndpointConnectionsOperations
8+
- Added operation group WorkspacePrivateLinkResourcesOperations
9+
- Model DicomService has a new parameter identity
10+
- Model DicomService has a new parameter private_endpoint_connections
11+
- Model DicomService has a new parameter public_network_access
12+
- Model DicomServicePatchResource has a new parameter identity
13+
- Model FhirService has a new parameter event_state
14+
- Model FhirService has a new parameter private_endpoint_connections
15+
- Model FhirService has a new parameter public_network_access
16+
- Model FhirService has a new parameter resource_version_policy_configuration
17+
- Model FhirServiceAcrConfiguration has a new parameter oci_artifacts
18+
- Model OperationDetail has a new parameter properties
19+
- Model OperationResultsDescription has a new parameter end_time
20+
- Model ServiceAcrConfigurationInfo has a new parameter oci_artifacts
21+
- Model ServiceManagedIdentityIdentity has a new parameter principal_id
22+
- Model ServiceManagedIdentityIdentity has a new parameter tenant_id
23+
- Model ServiceManagedIdentityIdentity has a new parameter user_assigned_identities
24+
- Model WorkspaceProperties has a new parameter private_endpoint_connections
25+
- Model WorkspaceProperties has a new parameter public_network_access
26+
27+
**Breaking changes**
28+
29+
- Parameter type of model ServiceManagedIdentityIdentity is now required
30+
331
## 1.1.0b1 (2021-08-26)
432

533
**Features**
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"autorest": "3.4.5",
2+
"autorest": "3.7.2",
33
"use": [
4-
"@autorest/python@5.8.4",
5-
"@autorest/[email protected].2"
4+
"@autorest/python@5.12.0",
5+
"@autorest/[email protected].3"
66
],
7-
"commit": "84d82e9a8f422a930f4e0ffbe037ae9dce5fce3f",
7+
"commit": "a70086b6711c1058aaf3c5906744a665a492a504",
88
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
9-
"autorest_command": "autorest specification/healthcareapis/resource-manager/readme.md --multiapi --python --python-mode=update --python-sdks-folder=/home/vsts/work/1/s/azure-sdk-for-python/sdk --track2 --use=@autorest/python@5.8.4 --use=@autorest/[email protected].2 --version=3.4.5",
9+
"autorest_command": "autorest specification/healthcareapis/resource-manager/readme.md --multiapi --python --python-mode=update --python-sdks-folder=/home/vsts/work/1/azure-sdk-for-python/sdk --python3-only --track2 --use=@autorest/python@5.12.0 --use=@autorest/[email protected].3 --version=3.7.2",
1010
"readme": "specification/healthcareapis/resource-manager/readme.md"
1111
}

sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/__init__.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
__version__ = VERSION
1313
__all__ = ['HealthcareApisManagementClient']
1414

15-
try:
16-
from ._patch import patch_sdk # type: ignore
17-
patch_sdk()
18-
except ImportError:
19-
pass
15+
# `._patch.py` is used for handwritten extensions to the generated code
16+
# Example: https://github.com/Azure/azure-sdk-for-python/blob/main/doc/dev/customize_code/how-to-patch-sdk-code.md
17+
from ._patch import patch_sdk
18+
patch_sdk()

sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/_configuration.py

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,16 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
from typing import TYPE_CHECKING
9+
from typing import Any, TYPE_CHECKING
1010

1111
from azure.core.configuration import Configuration
1212
from azure.core.pipeline import policies
13-
from azure.mgmt.core.policies import ARMHttpLoggingPolicy
13+
from azure.mgmt.core.policies import ARMChallengeAuthenticationPolicy, ARMHttpLoggingPolicy
1414

1515
from ._version import VERSION
1616

1717
if TYPE_CHECKING:
1818
# pylint: disable=unused-import,ungrouped-imports
19-
from typing import Any
20-
2119
from azure.core.credentials import TokenCredential
2220

2321

@@ -35,20 +33,19 @@ class HealthcareApisManagementClientConfiguration(Configuration):
3533

3634
def __init__(
3735
self,
38-
credential, # type: "TokenCredential"
39-
subscription_id, # type: str
40-
**kwargs # type: Any
41-
):
42-
# type: (...) -> None
36+
credential: "TokenCredential",
37+
subscription_id: str,
38+
**kwargs: Any
39+
) -> None:
40+
super(HealthcareApisManagementClientConfiguration, self).__init__(**kwargs)
4341
if credential is None:
4442
raise ValueError("Parameter 'credential' must not be None.")
4543
if subscription_id is None:
4644
raise ValueError("Parameter 'subscription_id' must not be None.")
47-
super(HealthcareApisManagementClientConfiguration, self).__init__(**kwargs)
4845

4946
self.credential = credential
5047
self.subscription_id = subscription_id
51-
self.api_version = "2021-06-01-preview"
48+
self.api_version = "2021-11-01"
5249
self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default'])
5350
kwargs.setdefault('sdk_moniker', 'mgmt-healthcareapis/{}'.format(VERSION))
5451
self._configure(**kwargs)
@@ -68,4 +65,4 @@ def _configure(
6865
self.redirect_policy = kwargs.get('redirect_policy') or policies.RedirectPolicy(**kwargs)
6966
self.authentication_policy = kwargs.get('authentication_policy')
7067
if self.credential and not self.authentication_policy:
71-
self.authentication_policy = policies.BearerTokenCredentialPolicy(self.credential, *self.credential_scopes, **kwargs)
68+
self.authentication_policy = ARMChallengeAuthenticationPolicy(self.credential, *self.credential_scopes, **kwargs)

sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/_healthcare_apis_management_client.py

Lines changed: 68 additions & 72 deletions
Original file line numberDiff line numberDiff line change
@@ -6,42 +6,32 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
from typing import TYPE_CHECKING
9+
from copy import deepcopy
10+
from typing import Any, Optional, TYPE_CHECKING
1011

12+
from azure.core.rest import HttpRequest, HttpResponse
1113
from azure.mgmt.core import ARMPipelineClient
1214
from msrest import Deserializer, Serializer
1315

16+
from . import models
17+
from ._configuration import HealthcareApisManagementClientConfiguration
18+
from .operations import DicomServicesOperations, FhirDestinationsOperations, FhirServicesOperations, IotConnectorFhirDestinationOperations, IotConnectorsOperations, OperationResultsOperations, Operations, PrivateEndpointConnectionsOperations, PrivateLinkResourcesOperations, ServicesOperations, WorkspacePrivateEndpointConnectionsOperations, WorkspacePrivateLinkResourcesOperations, WorkspacesOperations
19+
1420
if TYPE_CHECKING:
1521
# pylint: disable=unused-import,ungrouped-imports
16-
from typing import Any, Optional
17-
1822
from azure.core.credentials import TokenCredential
19-
from azure.core.pipeline.transport import HttpRequest, HttpResponse
20-
21-
from ._configuration import HealthcareApisManagementClientConfiguration
22-
from .operations import ServicesOperations
23-
from .operations import PrivateEndpointConnectionsOperations
24-
from .operations import PrivateLinkResourcesOperations
25-
from .operations import WorkspacesOperations
26-
from .operations import DicomServicesOperations
27-
from .operations import IotConnectorsOperations
28-
from .operations import FhirDestinationsOperations
29-
from .operations import IotConnectorFhirDestinationOperations
30-
from .operations import FhirServicesOperations
31-
from .operations import Operations
32-
from .operations import OperationResultsOperations
33-
from . import models
34-
3523

36-
class HealthcareApisManagementClient(object):
24+
class HealthcareApisManagementClient:
3725
"""Azure Healthcare APIs Client.
3826
3927
:ivar services: ServicesOperations operations
4028
:vartype services: azure.mgmt.healthcareapis.operations.ServicesOperations
4129
:ivar private_endpoint_connections: PrivateEndpointConnectionsOperations operations
42-
:vartype private_endpoint_connections: azure.mgmt.healthcareapis.operations.PrivateEndpointConnectionsOperations
30+
:vartype private_endpoint_connections:
31+
azure.mgmt.healthcareapis.operations.PrivateEndpointConnectionsOperations
4332
:ivar private_link_resources: PrivateLinkResourcesOperations operations
44-
:vartype private_link_resources: azure.mgmt.healthcareapis.operations.PrivateLinkResourcesOperations
33+
:vartype private_link_resources:
34+
azure.mgmt.healthcareapis.operations.PrivateLinkResourcesOperations
4535
:ivar workspaces: WorkspacesOperations operations
4636
:vartype workspaces: azure.mgmt.healthcareapis.operations.WorkspacesOperations
4737
:ivar dicom_services: DicomServicesOperations operations
@@ -51,9 +41,17 @@ class HealthcareApisManagementClient(object):
5141
:ivar fhir_destinations: FhirDestinationsOperations operations
5242
:vartype fhir_destinations: azure.mgmt.healthcareapis.operations.FhirDestinationsOperations
5343
:ivar iot_connector_fhir_destination: IotConnectorFhirDestinationOperations operations
54-
:vartype iot_connector_fhir_destination: azure.mgmt.healthcareapis.operations.IotConnectorFhirDestinationOperations
44+
:vartype iot_connector_fhir_destination:
45+
azure.mgmt.healthcareapis.operations.IotConnectorFhirDestinationOperations
5546
:ivar fhir_services: FhirServicesOperations operations
5647
:vartype fhir_services: azure.mgmt.healthcareapis.operations.FhirServicesOperations
48+
:ivar workspace_private_endpoint_connections: WorkspacePrivateEndpointConnectionsOperations
49+
operations
50+
:vartype workspace_private_endpoint_connections:
51+
azure.mgmt.healthcareapis.operations.WorkspacePrivateEndpointConnectionsOperations
52+
:ivar workspace_private_link_resources: WorkspacePrivateLinkResourcesOperations operations
53+
:vartype workspace_private_link_resources:
54+
azure.mgmt.healthcareapis.operations.WorkspacePrivateLinkResourcesOperations
5755
:ivar operations: Operations operations
5856
:vartype operations: azure.mgmt.healthcareapis.operations.Operations
5957
:ivar operation_results: OperationResultsOperations operations
@@ -62,68 +60,66 @@ class HealthcareApisManagementClient(object):
6260
:type credential: ~azure.core.credentials.TokenCredential
6361
:param subscription_id: The subscription identifier.
6462
:type subscription_id: str
65-
:param str base_url: Service URL
66-
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present.
63+
:param base_url: Service URL. Default value is 'https://management.azure.com'.
64+
:type base_url: str
65+
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
66+
Retry-After header is present.
6767
"""
6868

6969
def __init__(
7070
self,
71-
credential, # type: "TokenCredential"
72-
subscription_id, # type: str
73-
base_url=None, # type: Optional[str]
74-
**kwargs # type: Any
75-
):
76-
# type: (...) -> None
77-
if not base_url:
78-
base_url = 'https://management.azure.com'
79-
self._config = HealthcareApisManagementClientConfiguration(credential, subscription_id, **kwargs)
71+
credential: "TokenCredential",
72+
subscription_id: str,
73+
base_url: str = "https://management.azure.com",
74+
**kwargs: Any
75+
) -> None:
76+
self._config = HealthcareApisManagementClientConfiguration(credential=credential, subscription_id=subscription_id, **kwargs)
8077
self._client = ARMPipelineClient(base_url=base_url, config=self._config, **kwargs)
8178

8279
client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)}
8380
self._serialize = Serializer(client_models)
84-
self._serialize.client_side_validation = False
8581
self._deserialize = Deserializer(client_models)
86-
87-
self.services = ServicesOperations(
88-
self._client, self._config, self._serialize, self._deserialize)
89-
self.private_endpoint_connections = PrivateEndpointConnectionsOperations(
90-
self._client, self._config, self._serialize, self._deserialize)
91-
self.private_link_resources = PrivateLinkResourcesOperations(
92-
self._client, self._config, self._serialize, self._deserialize)
93-
self.workspaces = WorkspacesOperations(
94-
self._client, self._config, self._serialize, self._deserialize)
95-
self.dicom_services = DicomServicesOperations(
96-
self._client, self._config, self._serialize, self._deserialize)
97-
self.iot_connectors = IotConnectorsOperations(
98-
self._client, self._config, self._serialize, self._deserialize)
99-
self.fhir_destinations = FhirDestinationsOperations(
100-
self._client, self._config, self._serialize, self._deserialize)
101-
self.iot_connector_fhir_destination = IotConnectorFhirDestinationOperations(
102-
self._client, self._config, self._serialize, self._deserialize)
103-
self.fhir_services = FhirServicesOperations(
104-
self._client, self._config, self._serialize, self._deserialize)
105-
self.operations = Operations(
106-
self._client, self._config, self._serialize, self._deserialize)
107-
self.operation_results = OperationResultsOperations(
108-
self._client, self._config, self._serialize, self._deserialize)
109-
110-
def _send_request(self, http_request, **kwargs):
111-
# type: (HttpRequest, Any) -> HttpResponse
82+
self._serialize.client_side_validation = False
83+
self.services = ServicesOperations(self._client, self._config, self._serialize, self._deserialize)
84+
self.private_endpoint_connections = PrivateEndpointConnectionsOperations(self._client, self._config, self._serialize, self._deserialize)
85+
self.private_link_resources = PrivateLinkResourcesOperations(self._client, self._config, self._serialize, self._deserialize)
86+
self.workspaces = WorkspacesOperations(self._client, self._config, self._serialize, self._deserialize)
87+
self.dicom_services = DicomServicesOperations(self._client, self._config, self._serialize, self._deserialize)
88+
self.iot_connectors = IotConnectorsOperations(self._client, self._config, self._serialize, self._deserialize)
89+
self.fhir_destinations = FhirDestinationsOperations(self._client, self._config, self._serialize, self._deserialize)
90+
self.iot_connector_fhir_destination = IotConnectorFhirDestinationOperations(self._client, self._config, self._serialize, self._deserialize)
91+
self.fhir_services = FhirServicesOperations(self._client, self._config, self._serialize, self._deserialize)
92+
self.workspace_private_endpoint_connections = WorkspacePrivateEndpointConnectionsOperations(self._client, self._config, self._serialize, self._deserialize)
93+
self.workspace_private_link_resources = WorkspacePrivateLinkResourcesOperations(self._client, self._config, self._serialize, self._deserialize)
94+
self.operations = Operations(self._client, self._config, self._serialize, self._deserialize)
95+
self.operation_results = OperationResultsOperations(self._client, self._config, self._serialize, self._deserialize)
96+
97+
98+
def _send_request(
99+
self,
100+
request, # type: HttpRequest
101+
**kwargs: Any
102+
) -> HttpResponse:
112103
"""Runs the network request through the client's chained policies.
113104
114-
:param http_request: The network request you want to make. Required.
115-
:type http_request: ~azure.core.pipeline.transport.HttpRequest
116-
:keyword bool stream: Whether the response payload will be streamed. Defaults to True.
105+
>>> from azure.core.rest import HttpRequest
106+
>>> request = HttpRequest("GET", "https://www.example.org/")
107+
<HttpRequest [GET], url: 'https://www.example.org/'>
108+
>>> response = client._send_request(request)
109+
<HttpResponse: 200 OK>
110+
111+
For more information on this code flow, see https://aka.ms/azsdk/python/protocol/quickstart
112+
113+
:param request: The network request you want to make. Required.
114+
:type request: ~azure.core.rest.HttpRequest
115+
:keyword bool stream: Whether the response payload will be streamed. Defaults to False.
117116
:return: The response of your network call. Does not do error handling on your response.
118-
:rtype: ~azure.core.pipeline.transport.HttpResponse
117+
:rtype: ~azure.core.rest.HttpResponse
119118
"""
120-
path_format_arguments = {
121-
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'),
122-
}
123-
http_request.url = self._client.format_url(http_request.url, **path_format_arguments)
124-
stream = kwargs.pop("stream", True)
125-
pipeline_response = self._client._pipeline.run(http_request, stream=stream, **kwargs)
126-
return pipeline_response.http_response
119+
120+
request_copy = deepcopy(request)
121+
request_copy.url = self._client.format_url(request_copy.url)
122+
return self._client.send_request(request_copy, **kwargs)
127123

128124
def close(self):
129125
# type: () -> None

0 commit comments

Comments
 (0)