Source code for azure.mgmt.apimanagement.models.api_entity_base_contract_py3

# 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


[docs]class ApiEntityBaseContract(Model): """API base contract details. Variables are only populated by the server, and will be ignored when sending a request. :param description: Description of the API. May include HTML formatting tags. :type description: str :param authentication_settings: Collection of authentication settings included into this API. :type authentication_settings: ~azure.mgmt.apimanagement.models.AuthenticationSettingsContract :param subscription_key_parameter_names: Protocols over which API is made available. :type subscription_key_parameter_names: ~azure.mgmt.apimanagement.models.SubscriptionKeyParameterNamesContract :param api_type: Type of API. Possible values include: 'http', 'soap' :type api_type: str or ~azure.mgmt.apimanagement.models.ApiType :param api_revision: Describes the Revision of the Api. If no value is provided, default revision 1 is created :type api_revision: str :param api_version: Indicates the Version identifier of the API if the API is versioned :type api_version: str :param is_current: Indicates if API revision is current api revision. :type is_current: bool :ivar is_online: Indicates if API revision is accessible via the gateway. :vartype is_online: bool :param api_revision_description: Description of the Api Revision. :type api_revision_description: str :param api_version_description: Description of the Api Version. :type api_version_description: str :param api_version_set_id: A resource identifier for the related ApiVersionSet. :type api_version_set_id: str :param subscription_required: Specifies whether an API or Product subscription is required for accessing the API. :type subscription_required: bool """ _validation = { 'api_revision': {'max_length': 100, 'min_length': 1}, 'api_version': {'max_length': 100}, 'is_online': {'readonly': True}, 'api_revision_description': {'max_length': 256}, 'api_version_description': {'max_length': 256}, } _attribute_map = { 'description': {'key': 'description', 'type': 'str'}, 'authentication_settings': {'key': 'authenticationSettings', 'type': 'AuthenticationSettingsContract'}, 'subscription_key_parameter_names': {'key': 'subscriptionKeyParameterNames', 'type': 'SubscriptionKeyParameterNamesContract'}, 'api_type': {'key': 'type', 'type': 'str'}, 'api_revision': {'key': 'apiRevision', 'type': 'str'}, 'api_version': {'key': 'apiVersion', 'type': 'str'}, 'is_current': {'key': 'isCurrent', 'type': 'bool'}, 'is_online': {'key': 'isOnline', 'type': 'bool'}, 'api_revision_description': {'key': 'apiRevisionDescription', 'type': 'str'}, 'api_version_description': {'key': 'apiVersionDescription', 'type': 'str'}, 'api_version_set_id': {'key': 'apiVersionSetId', 'type': 'str'}, 'subscription_required': {'key': 'subscriptionRequired', 'type': 'bool'}, } def __init__(self, *, description: str=None, authentication_settings=None, subscription_key_parameter_names=None, api_type=None, api_revision: str=None, api_version: str=None, is_current: bool=None, api_revision_description: str=None, api_version_description: str=None, api_version_set_id: str=None, subscription_required: bool=None, **kwargs) -> None: super(ApiEntityBaseContract, self).__init__(**kwargs) self.description = description self.authentication_settings = authentication_settings self.subscription_key_parameter_names = subscription_key_parameter_names self.api_type = api_type self.api_revision = api_revision self.api_version = api_version self.is_current = is_current self.is_online = None self.api_revision_description = api_revision_description self.api_version_description = api_version_description self.api_version_set_id = api_version_set_id self.subscription_required = subscription_required