Class: Azure::OperationalInsights::Mgmt::V2020_03_01_preview::Models::WorkspacePurgeBodyFilters
- Inherits:
-
Object
- Object
- Azure::OperationalInsights::Mgmt::V2020_03_01_preview::Models::WorkspacePurgeBodyFilters
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-03-01-preview/generated/azure_mgmt_operational_insights/models/workspace_purge_body_filters.rb
Overview
User-defined filters to return data which will be purged from the table.
Instance Attribute Summary collapse
-
#column ⇒ String
should run.
-
#key ⇒ String
be used as the name of the custom dimension.
-
#operator ⇒ String
and value(s).
-
#value ⇒ Object
number (e.g., > 100), a string (timestamp >= ‘2017-09-01’) or array of values.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for WorkspacePurgeBodyFilters class as Ruby Hash.
Instance Attribute Details
#column ⇒ String
should run
17 18 19 |
# File 'lib/2020-03-01-preview/generated/azure_mgmt_operational_insights/models/workspace_purge_body_filters.rb', line 17 def column @column end |
#key ⇒ String
be used as the name of the custom dimension.
31 32 33 |
# File 'lib/2020-03-01-preview/generated/azure_mgmt_operational_insights/models/workspace_purge_body_filters.rb', line 31 def key @key end |
#operator ⇒ String
and value(s). Supported operators are ==, =~, in, in~, >, >=, <, <=, between, and have the same behavior as they would in a KQL query.
22 23 24 |
# File 'lib/2020-03-01-preview/generated/azure_mgmt_operational_insights/models/workspace_purge_body_filters.rb', line 22 def operator @operator end |
#value ⇒ Object
number (e.g., > 100), a string (timestamp >= ‘2017-09-01’) or array of values.
27 28 29 |
# File 'lib/2020-03-01-preview/generated/azure_mgmt_operational_insights/models/workspace_purge_body_filters.rb', line 27 def value @value end |
Class Method Details
.mapper ⇒ Object
Mapper for WorkspacePurgeBodyFilters class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2020-03-01-preview/generated/azure_mgmt_operational_insights/models/workspace_purge_body_filters.rb', line 38 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'WorkspacePurgeBodyFilters', type: { name: 'Composite', class_name: 'WorkspacePurgeBodyFilters', model_properties: { column: { client_side_validation: true, required: false, serialized_name: 'column', type: { name: 'String' } }, operator: { client_side_validation: true, required: false, serialized_name: 'operator', type: { name: 'String' } }, value: { client_side_validation: true, required: false, serialized_name: 'value', type: { name: 'Object' } }, key: { client_side_validation: true, required: false, serialized_name: 'key', type: { name: 'String' } } } } } end |