Class: Azure::ServiceFabric::V6_4_0_36::Models::ContainerEvent
- Inherits:
-
Object
- Object
- Azure::ServiceFabric::V6_4_0_36::Models::ContainerEvent
- Includes:
- MsRestAzure
- Defined in:
- lib/6.4.0.36/generated/azure_service_fabric/models/container_event.rb
Overview
A container event.
Instance Attribute Summary collapse
-
#count ⇒ Integer
The count of the event.
-
#first_timestamp ⇒ String
Date/time of the first event.
-
#last_timestamp ⇒ String
Date/time of the last event.
-
#message ⇒ String
The event message.
-
#name ⇒ String
The name of the container event.
-
#type ⇒ String
The event type.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ContainerEvent class as Ruby Hash.
Instance Attribute Details
#count ⇒ Integer
Returns The count of the event.
19 20 21 |
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/container_event.rb', line 19 def count @count end |
#first_timestamp ⇒ String
Returns Date/time of the first event.
22 23 24 |
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/container_event.rb', line 22 def @first_timestamp end |
#last_timestamp ⇒ String
Returns Date/time of the last event.
25 26 27 |
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/container_event.rb', line 25 def @last_timestamp end |
#message ⇒ String
Returns The event message.
28 29 30 |
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/container_event.rb', line 28 def @message end |
#name ⇒ String
Returns The name of the container event.
16 17 18 |
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/container_event.rb', line 16 def name @name end |
#type ⇒ String
Returns The event type.
31 32 33 |
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/container_event.rb', line 31 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for ContainerEvent 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 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/container_event.rb', line 38 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ContainerEvent', type: { name: 'Composite', class_name: 'ContainerEvent', model_properties: { name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } }, count: { client_side_validation: true, required: false, serialized_name: 'count', type: { name: 'Number' } }, first_timestamp: { client_side_validation: true, required: false, serialized_name: 'firstTimestamp', type: { name: 'String' } }, last_timestamp: { client_side_validation: true, required: false, serialized_name: 'lastTimestamp', type: { name: 'String' } }, message: { client_side_validation: true, required: false, serialized_name: 'message', type: { name: 'String' } }, type: { client_side_validation: true, required: false, serialized_name: 'type', type: { name: 'String' } } } } } end |