Class: Azure::ARM::Logic::Models::AS2AcknowledgementConnectionSettings

Inherits:
Object
  • Object
show all
Includes:
MsRest::JSONable, MsRestAzure
Defined in:
lib/generated/azure_mgmt_logic/models/as2acknowledgement_connection_settings.rb

Overview

The AS2 agreement acknowledegment 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



18
19
20
# File 'lib/generated/azure_mgmt_logic/models/as2acknowledgement_connection_settings.rb', line 18

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



26
27
28
# File 'lib/generated/azure_mgmt_logic/models/as2acknowledgement_connection_settings.rb', line 26

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



22
23
24
# File 'lib/generated/azure_mgmt_logic/models/as2acknowledgement_connection_settings.rb', line 22

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



30
31
32
# File 'lib/generated/azure_mgmt_logic/models/as2acknowledgement_connection_settings.rb', line 30

def unfold_http_headers
  @unfold_http_headers
end

Class Method Details

.mapperObject

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



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
# File 'lib/generated/azure_mgmt_logic/models/as2acknowledgement_connection_settings.rb', line 37

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