Class: Azure::Web::Mgmt::V2016_06_01::Models::ConnectionGatewayDefinitionProperties
- Inherits:
-
Object
- Object
- Azure::Web::Mgmt::V2016_06_01::Models::ConnectionGatewayDefinitionProperties
- 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
-
#backend_uri ⇒ String
The URI of the backend.
- #connection_gateway_installation ⇒ ConnectionGatewayReference
-
#contact_information ⇒ Array<String>
The gateway admin.
-
#description ⇒ String
The gateway description.
-
#display_name ⇒ String
The gateway display name.
-
#machine_name ⇒ String
The machine name of the gateway.
-
#status ⇒ Object
The gateway status.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ConnectionGatewayDefinitionProperties class as Ruby Hash.
Instance Attribute Details
#backend_uri ⇒ String
Returns 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_installation ⇒ ConnectionGatewayReference
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_information ⇒ Array<String>
Returns 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 |
#description ⇒ String
Returns 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_name ⇒ String
Returns 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_name ⇒ String
Returns 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 |
#status ⇒ Object
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
.mapper ⇒ Object
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 |