Source code for azure.mgmt.web.models.site_config

# 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 .resource import Resource


[docs]class SiteConfig(Resource): """Configuration of Azure web site. :param id: Resource Id :type id: str :param name: Resource Name :type name: str :param kind: Kind of resource :type kind: str :param location: Resource Location :type location: str :param type: Resource type :type type: str :param tags: Resource tags :type tags: dict :param number_of_workers: Number of workers :type number_of_workers: int :param default_documents: Default documents :type default_documents: list of str :param net_framework_version: Net Framework Version :type net_framework_version: str :param php_version: Version of PHP :type php_version: str :param python_version: Version of Python :type python_version: str :param request_tracing_enabled: Enable request tracing :type request_tracing_enabled: bool :param request_tracing_expiration_time: Request tracing expiration time :type request_tracing_expiration_time: datetime :param remote_debugging_enabled: Remote Debugging Enabled :type remote_debugging_enabled: bool :param remote_debugging_version: Remote Debugging Version :type remote_debugging_version: str :param http_logging_enabled: HTTP logging Enabled :type http_logging_enabled: bool :param logs_directory_size_limit: HTTP Logs Directory size limit :type logs_directory_size_limit: int :param detailed_error_logging_enabled: Detailed error logging enabled :type detailed_error_logging_enabled: bool :param publishing_username: Publishing user name :type publishing_username: str :param publishing_password: Publishing password :type publishing_password: str :param app_settings: Application Settings :type app_settings: list of :class:`NameValuePair <azure.mgmt.web.models.NameValuePair>` :param metadata: Site Metadata :type metadata: list of :class:`NameValuePair <azure.mgmt.web.models.NameValuePair>` :param connection_strings: Connection strings :type connection_strings: list of :class:`ConnStringInfo <azure.mgmt.web.models.ConnStringInfo>` :param handler_mappings: Handler mappings :type handler_mappings: list of :class:`HandlerMapping <azure.mgmt.web.models.HandlerMapping>` :param document_root: Document root :type document_root: str :param scm_type: SCM type :type scm_type: str :param use32_bit_worker_process: Use 32 bit worker process :type use32_bit_worker_process: bool :param web_sockets_enabled: Web socket enabled. :type web_sockets_enabled: bool :param always_on: Always On :type always_on: bool :param java_version: Java version :type java_version: str :param java_container: Java container :type java_container: str :param java_container_version: Java container version :type java_container_version: str :param managed_pipeline_mode: Managed pipeline mode. Possible values include: 'Integrated', 'Classic' :type managed_pipeline_mode: str or :class:`ManagedPipelineMode <azure.mgmt.web.models.ManagedPipelineMode>` :param virtual_applications: Virtual applications :type virtual_applications: list of :class:`VirtualApplication <azure.mgmt.web.models.VirtualApplication>` :param load_balancing: Site load balancing. Possible values include: 'WeightedRoundRobin', 'LeastRequests', 'LeastResponseTime', 'WeightedTotalTraffic', 'RequestHash' :type load_balancing: str or :class:`SiteLoadBalancing <azure.mgmt.web.models.SiteLoadBalancing>` :param experiments: This is work around for polymophic types :type experiments: :class:`Experiments <azure.mgmt.web.models.Experiments>` :param limits: Site limits :type limits: :class:`SiteLimits <azure.mgmt.web.models.SiteLimits>` :param auto_heal_enabled: Auto heal enabled :type auto_heal_enabled: bool :param auto_heal_rules: Auto heal rules :type auto_heal_rules: :class:`AutoHealRules <azure.mgmt.web.models.AutoHealRules>` :param tracing_options: Tracing options :type tracing_options: str :param vnet_name: Vnet name :type vnet_name: str :param cors: Cross-Origin Resource Sharing (CORS) settings. :type cors: :class:`CorsSettings <azure.mgmt.web.models.CorsSettings>` :param api_definition: Information about the formal API definition for the web app. :type api_definition: :class:`ApiDefinitionInfo <azure.mgmt.web.models.ApiDefinitionInfo>` :param auto_swap_slot_name: Auto swap slot name :type auto_swap_slot_name: str :param local_my_sql_enabled: Local mysql enabled :type local_my_sql_enabled: bool :param ip_security_restrictions: Ip Security restrictions :type ip_security_restrictions: list of :class:`IpSecurityRestriction <azure.mgmt.web.models.IpSecurityRestriction>` """ _validation = { 'location': {'required': True}, } _attribute_map = { 'id': {'key': 'id', 'type': 'str'}, 'name': {'key': 'name', 'type': 'str'}, 'kind': {'key': 'kind', 'type': 'str'}, 'location': {'key': 'location', 'type': 'str'}, 'type': {'key': 'type', 'type': 'str'}, 'tags': {'key': 'tags', 'type': '{str}'}, 'number_of_workers': {'key': 'properties.numberOfWorkers', 'type': 'int'}, 'default_documents': {'key': 'properties.defaultDocuments', 'type': '[str]'}, 'net_framework_version': {'key': 'properties.netFrameworkVersion', 'type': 'str'}, 'php_version': {'key': 'properties.phpVersion', 'type': 'str'}, 'python_version': {'key': 'properties.pythonVersion', 'type': 'str'}, 'request_tracing_enabled': {'key': 'properties.requestTracingEnabled', 'type': 'bool'}, 'request_tracing_expiration_time': {'key': 'properties.requestTracingExpirationTime', 'type': 'iso-8601'}, 'remote_debugging_enabled': {'key': 'properties.remoteDebuggingEnabled', 'type': 'bool'}, 'remote_debugging_version': {'key': 'properties.remoteDebuggingVersion', 'type': 'str'}, 'http_logging_enabled': {'key': 'properties.httpLoggingEnabled', 'type': 'bool'}, 'logs_directory_size_limit': {'key': 'properties.logsDirectorySizeLimit', 'type': 'int'}, 'detailed_error_logging_enabled': {'key': 'properties.detailedErrorLoggingEnabled', 'type': 'bool'}, 'publishing_username': {'key': 'properties.publishingUsername', 'type': 'str'}, 'publishing_password': {'key': 'properties.publishingPassword', 'type': 'str'}, 'app_settings': {'key': 'properties.appSettings', 'type': '[NameValuePair]'}, 'metadata': {'key': 'properties.metadata', 'type': '[NameValuePair]'}, 'connection_strings': {'key': 'properties.connectionStrings', 'type': '[ConnStringInfo]'}, 'handler_mappings': {'key': 'properties.handlerMappings', 'type': '[HandlerMapping]'}, 'document_root': {'key': 'properties.documentRoot', 'type': 'str'}, 'scm_type': {'key': 'properties.scmType', 'type': 'str'}, 'use32_bit_worker_process': {'key': 'properties.use32BitWorkerProcess', 'type': 'bool'}, 'web_sockets_enabled': {'key': 'properties.webSocketsEnabled', 'type': 'bool'}, 'always_on': {'key': 'properties.alwaysOn', 'type': 'bool'}, 'java_version': {'key': 'properties.javaVersion', 'type': 'str'}, 'java_container': {'key': 'properties.javaContainer', 'type': 'str'}, 'java_container_version': {'key': 'properties.javaContainerVersion', 'type': 'str'}, 'managed_pipeline_mode': {'key': 'properties.managedPipelineMode', 'type': 'ManagedPipelineMode'}, 'virtual_applications': {'key': 'properties.virtualApplications', 'type': '[VirtualApplication]'}, 'load_balancing': {'key': 'properties.loadBalancing', 'type': 'SiteLoadBalancing'}, 'experiments': {'key': 'properties.experiments', 'type': 'Experiments'}, 'limits': {'key': 'properties.limits', 'type': 'SiteLimits'}, 'auto_heal_enabled': {'key': 'properties.autoHealEnabled', 'type': 'bool'}, 'auto_heal_rules': {'key': 'properties.autoHealRules', 'type': 'AutoHealRules'}, 'tracing_options': {'key': 'properties.tracingOptions', 'type': 'str'}, 'vnet_name': {'key': 'properties.vnetName', 'type': 'str'}, 'cors': {'key': 'properties.cors', 'type': 'CorsSettings'}, 'api_definition': {'key': 'properties.apiDefinition', 'type': 'ApiDefinitionInfo'}, 'auto_swap_slot_name': {'key': 'properties.autoSwapSlotName', 'type': 'str'}, 'local_my_sql_enabled': {'key': 'properties.localMySqlEnabled', 'type': 'bool'}, 'ip_security_restrictions': {'key': 'properties.ipSecurityRestrictions', 'type': '[IpSecurityRestriction]'}, } def __init__(self, location, id=None, name=None, kind=None, type=None, tags=None, number_of_workers=None, default_documents=None, net_framework_version=None, php_version=None, python_version=None, request_tracing_enabled=None, request_tracing_expiration_time=None, remote_debugging_enabled=None, remote_debugging_version=None, http_logging_enabled=None, logs_directory_size_limit=None, detailed_error_logging_enabled=None, publishing_username=None, publishing_password=None, app_settings=None, metadata=None, connection_strings=None, handler_mappings=None, document_root=None, scm_type=None, use32_bit_worker_process=None, web_sockets_enabled=None, always_on=None, java_version=None, java_container=None, java_container_version=None, managed_pipeline_mode=None, virtual_applications=None, load_balancing=None, experiments=None, limits=None, auto_heal_enabled=None, auto_heal_rules=None, tracing_options=None, vnet_name=None, cors=None, api_definition=None, auto_swap_slot_name=None, local_my_sql_enabled=None, ip_security_restrictions=None): super(SiteConfig, self).__init__(id=id, name=name, kind=kind, location=location, type=type, tags=tags) self.number_of_workers = number_of_workers self.default_documents = default_documents self.net_framework_version = net_framework_version self.php_version = php_version self.python_version = python_version self.request_tracing_enabled = request_tracing_enabled self.request_tracing_expiration_time = request_tracing_expiration_time self.remote_debugging_enabled = remote_debugging_enabled self.remote_debugging_version = remote_debugging_version self.http_logging_enabled = http_logging_enabled self.logs_directory_size_limit = logs_directory_size_limit self.detailed_error_logging_enabled = detailed_error_logging_enabled self.publishing_username = publishing_username self.publishing_password = publishing_password self.app_settings = app_settings self.metadata = metadata self.connection_strings = connection_strings self.handler_mappings = handler_mappings self.document_root = document_root self.scm_type = scm_type self.use32_bit_worker_process = use32_bit_worker_process self.web_sockets_enabled = web_sockets_enabled self.always_on = always_on self.java_version = java_version self.java_container = java_container self.java_container_version = java_container_version self.managed_pipeline_mode = managed_pipeline_mode self.virtual_applications = virtual_applications self.load_balancing = load_balancing self.experiments = experiments self.limits = limits self.auto_heal_enabled = auto_heal_enabled self.auto_heal_rules = auto_heal_rules self.tracing_options = tracing_options self.vnet_name = vnet_name self.cors = cors self.api_definition = api_definition self.auto_swap_slot_name = auto_swap_slot_name self.local_my_sql_enabled = local_my_sql_enabled self.ip_security_restrictions = ip_security_restrictions