Class: Azure::ServiceFabric::V6_3_0_9::Models::ContainerEvent

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/6.3.0.9/generated/azure_service_fabric/models/container_event.rb

Overview

A container event.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#countInteger

Returns The count of the event.

Returns:

  • (Integer)

    The count of the event.



19
20
21
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/container_event.rb', line 19

def count
  @count
end

#first_timestampString

Returns Date/time of the first event.

Returns:

  • (String)

    Date/time of the first event.



22
23
24
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/container_event.rb', line 22

def first_timestamp
  @first_timestamp
end

#last_timestampString

Returns Date/time of the last event.

Returns:

  • (String)

    Date/time of the last event.



25
26
27
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/container_event.rb', line 25

def last_timestamp
  @last_timestamp
end

#messageString

Returns The event message.

Returns:

  • (String)

    The event message



28
29
30
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/container_event.rb', line 28

def message
  @message
end

#nameString

Returns The name of the container event.

Returns:

  • (String)

    The name of the container event.



16
17
18
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/container_event.rb', line 16

def name
  @name
end

#typeString

Returns The event type.

Returns:

  • (String)

    The event type.



31
32
33
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/container_event.rb', line 31

def type
  @type
end

Class Method Details

.mapperObject

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.3.0.9/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