Class: Azure::ContainerInstance::Mgmt::V2019_12_01::Models::Event
- Inherits:
-
Object
- Object
- Azure::ContainerInstance::Mgmt::V2019_12_01::Models::Event
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-12-01/generated/azure_mgmt_container_instance/models/event.rb
Overview
A container group or container instance event.
Instance Attribute Summary collapse
-
#count ⇒ Integer
The count of the event.
-
#first_timestamp ⇒ DateTime
The date-time of the earliest logged event.
-
#last_timestamp ⇒ DateTime
The date-time of the latest logged event.
-
#message ⇒ String
The event message.
-
#name ⇒ String
The event name.
-
#type ⇒ String
The event type.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for Event class as Ruby Hash.
Instance Attribute Details
#count ⇒ Integer
Returns The count of the event.
16 17 18 |
# File 'lib/2019-12-01/generated/azure_mgmt_container_instance/models/event.rb', line 16 def count @count end |
#first_timestamp ⇒ DateTime
Returns The date-time of the earliest logged event.
19 20 21 |
# File 'lib/2019-12-01/generated/azure_mgmt_container_instance/models/event.rb', line 19 def @first_timestamp end |
#last_timestamp ⇒ DateTime
Returns The date-time of the latest logged event.
22 23 24 |
# File 'lib/2019-12-01/generated/azure_mgmt_container_instance/models/event.rb', line 22 def @last_timestamp end |
#message ⇒ String
Returns The event message.
28 29 30 |
# File 'lib/2019-12-01/generated/azure_mgmt_container_instance/models/event.rb', line 28 def @message end |
#name ⇒ String
Returns The event name.
25 26 27 |
# File 'lib/2019-12-01/generated/azure_mgmt_container_instance/models/event.rb', line 25 def name @name end |
#type ⇒ String
Returns The event type.
31 32 33 |
# File 'lib/2019-12-01/generated/azure_mgmt_container_instance/models/event.rb', line 31 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for Event 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 99 100 101 102 103 104 |
# File 'lib/2019-12-01/generated/azure_mgmt_container_instance/models/event.rb', line 38 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Event', type: { name: 'Composite', class_name: 'Event', model_properties: { count: { client_side_validation: true, required: false, read_only: true, serialized_name: 'count', type: { name: 'Number' } }, first_timestamp: { client_side_validation: true, required: false, read_only: true, serialized_name: 'firstTimestamp', type: { name: 'DateTime' } }, last_timestamp: { client_side_validation: true, required: false, read_only: true, serialized_name: 'lastTimestamp', type: { name: 'DateTime' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, message: { client_side_validation: true, required: false, read_only: true, serialized_name: 'message', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } } } } } end |