Class: Azure::Web::Mgmt::V2016_08_01::Models::SiteLogsConfig
- Inherits:
-
ProxyOnlyResource
- Object
- ProxyOnlyResource
- Azure::Web::Mgmt::V2016_08_01::Models::SiteLogsConfig
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-08-01/generated/azure_mgmt_web/models/site_logs_config.rb
Overview
Configuration of App Service site logs.
Instance Attribute Summary collapse
-
#application_logs ⇒ ApplicationLogsConfig
Application logs configuration.
-
#detailed_error_messages ⇒ EnabledConfig
Detailed error messages configuration.
-
#failed_requests_tracing ⇒ EnabledConfig
Failed requests tracing configuration.
-
#http_logs ⇒ HttpLogsConfig
HTTP logs configuration.
Attributes inherited from ProxyOnlyResource
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for SiteLogsConfig class as Ruby Hash.
Instance Attribute Details
#application_logs ⇒ ApplicationLogsConfig
Returns Application logs configuration.
16 17 18 |
# File 'lib/2016-08-01/generated/azure_mgmt_web/models/site_logs_config.rb', line 16 def application_logs @application_logs end |
#detailed_error_messages ⇒ EnabledConfig
Returns Detailed error messages configuration.
25 26 27 |
# File 'lib/2016-08-01/generated/azure_mgmt_web/models/site_logs_config.rb', line 25 def @detailed_error_messages end |
#failed_requests_tracing ⇒ EnabledConfig
Returns Failed requests tracing configuration.
22 23 24 |
# File 'lib/2016-08-01/generated/azure_mgmt_web/models/site_logs_config.rb', line 22 def failed_requests_tracing @failed_requests_tracing end |
#http_logs ⇒ HttpLogsConfig
Returns HTTP logs configuration.
19 20 21 |
# File 'lib/2016-08-01/generated/azure_mgmt_web/models/site_logs_config.rb', line 19 def http_logs @http_logs end |
Class Method Details
.mapper ⇒ Object
Mapper for SiteLogsConfig class as Ruby Hash. This will be used for serialization/deserialization.
32 33 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 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 |
# File 'lib/2016-08-01/generated/azure_mgmt_web/models/site_logs_config.rb', line 32 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SiteLogsConfig', type: { name: 'Composite', class_name: 'SiteLogsConfig', 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' } }, application_logs: { client_side_validation: true, required: false, serialized_name: 'properties.applicationLogs', type: { name: 'Composite', class_name: 'ApplicationLogsConfig' } }, http_logs: { client_side_validation: true, required: false, serialized_name: 'properties.httpLogs', type: { name: 'Composite', class_name: 'HttpLogsConfig' } }, failed_requests_tracing: { client_side_validation: true, required: false, serialized_name: 'properties.failedRequestsTracing', type: { name: 'Composite', class_name: 'EnabledConfig' } }, detailed_error_messages: { client_side_validation: true, required: false, serialized_name: 'properties.detailedErrorMessages', type: { name: 'Composite', class_name: 'EnabledConfig' } } } } } end |