Source code for azure.mgmt.logic.models.as2_message_connection_settings

# 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 AS2MessageConnectionSettings(Model): """AS2MessageConnectionSettings. :param ignore_certificate_name_mismatch: The value indicating whether to ignore mismatch in certificate name. :type ignore_certificate_name_mismatch: bool :param support_http_status_code_continue: The value indicating whether to support HTTP status code 'CONTINUE'. :type support_http_status_code_continue: bool :param keep_http_connection_alive: The value indicating whether to keep the connection alive. :type keep_http_connection_alive: bool :param unfold_http_headers: The value indicating whether to unfold the HTTP headers. :type unfold_http_headers: bool """ _attribute_map = { 'ignore_certificate_name_mismatch': {'key': 'ignoreCertificateNameMismatch', 'type': 'bool'}, 'support_http_status_code_continue': {'key': 'supportHttpStatusCodeContinue', 'type': 'bool'}, 'keep_http_connection_alive': {'key': 'keepHttpConnectionAlive', 'type': 'bool'}, 'unfold_http_headers': {'key': 'unfoldHttpHeaders', 'type': 'bool'}, } def __init__(self, ignore_certificate_name_mismatch=None, support_http_status_code_continue=None, keep_http_connection_alive=None, unfold_http_headers=None): self.ignore_certificate_name_mismatch = ignore_certificate_name_mismatch self.support_http_status_code_continue = support_http_status_code_continue self.keep_http_connection_alive = keep_http_connection_alive self.unfold_http_headers = unfold_http_headers