Class: Azure::DataShare::Mgmt::V2019_11_01::Models::OperationMetaLogSpecification
- Inherits:
-
Object
- Object
- Azure::DataShare::Mgmt::V2019_11_01::Models::OperationMetaLogSpecification
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-11-01/generated/azure_mgmt_datashare/models/operation_meta_log_specification.rb
Overview
log specifications for operation api
Instance Attribute Summary collapse
-
#blob_duration ⇒ String
Blob duration of the log.
-
#display_name ⇒ String
Localized name of the log category.
-
#name ⇒ String
Name of the log category.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for OperationMetaLogSpecification class as Ruby Hash.
Instance Attribute Details
#blob_duration ⇒ String
Returns blob duration of the log.
16 17 18 |
# File 'lib/2019-11-01/generated/azure_mgmt_datashare/models/operation_meta_log_specification.rb', line 16 def blob_duration @blob_duration end |
#display_name ⇒ String
Returns localized name of the log category.
19 20 21 |
# File 'lib/2019-11-01/generated/azure_mgmt_datashare/models/operation_meta_log_specification.rb', line 19 def display_name @display_name end |
#name ⇒ String
Returns name of the log category.
22 23 24 |
# File 'lib/2019-11-01/generated/azure_mgmt_datashare/models/operation_meta_log_specification.rb', line 22 def name @name end |
Class Method Details
.mapper ⇒ Object
Mapper for OperationMetaLogSpecification class as Ruby Hash. This will be used for serialization/deserialization.
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 55 56 57 58 59 60 61 62 63 64 65 |
# File 'lib/2019-11-01/generated/azure_mgmt_datashare/models/operation_meta_log_specification.rb', line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'OperationMetaLogSpecification', type: { name: 'Composite', class_name: 'OperationMetaLogSpecification', model_properties: { blob_duration: { client_side_validation: true, required: false, serialized_name: 'blobDuration', type: { name: 'String' } }, display_name: { client_side_validation: true, required: false, serialized_name: 'displayName', type: { name: 'String' } }, name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } } } } } end |