Class: Azure::ARM::Web::Models::VirtualDirectory
- Inherits:
-
Object
- Object
- Azure::ARM::Web::Models::VirtualDirectory
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_web/models/virtual_directory.rb
Overview
Directory for virtual application.
Instance Attribute Summary collapse
-
#physical_path ⇒ String
Physical path.
-
#virtual_path ⇒ String
Path to virtual application.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for VirtualDirectory class as Ruby Hash.
Instance Attribute Details
#physical_path ⇒ String
Returns Physical path.
20 21 22 |
# File 'lib/generated/azure_mgmt_web/models/virtual_directory.rb', line 20 def physical_path @physical_path end |
#virtual_path ⇒ String
Returns Path to virtual application.
17 18 19 |
# File 'lib/generated/azure_mgmt_web/models/virtual_directory.rb', line 17 def virtual_path @virtual_path end |
Class Method Details
.mapper ⇒ Object
Mapper for VirtualDirectory 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 |
# File 'lib/generated/azure_mgmt_web/models/virtual_directory.rb', line 27 def self.mapper() { required: false, serialized_name: 'VirtualDirectory', type: { name: 'Composite', class_name: 'VirtualDirectory', model_properties: { virtual_path: { required: false, serialized_name: 'virtualPath', type: { name: 'String' } }, physical_path: { required: false, serialized_name: 'physicalPath', type: { name: 'String' } } } } } end |