Class: Azure::Web::Mgmt::V2016_06_01::Models::ConnectionGatewayDefinitionProperties

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

Overview

Model object.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#backend_uriString

Returns The URI of the backend.

Returns:

  • (String)

    The URI of the backend



35
36
37
# File 'lib/2016-06-01/generated/azure_mgmt_web/models/connection_gateway_definition_properties.rb', line 35

def backend_uri
  @backend_uri
end

#connection_gateway_installationConnectionGatewayReference



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

def connection_gateway_installation
  @connection_gateway_installation
end

#contact_informationArray<String>

Returns The gateway admin.

Returns:

  • (Array<String>)

    The gateway admin



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

def contact_information
  @contact_information
end

#descriptionString

Returns The gateway description.

Returns:

  • (String)

    The gateway description



26
27
28
# File 'lib/2016-06-01/generated/azure_mgmt_web/models/connection_gateway_definition_properties.rb', line 26

def description
  @description
end

#display_nameString

Returns The gateway display name.

Returns:

  • (String)

    The gateway display name



23
24
25
# File 'lib/2016-06-01/generated/azure_mgmt_web/models/connection_gateway_definition_properties.rb', line 23

def display_name
  @display_name
end

#machine_nameString

Returns The machine name of the gateway.

Returns:

  • (String)

    The machine name of the gateway



29
30
31
# File 'lib/2016-06-01/generated/azure_mgmt_web/models/connection_gateway_definition_properties.rb', line 29

def machine_name
  @machine_name
end

#statusObject

Returns The gateway status.

Returns:

  • The gateway status



32
33
34
# File 'lib/2016-06-01/generated/azure_mgmt_web/models/connection_gateway_definition_properties.rb', line 32

def status
  @status
end

Class Method Details

.mapperObject

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



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
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
# File 'lib/2016-06-01/generated/azure_mgmt_web/models/connection_gateway_definition_properties.rb', line 42

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ConnectionGatewayDefinition_properties',
    type: {
      name: 'Composite',
      class_name: 'ConnectionGatewayDefinitionProperties',
      model_properties: {
        connection_gateway_installation: {
          client_side_validation: true,
          required: false,
          serialized_name: 'connectionGatewayInstallation',
          type: {
            name: 'Composite',
            class_name: 'ConnectionGatewayReference'
          }
        },
        contact_information: {
          client_side_validation: true,
          required: false,
          serialized_name: 'contactInformation',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        display_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'displayName',
          type: {
            name: 'String'
          }
        },
        description: {
          client_side_validation: true,
          required: false,
          serialized_name: 'description',
          type: {
            name: 'String'
          }
        },
        machine_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'machineName',
          type: {
            name: 'String'
          }
        },
        status: {
          client_side_validation: true,
          required: false,
          serialized_name: 'status',
          type: {
            name: 'Object'
          }
        },
        backend_uri: {
          client_side_validation: true,
          required: false,
          serialized_name: 'backendUri',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end