Sha256: b8b1a603533a9a78f4fcdbcf6fffe64370c7a623155f92ca9c04f68b2109590b
Contents?: true
Size: 1.9 KB
Versions: 1
Compression:
Stored size: 1.9 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ARM::Web module Models # # 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. # class HandlerMapping include MsRestAzure include MsRest::JSONable # @return [String] Requests with this extension will be handled using the # specified FastCGI application. attr_accessor :extension # @return [String] The absolute path to the FastCGI application. attr_accessor :script_processor # @return [String] Command-line arguments to be passed to the script # processor. attr_accessor :arguments # # Mapper for HandlerMapping class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { required: false, serialized_name: 'HandlerMapping', type: { name: 'Composite', class_name: 'HandlerMapping', model_properties: { extension: { required: false, serialized_name: 'extension', type: { name: 'String' } }, script_processor: { required: false, serialized_name: 'scriptProcessor', type: { name: 'String' } }, arguments: { required: false, serialized_name: 'arguments', type: { name: 'String' } } } } } end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
azure_mgmt_web-0.13.0 | lib/generated/azure_mgmt_web/models/handler_mapping.rb |