Class: Azure::KeyVault::Mgmt::V2019_09_01::Models::ServiceSpecification
- Inherits:
-
Object
- Object
- Azure::KeyVault::Mgmt::V2019_09_01::Models::ServiceSpecification
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-09-01/generated/azure_mgmt_key_vault/models/service_specification.rb
Overview
One property of operation, include log specifications.
Instance Attribute Summary collapse
-
#log_specifications ⇒ Array<LogSpecification>
Log specifications of operation.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ServiceSpecification class as Ruby Hash.
Instance Attribute Details
#log_specifications ⇒ Array<LogSpecification>
Returns Log specifications of operation.
16 17 18 |
# File 'lib/2019-09-01/generated/azure_mgmt_key_vault/models/service_specification.rb', line 16 def log_specifications @log_specifications end |
Class Method Details
.mapper ⇒ Object
Mapper for ServiceSpecification class as Ruby Hash. This will be used for serialization/deserialization.
23 24 25 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 |
# File 'lib/2019-09-01/generated/azure_mgmt_key_vault/models/service_specification.rb', line 23 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ServiceSpecification', type: { name: 'Composite', class_name: 'ServiceSpecification', model_properties: { log_specifications: { client_side_validation: true, required: false, serialized_name: 'logSpecifications', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'LogSpecificationElementType', type: { name: 'Composite', class_name: 'LogSpecification' } } } } } } } end |