Skip to content

Commit 646b765

Browse files
author
SDK Automation
committed
Generated from ba57d745611c5e95fd37dc090e5d31edd4d3511a
Updated tags
1 parent d430f6d commit 646b765

14 files changed

+1570
-129
lines changed
Lines changed: 11 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,21 @@
1-
## Microsoft Azure SDK for Python
1+
# Microsoft Azure SDK for Python
22

33
This is the Microsoft Azure MyService Management Client Library.
4+
This package has been tested with Python 2.7, 3.5, 3.6, 3.7 and 3.8.
5+
For a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).
46

5-
Azure Resource Manager (ARM) is the next generation of management APIs
6-
that replace the old Azure Service Management (ASM).
77

8-
This package has been tested with Python 2.7, 3.5, 3.6 and 3.7.
8+
# Usage
99

10-
For the older Azure Service Management (ASM) libraries, see
11-
[azure-servicemanagement-legacy](https://pypi.python.org/pypi/azure-servicemanagement-legacy)
12-
library.
10+
For code examples, see [MyService Management](https://docs.microsoft.com/python/api/overview/azure/)
11+
on docs.microsoft.com.
1312

14-
For a more complete set of Azure libraries, see the
15-
[azure sdk python release](https://aka.ms/azsdk/python/all).
1613

17-
## Usage
14+
# Provide Feedback
1815

19-
For code examples, see [MyService
20-
Management](https://docs.microsoft.com/python/api/overview/azure/) on
21-
docs.microsoft.com.
22-
23-
## Provide Feedback
24-
25-
If you encounter any bugs or have suggestions, please file an issue in
26-
the [Issues](https://github.com/Azure/azure-sdk-for-python/issues)
16+
If you encounter any bugs or have suggestions, please file an issue in the
17+
[Issues](https://github.com/Azure/azure-sdk-for-python/issues)
2718
section of the project.
2819

29-
![image](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-python%2Fazure-mgmt-healthcareapis%2FREADME.png)
20+
21+
![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-python%2Fazure-mgmt-healthcareapis%2FREADME.png)

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

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
from .operations import ServicesOperations
1717
from .operations import Operations
1818
from .operations import OperationResultsOperations
19+
from .operations import PrivateEndpointConnectionsOperations
20+
from .operations import PrivateLinkResourcesOperations
1921
from . import models
2022

2123

@@ -31,6 +33,10 @@ class HealthcareApisManagementClient(SDKClient):
3133
:vartype operations: azure.mgmt.healthcareapis.operations.Operations
3234
:ivar operation_results: OperationResults operations
3335
:vartype operation_results: azure.mgmt.healthcareapis.operations.OperationResultsOperations
36+
:ivar private_endpoint_connections: PrivateEndpointConnections operations
37+
:vartype private_endpoint_connections: azure.mgmt.healthcareapis.operations.PrivateEndpointConnectionsOperations
38+
:ivar private_link_resources: PrivateLinkResources operations
39+
:vartype private_link_resources: azure.mgmt.healthcareapis.operations.PrivateLinkResourcesOperations
3440
3541
:param credentials: Credentials needed for the client to connect to Azure.
3642
:type credentials: :mod:`A msrestazure Credentials
@@ -47,7 +53,7 @@ def __init__(
4753
super(HealthcareApisManagementClient, self).__init__(self.config.credentials, self.config)
4854

4955
client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)}
50-
self.api_version = '2018-08-20-preview'
56+
self.api_version = '2020-03-30'
5157
self._serialize = Serializer(client_models)
5258
self._deserialize = Deserializer(client_models)
5359

@@ -57,3 +63,7 @@ def __init__(
5763
self._client, self.config, self._serialize, self._deserialize)
5864
self.operation_results = OperationResultsOperations(
5965
self._client, self.config, self._serialize, self._deserialize)
66+
self.private_endpoint_connections = PrivateEndpointConnectionsOperations(
67+
self._client, self.config, self._serialize, self._deserialize)
68+
self.private_link_resources = PrivateLinkResourcesOperations(
69+
self._client, self.config, self._serialize, self._deserialize)

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

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,66 +10,109 @@
1010
# --------------------------------------------------------------------------
1111

1212
try:
13+
from ._models_py3 import AzureEntityResource
1314
from ._models_py3 import CheckNameAvailabilityParameters
1415
from ._models_py3 import ErrorDetails, ErrorDetailsException
1516
from ._models_py3 import ErrorDetailsInternal
1617
from ._models_py3 import Operation
1718
from ._models_py3 import OperationDisplay
1819
from ._models_py3 import OperationResultsDescription
20+
from ._models_py3 import PrivateEndpoint
21+
from ._models_py3 import PrivateEndpointConnection
22+
from ._models_py3 import PrivateLinkResource
23+
from ._models_py3 import PrivateLinkResourceListResult
24+
from ._models_py3 import PrivateLinkServiceConnectionState
25+
from ._models_py3 import ProxyResource
1926
from ._models_py3 import Resource
2027
from ._models_py3 import ServiceAccessPolicyEntry
2128
from ._models_py3 import ServiceAuthenticationConfigurationInfo
2229
from ._models_py3 import ServiceCorsConfigurationInfo
2330
from ._models_py3 import ServiceCosmosDbConfigurationInfo
31+
from ._models_py3 import ServiceExportConfigurationInfo
2432
from ._models_py3 import ServicesDescription
2533
from ._models_py3 import ServicesNameAvailabilityInfo
2634
from ._models_py3 import ServicesPatchDescription
2735
from ._models_py3 import ServicesProperties
36+
from ._models_py3 import ServicesResource
37+
from ._models_py3 import ServicesResourceIdentity
38+
from ._models_py3 import TrackedResource
2839
except (SyntaxError, ImportError):
40+
from ._models import AzureEntityResource
2941
from ._models import CheckNameAvailabilityParameters
3042
from ._models import ErrorDetails, ErrorDetailsException
3143
from ._models import ErrorDetailsInternal
3244
from ._models import Operation
3345
from ._models import OperationDisplay
3446
from ._models import OperationResultsDescription
47+
from ._models import PrivateEndpoint
48+
from ._models import PrivateEndpointConnection
49+
from ._models import PrivateLinkResource
50+
from ._models import PrivateLinkResourceListResult
51+
from ._models import PrivateLinkServiceConnectionState
52+
from ._models import ProxyResource
3553
from ._models import Resource
3654
from ._models import ServiceAccessPolicyEntry
3755
from ._models import ServiceAuthenticationConfigurationInfo
3856
from ._models import ServiceCorsConfigurationInfo
3957
from ._models import ServiceCosmosDbConfigurationInfo
58+
from ._models import ServiceExportConfigurationInfo
4059
from ._models import ServicesDescription
4160
from ._models import ServicesNameAvailabilityInfo
4261
from ._models import ServicesPatchDescription
4362
from ._models import ServicesProperties
63+
from ._models import ServicesResource
64+
from ._models import ServicesResourceIdentity
65+
from ._models import TrackedResource
4466
from ._paged_models import OperationPaged
67+
from ._paged_models import PrivateEndpointConnectionPaged
4568
from ._paged_models import ServicesDescriptionPaged
4669
from ._healthcare_apis_management_client_enums import (
4770
ProvisioningState,
71+
PrivateEndpointServiceConnectionStatus,
72+
PrivateEndpointConnectionProvisioningState,
73+
PublicNetworkAccess,
4874
Kind,
75+
ManagedServiceIdentityType,
4976
ServiceNameUnavailabilityReason,
5077
OperationResultStatus,
5178
)
5279

5380
__all__ = [
81+
'AzureEntityResource',
5482
'CheckNameAvailabilityParameters',
5583
'ErrorDetails', 'ErrorDetailsException',
5684
'ErrorDetailsInternal',
5785
'Operation',
5886
'OperationDisplay',
5987
'OperationResultsDescription',
88+
'PrivateEndpoint',
89+
'PrivateEndpointConnection',
90+
'PrivateLinkResource',
91+
'PrivateLinkResourceListResult',
92+
'PrivateLinkServiceConnectionState',
93+
'ProxyResource',
6094
'Resource',
6195
'ServiceAccessPolicyEntry',
6296
'ServiceAuthenticationConfigurationInfo',
6397
'ServiceCorsConfigurationInfo',
6498
'ServiceCosmosDbConfigurationInfo',
99+
'ServiceExportConfigurationInfo',
65100
'ServicesDescription',
66101
'ServicesNameAvailabilityInfo',
67102
'ServicesPatchDescription',
68103
'ServicesProperties',
104+
'ServicesResource',
105+
'ServicesResourceIdentity',
106+
'TrackedResource',
69107
'ServicesDescriptionPaged',
70108
'OperationPaged',
109+
'PrivateEndpointConnectionPaged',
71110
'ProvisioningState',
111+
'PrivateEndpointServiceConnectionStatus',
112+
'PrivateEndpointConnectionProvisioningState',
113+
'PublicNetworkAccess',
72114
'Kind',
115+
'ManagedServiceIdentityType',
73116
'ServiceNameUnavailabilityReason',
74117
'OperationResultStatus',
75118
]

sdk/healthcareapis/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/models/_healthcare_apis_management_client_enums.py

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,40 @@ class ProvisioningState(str, Enum):
2525
deprovisioned = "Deprovisioned"
2626

2727

28+
class PrivateEndpointServiceConnectionStatus(str, Enum):
29+
30+
pending = "Pending"
31+
approved = "Approved"
32+
rejected = "Rejected"
33+
34+
35+
class PrivateEndpointConnectionProvisioningState(str, Enum):
36+
37+
succeeded = "Succeeded"
38+
creating = "Creating"
39+
deleting = "Deleting"
40+
failed = "Failed"
41+
42+
43+
class PublicNetworkAccess(str, Enum):
44+
45+
enabled = "Enabled"
46+
disabled = "Disabled"
47+
48+
2849
class Kind(str, Enum):
2950

3051
fhir = "fhir"
3152
fhir_stu3 = "fhir-Stu3"
3253
fhir_r4 = "fhir-R4"
3354

3455

56+
class ManagedServiceIdentityType(str, Enum):
57+
58+
system_assigned = "SystemAssigned"
59+
none = "None"
60+
61+
3562
class ServiceNameUnavailabilityReason(str, Enum):
3663

3764
invalid = "Invalid"

0 commit comments

Comments
 (0)