Class: Azure::OperationalInsights::Mgmt::V2020_08_01::Models::CoreSummary
- Inherits:
-
Object
- Object
- Azure::OperationalInsights::Mgmt::V2020_08_01::Models::CoreSummary
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-08-01/generated/azure_mgmt_operational_insights/models/core_summary.rb
Overview
The core summary of a search.
Instance Attribute Summary collapse
-
#number_of_documents ⇒ Integer
The number of documents of a core summary.
-
#status ⇒ String
The status of a core summary.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for CoreSummary class as Ruby Hash.
Instance Attribute Details
#number_of_documents ⇒ Integer
19 20 21 |
# File 'lib/2020-08-01/generated/azure_mgmt_operational_insights/models/core_summary.rb', line 19 def number_of_documents @number_of_documents end |
#status ⇒ String
16 17 18 |
# File 'lib/2020-08-01/generated/azure_mgmt_operational_insights/models/core_summary.rb', line 16 def status @status end |
Class Method Details
.mapper ⇒ Object
Mapper for CoreSummary class as Ruby Hash. This will be used for serialization/deserialization.
26 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 53 54 |
# File 'lib/2020-08-01/generated/azure_mgmt_operational_insights/models/core_summary.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'CoreSummary', type: { name: 'Composite', class_name: 'CoreSummary', model_properties: { status: { client_side_validation: true, required: false, serialized_name: 'status', type: { name: 'String' } }, number_of_documents: { client_side_validation: true, required: true, serialized_name: 'numberOfDocuments', type: { name: 'Number' } } } } } end |