Class: Azure::ApiManagement::Mgmt::V2017_03_01::Models::OperationResultLogItemContract
- Inherits:
-
Object
- Object
- Azure::ApiManagement::Mgmt::V2017_03_01::Models::OperationResultLogItemContract
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-03-01/generated/azure_mgmt_api_management/models/operation_result_log_item_contract.rb
Overview
Log of the entity being created, updated or deleted.
Instance Attribute Summary collapse
-
#action ⇒ String
Action like create/update/delete.
-
#object_key ⇒ String
created/updated/deleted.
-
#object_type ⇒ String
The type of entity contract.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for OperationResultLogItemContract class as Ruby Hash.
Instance Attribute Details
#action ⇒ String
Returns Action like create/update/delete.
19 20 21 |
# File 'lib/2017-03-01/generated/azure_mgmt_api_management/models/operation_result_log_item_contract.rb', line 19 def action @action end |
#object_key ⇒ String
created/updated/deleted.
23 24 25 |
# File 'lib/2017-03-01/generated/azure_mgmt_api_management/models/operation_result_log_item_contract.rb', line 23 def object_key @object_key end |
#object_type ⇒ String
Returns The type of entity contract.
16 17 18 |
# File 'lib/2017-03-01/generated/azure_mgmt_api_management/models/operation_result_log_item_contract.rb', line 16 def object_type @object_type end |
Class Method Details
.mapper ⇒ Object
Mapper for OperationResultLogItemContract class as Ruby Hash. This will be used for serialization/deserialization.
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 66 |
# File 'lib/2017-03-01/generated/azure_mgmt_api_management/models/operation_result_log_item_contract.rb', line 30 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'OperationResultLogItemContract', type: { name: 'Composite', class_name: 'OperationResultLogItemContract', model_properties: { object_type: { client_side_validation: true, required: false, serialized_name: 'objectType', type: { name: 'String' } }, action: { client_side_validation: true, required: false, serialized_name: 'action', type: { name: 'String' } }, object_key: { client_side_validation: true, required: false, serialized_name: 'objectKey', type: { name: 'String' } } } } } end |