1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
# 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 AS2AcknowledgementConnectionSettings(Model):
"""AS2AcknowledgementConnectionSettings.
: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
|