Class: Azure::Network::Mgmt::V2016_06_01::Models::ApplicationGatewayHttpListener

Inherits:
SubResource
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2016-06-01/generated/azure_mgmt_network/models/application_gateway_http_listener.rb

Overview

Http listener of application gateway

Instance Attribute Summary collapse

Attributes inherited from SubResource

#id

Class Method Summary collapse

Instance Attribute Details

#etagString

resource is updated

Returns:

  • (String)

    A unique read-only string that changes whenever the



45
46
47
# File 'lib/2016-06-01/generated/azure_mgmt_network/models/application_gateway_http_listener.rb', line 45

def etag
  @etag
end

#frontend_ipconfigurationSubResource

gateway

Returns:

  • (SubResource)

    Frontend IP configuration resource of application



17
18
19
# File 'lib/2016-06-01/generated/azure_mgmt_network/models/application_gateway_http_listener.rb', line 17

def frontend_ipconfiguration
  @frontend_ipconfiguration
end

#frontend_portSubResource

Returns Frontend port resource of application gateway.

Returns:

  • (SubResource)

    Frontend port resource of application gateway



20
21
22
# File 'lib/2016-06-01/generated/azure_mgmt_network/models/application_gateway_http_listener.rb', line 20

def frontend_port
  @frontend_port
end

#host_nameString

Returns Host name of http listener.

Returns:

  • (String)

    Host name of http listener



27
28
29
# File 'lib/2016-06-01/generated/azure_mgmt_network/models/application_gateway_http_listener.rb', line 27

def host_name
  @host_name
end

#nameString

group. This name can be used to access the resource

Returns:

  • (String)

    Name of the resource that is unique within a resource



41
42
43
# File 'lib/2016-06-01/generated/azure_mgmt_network/models/application_gateway_http_listener.rb', line 41

def name
  @name
end

#protocolApplicationGatewayProtocol

‘Http’, ‘Https’

Returns:



24
25
26
# File 'lib/2016-06-01/generated/azure_mgmt_network/models/application_gateway_http_listener.rb', line 24

def protocol
  @protocol
end

#provisioning_stateString

Updating/Deleting/Failed

Returns:

  • (String)

    Provisioning state of the http listener resource



37
38
39
# File 'lib/2016-06-01/generated/azure_mgmt_network/models/application_gateway_http_listener.rb', line 37

def provisioning_state
  @provisioning_state
end

#require_server_name_indicationBoolean

Returns RequireServerNameIndication of http listener.

Returns:

  • (Boolean)

    RequireServerNameIndication of http listener



33
34
35
# File 'lib/2016-06-01/generated/azure_mgmt_network/models/application_gateway_http_listener.rb', line 33

def require_server_name_indication
  @require_server_name_indication
end

#ssl_certificateSubResource

Returns Ssl certificate resource of application gateway.

Returns:

  • (SubResource)

    Ssl certificate resource of application gateway



30
31
32
# File 'lib/2016-06-01/generated/azure_mgmt_network/models/application_gateway_http_listener.rb', line 30

def ssl_certificate
  @ssl_certificate
end

Class Method Details

.mapperObject

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



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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# File 'lib/2016-06-01/generated/azure_mgmt_network/models/application_gateway_http_listener.rb', line 52

def self.mapper()
  {
    required: false,
    serialized_name: 'ApplicationGatewayHttpListener',
    type: {
      name: 'Composite',
      class_name: 'ApplicationGatewayHttpListener',
      model_properties: {
        id: {
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        frontend_ipconfiguration: {
          required: false,
          serialized_name: 'properties.frontendIPConfiguration',
          type: {
            name: 'Composite',
            class_name: 'SubResource'
          }
        },
        frontend_port: {
          required: false,
          serialized_name: 'properties.frontendPort',
          type: {
            name: 'Composite',
            class_name: 'SubResource'
          }
        },
        protocol: {
          required: false,
          serialized_name: 'properties.protocol',
          type: {
            name: 'String'
          }
        },
        host_name: {
          required: false,
          serialized_name: 'properties.hostName',
          type: {
            name: 'String'
          }
        },
        ssl_certificate: {
          required: false,
          serialized_name: 'properties.sslCertificate',
          type: {
            name: 'Composite',
            class_name: 'SubResource'
          }
        },
        require_server_name_indication: {
          required: false,
          serialized_name: 'properties.requireServerNameIndication',
          type: {
            name: 'Boolean'
          }
        },
        provisioning_state: {
          required: false,
          serialized_name: 'properties.provisioningState',
          type: {
            name: 'String'
          }
        },
        name: {
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        etag: {
          required: false,
          serialized_name: 'etag',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end