Class: Azure::Security::Mgmt::V2020_01_01_preview::Models::ProxyServerProperties

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2020-01-01-preview/generated/azure_mgmt_security/models/proxy_server_properties.rb

Overview

For a non-Azure machine that is not connected directly to the internet, specify a proxy server that the non-Azure machine can use.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#ipString

Returns Proxy server IP.

Returns:

  • (String)

    Proxy server IP



17
18
19
# File 'lib/2020-01-01-preview/generated/azure_mgmt_security/models/proxy_server_properties.rb', line 17

def ip
  @ip
end

#portString

Returns Proxy server port.

Returns:

  • (String)

    Proxy server port



20
21
22
# File 'lib/2020-01-01-preview/generated/azure_mgmt_security/models/proxy_server_properties.rb', line 20

def port
  @port
end

Class Method Details

.mapperObject

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



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
54
55
# File 'lib/2020-01-01-preview/generated/azure_mgmt_security/models/proxy_server_properties.rb', line 27

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ProxyServerProperties',
    type: {
      name: 'Composite',
      class_name: 'ProxyServerProperties',
      model_properties: {
        ip: {
          client_side_validation: true,
          required: false,
          serialized_name: 'ip',
          type: {
            name: 'String'
          }
        },
        port: {
          client_side_validation: true,
          required: false,
          serialized_name: 'port',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end