Class: Azure::Web::Mgmt::V2018_02_01::Models::HandlerMapping
- Inherits:
-
Object
- Object
- Azure::Web::Mgmt::V2018_02_01::Models::HandlerMapping
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-02-01/generated/azure_mgmt_web/models/handler_mapping.rb
Overview
The IIS handler mappings used to define which handler processes HTTP requests with certain extension. For example, it is used to configure php-cgi.exe process to handle all HTTP requests with *.php extension.
Instance Attribute Summary collapse
-
#arguments ⇒ String
processor.
-
#extension ⇒ String
specified FastCGI application.
-
#script_processor ⇒ String
The absolute path to the FastCGI application.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for HandlerMapping class as Ruby Hash.
Instance Attribute Details
#arguments ⇒ String
processor.
27 28 29 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/handler_mapping.rb', line 27 def arguments @arguments end |
#extension ⇒ String
specified FastCGI application.
20 21 22 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/handler_mapping.rb', line 20 def extension @extension end |
#script_processor ⇒ String
Returns The absolute path to the FastCGI application.
23 24 25 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/handler_mapping.rb', line 23 def script_processor @script_processor end |
Class Method Details
.mapper ⇒ Object
Mapper for HandlerMapping class as Ruby Hash. This will be used for serialization/deserialization.
34 35 36 37 38 39 40 41 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 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/handler_mapping.rb', line 34 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'HandlerMapping', type: { name: 'Composite', class_name: 'HandlerMapping', model_properties: { extension: { client_side_validation: true, required: false, serialized_name: 'extension', type: { name: 'String' } }, script_processor: { client_side_validation: true, required: false, serialized_name: 'scriptProcessor', type: { name: 'String' } }, arguments: { client_side_validation: true, required: false, serialized_name: 'arguments', type: { name: 'String' } } } } } end |