-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generated from 861e08e366cff1f1318a69d39841f25bee90c963 (#5715)
Merge branch 'master' into dev-healthcareapis-Microsoft.HealthcareApis-2018-08-20-preview
- Loading branch information
1 parent
fc76536
commit f5f77d0
Showing
15 changed files
with
207 additions
and
260 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 0 additions & 46 deletions
46
sdk/azure-mgmt-healthcareapis/azure/mgmt/healthcareapis/models/move_resources_parameters.py
This file was deleted.
Oops, something went wrong.
46 changes: 0 additions & 46 deletions
46
...ure-mgmt-healthcareapis/azure/mgmt/healthcareapis/models/move_resources_parameters_py3.py
This file was deleted.
Oops, something went wrong.
36 changes: 36 additions & 0 deletions
36
...lthcareapis/azure/mgmt/healthcareapis/models/service_authentication_configuration_info.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# coding=utf-8 | ||
# -------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. See License.txt in the project root for | ||
# license information. | ||
# | ||
# Code generated by Microsoft (R) AutoRest Code Generator. | ||
# Changes may cause incorrect behavior and will be lost if the code is | ||
# regenerated. | ||
# -------------------------------------------------------------------------- | ||
|
||
from msrest.serialization import Model | ||
|
||
|
||
class ServiceAuthenticationConfigurationInfo(Model): | ||
"""Authentication configuration information. | ||
:param authority: The authority url for the service | ||
:type authority: str | ||
:param audience: The audience url for the service | ||
:type audience: str | ||
:param smart_proxy_enabled: If the SMART on FHIR proxy is enabled | ||
:type smart_proxy_enabled: bool | ||
""" | ||
|
||
_attribute_map = { | ||
'authority': {'key': 'authority', 'type': 'str'}, | ||
'audience': {'key': 'audience', 'type': 'str'}, | ||
'smart_proxy_enabled': {'key': 'smartProxyEnabled', 'type': 'bool'}, | ||
} | ||
|
||
def __init__(self, **kwargs): | ||
super(ServiceAuthenticationConfigurationInfo, self).__init__(**kwargs) | ||
self.authority = kwargs.get('authority', None) | ||
self.audience = kwargs.get('audience', None) | ||
self.smart_proxy_enabled = kwargs.get('smart_proxy_enabled', None) |
36 changes: 36 additions & 0 deletions
36
...areapis/azure/mgmt/healthcareapis/models/service_authentication_configuration_info_py3.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# coding=utf-8 | ||
# -------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. See License.txt in the project root for | ||
# license information. | ||
# | ||
# Code generated by Microsoft (R) AutoRest Code Generator. | ||
# Changes may cause incorrect behavior and will be lost if the code is | ||
# regenerated. | ||
# -------------------------------------------------------------------------- | ||
|
||
from msrest.serialization import Model | ||
|
||
|
||
class ServiceAuthenticationConfigurationInfo(Model): | ||
"""Authentication configuration information. | ||
:param authority: The authority url for the service | ||
:type authority: str | ||
:param audience: The audience url for the service | ||
:type audience: str | ||
:param smart_proxy_enabled: If the SMART on FHIR proxy is enabled | ||
:type smart_proxy_enabled: bool | ||
""" | ||
|
||
_attribute_map = { | ||
'authority': {'key': 'authority', 'type': 'str'}, | ||
'audience': {'key': 'audience', 'type': 'str'}, | ||
'smart_proxy_enabled': {'key': 'smartProxyEnabled', 'type': 'bool'}, | ||
} | ||
|
||
def __init__(self, *, authority: str=None, audience: str=None, smart_proxy_enabled: bool=None, **kwargs) -> None: | ||
super(ServiceAuthenticationConfigurationInfo, self).__init__(**kwargs) | ||
self.authority = authority | ||
self.audience = audience | ||
self.smart_proxy_enabled = smart_proxy_enabled |
48 changes: 48 additions & 0 deletions
48
...e-mgmt-healthcareapis/azure/mgmt/healthcareapis/models/service_cors_configuration_info.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# coding=utf-8 | ||
# -------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. See License.txt in the project root for | ||
# license information. | ||
# | ||
# Code generated by Microsoft (R) AutoRest Code Generator. | ||
# Changes may cause incorrect behavior and will be lost if the code is | ||
# regenerated. | ||
# -------------------------------------------------------------------------- | ||
|
||
from msrest.serialization import Model | ||
|
||
|
||
class ServiceCorsConfigurationInfo(Model): | ||
"""The settings for the CORS configuration of the service instance. | ||
:param origins: The origins to be allowed via CORS. | ||
:type origins: list[str] | ||
:param headers: The headers to be allowed via CORS. | ||
:type headers: list[str] | ||
:param methods: The methods to be allowed via CORS. | ||
:type methods: list[str] | ||
:param max_age: The max age to be allowed via CORS. | ||
:type max_age: int | ||
:param allow_credentials: If credentials are allowed via CORS. | ||
:type allow_credentials: bool | ||
""" | ||
|
||
_validation = { | ||
'max_age': {'maximum': 99999, 'minimum': 0}, | ||
} | ||
|
||
_attribute_map = { | ||
'origins': {'key': 'origins', 'type': '[str]'}, | ||
'headers': {'key': 'headers', 'type': '[str]'}, | ||
'methods': {'key': 'methods', 'type': '[str]'}, | ||
'max_age': {'key': 'maxAge', 'type': 'int'}, | ||
'allow_credentials': {'key': 'allowCredentials', 'type': 'bool'}, | ||
} | ||
|
||
def __init__(self, **kwargs): | ||
super(ServiceCorsConfigurationInfo, self).__init__(**kwargs) | ||
self.origins = kwargs.get('origins', None) | ||
self.headers = kwargs.get('headers', None) | ||
self.methods = kwargs.get('methods', None) | ||
self.max_age = kwargs.get('max_age', None) | ||
self.allow_credentials = kwargs.get('allow_credentials', None) |
48 changes: 48 additions & 0 deletions
48
...mt-healthcareapis/azure/mgmt/healthcareapis/models/service_cors_configuration_info_py3.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# coding=utf-8 | ||
# -------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. See License.txt in the project root for | ||
# license information. | ||
# | ||
# Code generated by Microsoft (R) AutoRest Code Generator. | ||
# Changes may cause incorrect behavior and will be lost if the code is | ||
# regenerated. | ||
# -------------------------------------------------------------------------- | ||
|
||
from msrest.serialization import Model | ||
|
||
|
||
class ServiceCorsConfigurationInfo(Model): | ||
"""The settings for the CORS configuration of the service instance. | ||
:param origins: The origins to be allowed via CORS. | ||
:type origins: list[str] | ||
:param headers: The headers to be allowed via CORS. | ||
:type headers: list[str] | ||
:param methods: The methods to be allowed via CORS. | ||
:type methods: list[str] | ||
:param max_age: The max age to be allowed via CORS. | ||
:type max_age: int | ||
:param allow_credentials: If credentials are allowed via CORS. | ||
:type allow_credentials: bool | ||
""" | ||
|
||
_validation = { | ||
'max_age': {'maximum': 99999, 'minimum': 0}, | ||
} | ||
|
||
_attribute_map = { | ||
'origins': {'key': 'origins', 'type': '[str]'}, | ||
'headers': {'key': 'headers', 'type': '[str]'}, | ||
'methods': {'key': 'methods', 'type': '[str]'}, | ||
'max_age': {'key': 'maxAge', 'type': 'int'}, | ||
'allow_credentials': {'key': 'allowCredentials', 'type': 'bool'}, | ||
} | ||
|
||
def __init__(self, *, origins=None, headers=None, methods=None, max_age: int=None, allow_credentials: bool=None, **kwargs) -> None: | ||
super(ServiceCorsConfigurationInfo, self).__init__(**kwargs) | ||
self.origins = origins | ||
self.headers = headers | ||
self.methods = methods | ||
self.max_age = max_age | ||
self.allow_credentials = allow_credentials |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.