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 44 45 46 47 48 49 50 51 52 53
|
# 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 AS2MessageConnectionSettings(Model):
"""The AS2 agreement message connection settings.
All required parameters must be populated in order to send to Azure.
:param ignore_certificate_name_mismatch: Required. The value indicating
whether to ignore mismatch in certificate name.
:type ignore_certificate_name_mismatch: bool
:param support_http_status_code_continue: Required. The value indicating
whether to support HTTP status code 'CONTINUE'.
:type support_http_status_code_continue: bool
:param keep_http_connection_alive: Required. The value indicating whether
to keep the connection alive.
:type keep_http_connection_alive: bool
:param unfold_http_headers: Required. The value indicating whether to
unfold the HTTP headers.
:type unfold_http_headers: bool
"""
_validation = {
'ignore_certificate_name_mismatch': {'required': True},
'support_http_status_code_continue': {'required': True},
'keep_http_connection_alive': {'required': True},
'unfold_http_headers': {'required': True},
}
_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, **kwargs):
super(AS2MessageConnectionSettings, self).__init__(**kwargs)
self.ignore_certificate_name_mismatch = kwargs.get('ignore_certificate_name_mismatch', None)
self.support_http_status_code_continue = kwargs.get('support_http_status_code_continue', None)
self.keep_http_connection_alive = kwargs.get('keep_http_connection_alive', None)
self.unfold_http_headers = kwargs.get('unfold_http_headers', None)
|