# 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::Web::Mgmt::V2020_09_01 module Models # # Model object. # # class ForwardProxy < ProxyOnlyResource include MsRestAzure # @return [ForwardProxyConvention] Possible values include: 'NoProxy', # 'Standard', 'Custom' attr_accessor :convention # @return [String] attr_accessor :custom_host_header_name # @return [String] attr_accessor :custom_proto_header_name # # Mapper for ForwardProxy class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ForwardProxy', type: { name: 'Composite', class_name: 'ForwardProxy', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, kind: { client_side_validation: true, required: false, serialized_name: 'kind', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, system_data: { client_side_validation: true, required: false, serialized_name: 'systemData', type: { name: 'Composite', class_name: 'SystemData' } }, convention: { client_side_validation: true, required: false, serialized_name: 'properties.convention', type: { name: 'Enum', module: 'ForwardProxyConvention' } }, custom_host_header_name: { client_side_validation: true, required: false, serialized_name: 'properties.customHostHeaderName', type: { name: 'String' } }, custom_proto_header_name: { client_side_validation: true, required: false, serialized_name: 'properties.customProtoHeaderName', type: { name: 'String' } } } } } end end end end