Class: Azure::Logic::Mgmt::V2018_07_01_preview::Models::AS2MessageConnectionSettings

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2018-07-01-preview/generated/azure_mgmt_logic/models/as2message_connection_settings.rb

Overview

The AS2 agreement message connection settings.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#ignore_certificate_name_mismatchBoolean

certificate name.

Returns:

  • (Boolean)

    The value indicating whether to ignore mismatch in



17
18
19
# File 'lib/2018-07-01-preview/generated/azure_mgmt_logic/models/as2message_connection_settings.rb', line 17

def ignore_certificate_name_mismatch
  @ignore_certificate_name_mismatch
end

#keep_http_connection_aliveBoolean

alive.

Returns:

  • (Boolean)

    The value indicating whether to keep the connection



25
26
27
# File 'lib/2018-07-01-preview/generated/azure_mgmt_logic/models/as2message_connection_settings.rb', line 25

def keep_http_connection_alive
  @keep_http_connection_alive
end

#support_http_status_code_continueBoolean

code ‘CONTINUE’.

Returns:

  • (Boolean)

    The value indicating whether to support HTTP status



21
22
23
# File 'lib/2018-07-01-preview/generated/azure_mgmt_logic/models/as2message_connection_settings.rb', line 21

def support_http_status_code_continue
  @support_http_status_code_continue
end

#unfold_http_headersBoolean

headers.

Returns:

  • (Boolean)

    The value indicating whether to unfold the HTTP



29
30
31
# File 'lib/2018-07-01-preview/generated/azure_mgmt_logic/models/as2message_connection_settings.rb', line 29

def unfold_http_headers
  @unfold_http_headers
end

Class Method Details

.mapperObject

Mapper for AS2MessageConnectionSettings class as Ruby Hash. This will be used for serialization/deserialization.



36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# File 'lib/2018-07-01-preview/generated/azure_mgmt_logic/models/as2message_connection_settings.rb', line 36

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'AS2MessageConnectionSettings',
    type: {
      name: 'Composite',
      class_name: 'AS2MessageConnectionSettings',
      model_properties: {
        ignore_certificate_name_mismatch: {
          client_side_validation: true,
          required: true,
          serialized_name: 'ignoreCertificateNameMismatch',
          type: {
            name: 'Boolean'
          }
        },
        support_http_status_code_continue: {
          client_side_validation: true,
          required: true,
          serialized_name: 'supportHttpStatusCodeContinue',
          type: {
            name: 'Boolean'
          }
        },
        keep_http_connection_alive: {
          client_side_validation: true,
          required: true,
          serialized_name: 'keepHttpConnectionAlive',
          type: {
            name: 'Boolean'
          }
        },
        unfold_http_headers: {
          client_side_validation: true,
          required: true,
          serialized_name: 'unfoldHttpHeaders',
          type: {
            name: 'Boolean'
          }
        }
      }
    }
  }
end