From f8d54d7a93f76953cbbef959ea27f304b9d1a8a0 Mon Sep 17 00:00:00 2001 From: Azure SDK for Python bot Date: Tue, 1 May 2018 18:23:46 +0000 Subject: [PATCH] Generated from be589eb16068e9b4e29bbf091818bdf25b61074b Paths to examples fixed --- .../azure/mgmt/apimanagement/api_management_client.py | 6 +++--- .../azure/mgmt/apimanagement/models/api_contract_py3.py | 2 +- .../mgmt/apimanagement/models/api_release_contract_py3.py | 2 +- .../apimanagement/models/api_version_set_contract_py3.py | 2 +- .../models/authorization_server_contract_py3.py | 2 +- .../models/authorization_server_update_contract_py3.py | 2 +- .../azure/mgmt/apimanagement/models/backend_contract_py3.py | 2 +- .../apimanagement/models/backend_reconnect_contract_py3.py | 2 +- .../mgmt/apimanagement/models/certificate_contract_py3.py | 2 +- .../mgmt/apimanagement/models/diagnostic_contract_py3.py | 2 +- .../apimanagement/models/email_template_contract_py3.py | 2 +- .../azure/mgmt/apimanagement/models/group_contract_py3.py | 2 +- .../apimanagement/models/identity_provider_contract_py3.py | 2 +- .../apimanagement/models/issue_attachment_contract_py3.py | 2 +- .../mgmt/apimanagement/models/issue_comment_contract_py3.py | 2 +- .../azure/mgmt/apimanagement/models/issue_contract_py3.py | 2 +- .../azure/mgmt/apimanagement/models/logger_contract_py3.py | 2 +- .../mgmt/apimanagement/models/notification_contract_py3.py | 2 +- .../models/openid_connect_provider_contract_py3.py | 2 +- .../mgmt/apimanagement/models/operation_contract_py3.py | 2 +- .../azure/mgmt/apimanagement/models/policy_contract_py3.py | 2 +- .../apimanagement/models/portal_delegation_settings_py3.py | 2 +- .../mgmt/apimanagement/models/portal_signin_settings_py3.py | 2 +- .../mgmt/apimanagement/models/portal_signup_settings_py3.py | 2 +- .../azure/mgmt/apimanagement/models/product_contract_py3.py | 2 +- .../mgmt/apimanagement/models/property_contract_py3.py | 2 +- .../apimanagement/models/recipient_email_contract_py3.py | 2 +- .../apimanagement/models/recipient_user_contract_py3.py | 2 +- .../azure/mgmt/apimanagement/models/schema_contract_py3.py | 2 +- .../mgmt/apimanagement/models/subscription_contract_py3.py | 2 +- .../azure/mgmt/apimanagement/models/tag_contract_py3.py | 2 +- .../apimanagement/models/tag_description_contract_py3.py | 2 +- .../azure/mgmt/apimanagement/models/user_contract_py3.py | 2 +- 33 files changed, 35 insertions(+), 35 deletions(-) diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/api_management_client.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/api_management_client.py index 095ac81553a5..8fbad986b5e9 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/api_management_client.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/api_management_client.py @@ -9,7 +9,7 @@ # regenerated. # -------------------------------------------------------------------------- -from msrest.service_client import ServiceClient +from msrest.service_client import SDKClient from msrest import Serializer, Deserializer from msrestazure import AzureConfiguration from .version import VERSION @@ -109,7 +109,7 @@ def __init__( self.subscription_id = subscription_id -class ApiManagementClient(object): +class ApiManagementClient(SDKClient): """ApiManagement Client :ivar config: Configuration for client. @@ -248,7 +248,7 @@ def __init__( self, credentials, subscription_id, base_url=None): self.config = ApiManagementClientConfiguration(credentials, subscription_id, base_url) - self._client = ServiceClient(self.config.credentials, self.config) + super(ApiManagementClient, 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-01-01' diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/api_contract_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/api_contract_py3.py index 7d16c5ef9d28..6bce137bf551 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/api_contract_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/api_contract_py3.py @@ -104,7 +104,7 @@ class ApiContract(Resource): } def __init__(self, *, path: str, description: str=None, authentication_settings=None, subscription_key_parameter_names=None, api_type=None, api_revision: str=None, api_version: str=None, api_version_set_id: str=None, display_name: str=None, service_url: str=None, protocols=None, api_version_set=None, **kwargs) -> None: - super(ApiContract, self).__init__(, **kwargs) + super(ApiContract, self).__init__(**kwargs) self.description = description self.authentication_settings = authentication_settings self.subscription_key_parameter_names = subscription_key_parameter_names diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/api_release_contract_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/api_release_contract_py3.py index ec86e723b6d1..505fddf8ca67 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/api_release_contract_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/api_release_contract_py3.py @@ -55,7 +55,7 @@ class ApiReleaseContract(Resource): } def __init__(self, *, api_id: str=None, notes: str=None, **kwargs) -> None: - super(ApiReleaseContract, self).__init__(, **kwargs) + super(ApiReleaseContract, self).__init__(**kwargs) self.api_id = api_id self.created_date_time = None self.updated_date_time = None diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/api_version_set_contract_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/api_version_set_contract_py3.py index e85093618db0..53e5e813b7d3 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/api_version_set_contract_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/api_version_set_contract_py3.py @@ -65,7 +65,7 @@ class ApiVersionSetContract(Resource): } def __init__(self, *, display_name: str, versioning_scheme, description: str=None, version_query_name: str=None, version_header_name: str=None, **kwargs) -> None: - super(ApiVersionSetContract, self).__init__(, **kwargs) + super(ApiVersionSetContract, self).__init__(**kwargs) self.description = description self.version_query_name = version_query_name self.version_header_name = version_header_name diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/authorization_server_contract_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/authorization_server_contract_py3.py index 4a89ef4236b6..12f0102bb0fb 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/authorization_server_contract_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/authorization_server_contract_py3.py @@ -123,7 +123,7 @@ class AuthorizationServerContract(Resource): } def __init__(self, *, display_name: str, client_registration_endpoint: str, authorization_endpoint: str, grant_types, client_id: str, description: str=None, authorization_methods=None, client_authentication_method=None, token_body_parameters=None, token_endpoint: str=None, support_state: bool=None, default_scope: str=None, bearer_token_sending_methods=None, client_secret: str=None, resource_owner_username: str=None, resource_owner_password: str=None, **kwargs) -> None: - super(AuthorizationServerContract, self).__init__(, **kwargs) + super(AuthorizationServerContract, self).__init__(**kwargs) self.description = description self.authorization_methods = authorization_methods self.client_authentication_method = client_authentication_method diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/authorization_server_update_contract_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/authorization_server_update_contract_py3.py index 87f6ed1e6e3f..48cf98d0c3a5 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/authorization_server_update_contract_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/authorization_server_update_contract_py3.py @@ -117,7 +117,7 @@ class AuthorizationServerUpdateContract(Resource): } def __init__(self, *, description: str=None, authorization_methods=None, client_authentication_method=None, token_body_parameters=None, token_endpoint: str=None, support_state: bool=None, default_scope: str=None, bearer_token_sending_methods=None, client_secret: str=None, resource_owner_username: str=None, resource_owner_password: str=None, display_name: str=None, client_registration_endpoint: str=None, authorization_endpoint: str=None, grant_types=None, client_id: str=None, **kwargs) -> None: - super(AuthorizationServerUpdateContract, self).__init__(, **kwargs) + super(AuthorizationServerUpdateContract, self).__init__(**kwargs) self.description = description self.authorization_methods = authorization_methods self.client_authentication_method = client_authentication_method diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/backend_contract_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/backend_contract_py3.py index 12871ee6f841..034927260453 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/backend_contract_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/backend_contract_py3.py @@ -77,7 +77,7 @@ class BackendContract(Resource): } def __init__(self, *, url: str, protocol, title: str=None, description: str=None, resource_id: str=None, properties=None, credentials=None, proxy=None, tls=None, **kwargs) -> None: - super(BackendContract, self).__init__(, **kwargs) + super(BackendContract, self).__init__(**kwargs) self.title = title self.description = description self.resource_id = resource_id diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/backend_reconnect_contract_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/backend_reconnect_contract_py3.py index 0c8c8c8d6044..f871cad6948d 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/backend_reconnect_contract_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/backend_reconnect_contract_py3.py @@ -43,5 +43,5 @@ class BackendReconnectContract(Resource): } def __init__(self, *, after=None, **kwargs) -> None: - super(BackendReconnectContract, self).__init__(, **kwargs) + super(BackendReconnectContract, self).__init__(**kwargs) self.after = after diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/certificate_contract_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/certificate_contract_py3.py index 53aac0c14728..86efedbe9e68 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/certificate_contract_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/certificate_contract_py3.py @@ -55,7 +55,7 @@ class CertificateContract(Resource): } def __init__(self, *, subject: str, thumbprint: str, expiration_date, **kwargs) -> None: - super(CertificateContract, self).__init__(, **kwargs) + super(CertificateContract, self).__init__(**kwargs) self.subject = subject self.thumbprint = thumbprint self.expiration_date = expiration_date diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/diagnostic_contract_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/diagnostic_contract_py3.py index d7ce1549a53a..d99b08f47534 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/diagnostic_contract_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/diagnostic_contract_py3.py @@ -46,5 +46,5 @@ class DiagnosticContract(Resource): } def __init__(self, *, enabled: bool, **kwargs) -> None: - super(DiagnosticContract, self).__init__(, **kwargs) + super(DiagnosticContract, self).__init__(**kwargs) self.enabled = enabled diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/email_template_contract_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/email_template_contract_py3.py index abfc23d34841..19a2117a761c 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/email_template_contract_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/email_template_contract_py3.py @@ -65,7 +65,7 @@ class EmailTemplateContract(Resource): } def __init__(self, *, subject: str, body: str, title: str=None, description: str=None, parameters=None, **kwargs) -> None: - super(EmailTemplateContract, self).__init__(, **kwargs) + super(EmailTemplateContract, self).__init__(**kwargs) self.subject = subject self.body = body self.title = title diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/group_contract_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/group_contract_py3.py index ca4dd4c57b4e..ff03e70f625f 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/group_contract_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/group_contract_py3.py @@ -65,7 +65,7 @@ class GroupContract(Resource): } def __init__(self, *, display_name: str, description: str=None, group_contract_type=None, external_id: str=None, **kwargs) -> None: - super(GroupContract, self).__init__(, **kwargs) + super(GroupContract, self).__init__(**kwargs) self.display_name = display_name self.description = description self.built_in = None diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/identity_provider_contract_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/identity_provider_contract_py3.py index 61d0050f11d6..0e98fd010e43 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/identity_provider_contract_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/identity_provider_contract_py3.py @@ -85,7 +85,7 @@ class IdentityProviderContract(Resource): } def __init__(self, *, client_id: str, client_secret: str, identity_provider_contract_type=None, allowed_tenants=None, signup_policy_name: str=None, signin_policy_name: str=None, profile_editing_policy_name: str=None, password_reset_policy_name: str=None, **kwargs) -> None: - super(IdentityProviderContract, self).__init__(, **kwargs) + super(IdentityProviderContract, self).__init__(**kwargs) self.identity_provider_contract_type = identity_provider_contract_type self.allowed_tenants = allowed_tenants self.signup_policy_name = signup_policy_name diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/issue_attachment_contract_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/issue_attachment_contract_py3.py index 0bc78a4daea8..0e45bbcc4296 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/issue_attachment_contract_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/issue_attachment_contract_py3.py @@ -55,7 +55,7 @@ class IssueAttachmentContract(Resource): } def __init__(self, *, title: str, content_format: str, content: str, **kwargs) -> None: - super(IssueAttachmentContract, self).__init__(, **kwargs) + super(IssueAttachmentContract, self).__init__(**kwargs) self.title = title self.content_format = content_format self.content = content diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/issue_comment_contract_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/issue_comment_contract_py3.py index e6d3887b4a92..9c73ecc0950b 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/issue_comment_contract_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/issue_comment_contract_py3.py @@ -53,7 +53,7 @@ class IssueCommentContract(Resource): } def __init__(self, *, text: str, user_id: str, created_date=None, **kwargs) -> None: - super(IssueCommentContract, self).__init__(, **kwargs) + super(IssueCommentContract, self).__init__(**kwargs) self.text = text self.created_date = created_date self.user_id = user_id diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/issue_contract_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/issue_contract_py3.py index fc3d86fc1e3f..a3dee3306e3f 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/issue_contract_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/issue_contract_py3.py @@ -65,7 +65,7 @@ class IssueContract(Resource): } def __init__(self, *, title: str, description: str, user_id: str, created_date=None, state=None, api_id: str=None, **kwargs) -> None: - super(IssueContract, self).__init__(, **kwargs) + super(IssueContract, self).__init__(**kwargs) self.title = title self.description = description self.created_date = created_date diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/logger_contract_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/logger_contract_py3.py index 9e7321aa2c91..7a00a541d06e 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/logger_contract_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/logger_contract_py3.py @@ -60,7 +60,7 @@ class LoggerContract(Resource): } def __init__(self, *, logger_type, credentials, description: str=None, is_buffered: bool=None, **kwargs) -> None: - super(LoggerContract, self).__init__(, **kwargs) + super(LoggerContract, self).__init__(**kwargs) self.logger_type = logger_type self.description = description self.credentials = credentials diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/notification_contract_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/notification_contract_py3.py index 102452a02849..7c65700cd81a 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/notification_contract_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/notification_contract_py3.py @@ -52,7 +52,7 @@ class NotificationContract(Resource): } def __init__(self, *, title: str, description: str=None, recipients=None, **kwargs) -> None: - super(NotificationContract, self).__init__(, **kwargs) + super(NotificationContract, self).__init__(**kwargs) self.title = title self.description = description self.recipients = recipients diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/openid_connect_provider_contract_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/openid_connect_provider_contract_py3.py index 7afadba32341..b6ce0c8e9304 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/openid_connect_provider_contract_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/openid_connect_provider_contract_py3.py @@ -61,7 +61,7 @@ class OpenidConnectProviderContract(Resource): } def __init__(self, *, display_name: str, metadata_endpoint: str, client_id: str, description: str=None, client_secret: str=None, **kwargs) -> None: - super(OpenidConnectProviderContract, self).__init__(, **kwargs) + super(OpenidConnectProviderContract, self).__init__(**kwargs) self.display_name = display_name self.description = description self.metadata_endpoint = metadata_endpoint diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/operation_contract_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/operation_contract_py3.py index 225b02348be6..3bf40436598c 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/operation_contract_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/operation_contract_py3.py @@ -74,7 +74,7 @@ class OperationContract(Resource): } def __init__(self, *, display_name: str, method: str, url_template: str, template_parameters=None, description: str=None, request=None, responses=None, policies: str=None, **kwargs) -> None: - super(OperationContract, self).__init__(, **kwargs) + super(OperationContract, self).__init__(**kwargs) self.template_parameters = template_parameters self.description = description self.request = request diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/policy_contract_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/policy_contract_py3.py index d56fa1e6ac2f..1c1842d9d2a3 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/policy_contract_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/policy_contract_py3.py @@ -52,6 +52,6 @@ class PolicyContract(Resource): } def __init__(self, *, policy_content: str, content_format="xml", **kwargs) -> None: - super(PolicyContract, self).__init__(, **kwargs) + super(PolicyContract, self).__init__(**kwargs) self.policy_content = policy_content self.content_format = content_format diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/portal_delegation_settings_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/portal_delegation_settings_py3.py index fd155ae3833a..37ac024765ce 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/portal_delegation_settings_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/portal_delegation_settings_py3.py @@ -54,7 +54,7 @@ class PortalDelegationSettings(Resource): } def __init__(self, *, url: str=None, validation_key: str=None, subscriptions=None, user_registration=None, **kwargs) -> None: - super(PortalDelegationSettings, self).__init__(, **kwargs) + super(PortalDelegationSettings, self).__init__(**kwargs) self.url = url self.validation_key = validation_key self.subscriptions = subscriptions diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/portal_signin_settings_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/portal_signin_settings_py3.py index 14cf69f08394..7e507a23ad32 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/portal_signin_settings_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/portal_signin_settings_py3.py @@ -42,5 +42,5 @@ class PortalSigninSettings(Resource): } def __init__(self, *, enabled: bool=None, **kwargs) -> None: - super(PortalSigninSettings, self).__init__(, **kwargs) + super(PortalSigninSettings, self).__init__(**kwargs) self.enabled = enabled diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/portal_signup_settings_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/portal_signup_settings_py3.py index 916e500667f9..14ed9919c000 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/portal_signup_settings_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/portal_signup_settings_py3.py @@ -46,6 +46,6 @@ class PortalSignupSettings(Resource): } def __init__(self, *, enabled: bool=None, terms_of_service=None, **kwargs) -> None: - super(PortalSignupSettings, self).__init__(, **kwargs) + super(PortalSignupSettings, self).__init__(**kwargs) self.enabled = enabled self.terms_of_service = terms_of_service diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/product_contract_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/product_contract_py3.py index 7234b3836868..1eb6a68eb3c1 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/product_contract_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/product_contract_py3.py @@ -83,7 +83,7 @@ class ProductContract(Resource): } def __init__(self, *, display_name: str, description: str=None, terms: str=None, subscription_required: bool=None, approval_required: bool=None, subscriptions_limit: int=None, state=None, **kwargs) -> None: - super(ProductContract, self).__init__(, **kwargs) + super(ProductContract, self).__init__(**kwargs) self.description = description self.terms = terms self.subscription_required = subscription_required diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/property_contract_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/property_contract_py3.py index 2e60eb7ebcd0..516b40892228 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/property_contract_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/property_contract_py3.py @@ -60,7 +60,7 @@ class PropertyContract(Resource): } def __init__(self, *, display_name: str, value: str, tags=None, secret: bool=None, **kwargs) -> None: - super(PropertyContract, self).__init__(, **kwargs) + super(PropertyContract, self).__init__(**kwargs) self.tags = tags self.secret = secret self.display_name = display_name diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/recipient_email_contract_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/recipient_email_contract_py3.py index aafd9c5572f0..0cb59412102c 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/recipient_email_contract_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/recipient_email_contract_py3.py @@ -42,5 +42,5 @@ class RecipientEmailContract(Resource): } def __init__(self, *, email: str=None, **kwargs) -> None: - super(RecipientEmailContract, self).__init__(, **kwargs) + super(RecipientEmailContract, self).__init__(**kwargs) self.email = email diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/recipient_user_contract_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/recipient_user_contract_py3.py index 3e457976f76f..b9202491358f 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/recipient_user_contract_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/recipient_user_contract_py3.py @@ -42,5 +42,5 @@ class RecipientUserContract(Resource): } def __init__(self, *, user_id: str=None, **kwargs) -> None: - super(RecipientUserContract, self).__init__(, **kwargs) + super(RecipientUserContract, self).__init__(**kwargs) self.user_id = user_id diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/schema_contract_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/schema_contract_py3.py index 1bf2ed19ad71..509f4fc9b37e 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/schema_contract_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/schema_contract_py3.py @@ -51,6 +51,6 @@ class SchemaContract(Resource): } def __init__(self, *, content_type: str, value: str=None, **kwargs) -> None: - super(SchemaContract, self).__init__(, **kwargs) + super(SchemaContract, self).__init__(**kwargs) self.content_type = content_type self.value = value diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/subscription_contract_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/subscription_contract_py3.py index af2df80f58ea..334da97ad5d0 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/subscription_contract_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/subscription_contract_py3.py @@ -114,7 +114,7 @@ class SubscriptionContract(Resource): } def __init__(self, *, user_id: str, product_id: str, state, primary_key: str, secondary_key: str, display_name: str=None, start_date=None, expiration_date=None, end_date=None, notification_date=None, state_comment: str=None, **kwargs) -> None: - super(SubscriptionContract, self).__init__(, **kwargs) + super(SubscriptionContract, self).__init__(**kwargs) self.user_id = user_id self.product_id = product_id self.display_name = display_name diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/tag_contract_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/tag_contract_py3.py index 09e7c7880dec..fb91c3eb73ce 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/tag_contract_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/tag_contract_py3.py @@ -45,5 +45,5 @@ class TagContract(Resource): } def __init__(self, *, display_name: str, **kwargs) -> None: - super(TagContract, self).__init__(, **kwargs) + super(TagContract, self).__init__(**kwargs) self.display_name = display_name diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/tag_description_contract_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/tag_description_contract_py3.py index 27bffbed87e5..12d7707c2adb 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/tag_description_contract_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/tag_description_contract_py3.py @@ -55,7 +55,7 @@ class TagDescriptionContract(Resource): } def __init__(self, *, description: str=None, external_docs_url: str=None, external_docs_description: str=None, display_name: str=None, **kwargs) -> None: - super(TagDescriptionContract, self).__init__(, **kwargs) + super(TagDescriptionContract, self).__init__(**kwargs) self.description = description self.external_docs_url = external_docs_url self.external_docs_description = external_docs_description diff --git a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/user_contract_py3.py b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/user_contract_py3.py index ce3909ac3acd..72ac42c66f20 100644 --- a/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/user_contract_py3.py +++ b/azure-mgmt-apimanagement/azure/mgmt/apimanagement/models/user_contract_py3.py @@ -73,7 +73,7 @@ class UserContract(Resource): } def __init__(self, *, state="active", note: str=None, first_name: str=None, last_name: str=None, email: str=None, registration_date=None, **kwargs) -> None: - super(UserContract, self).__init__(, **kwargs) + super(UserContract, self).__init__(**kwargs) self.state = state self.note = note self.identities = None