Class: Azure::ContainerInstance::Mgmt::V2019_12_01::Models::ContainerGroupPropertiesInstanceView
- Inherits:
-
Object
- Object
- Azure::ContainerInstance::Mgmt::V2019_12_01::Models::ContainerGroupPropertiesInstanceView
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-12-01/generated/azure_mgmt_container_instance/models/container_group_properties_instance_view.rb
Overview
The instance view of the container group. Only valid in response.
Instance Attribute Summary collapse
-
#events ⇒ Array<Event>
The events of this container group.
-
#state ⇒ String
response.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ContainerGroupPropertiesInstanceView class as Ruby Hash.
Instance Attribute Details
#events ⇒ Array<Event>
Returns The events of this container group.
16 17 18 |
# File 'lib/2019-12-01/generated/azure_mgmt_container_instance/models/container_group_properties_instance_view.rb', line 16 def events @events end |
#state ⇒ String
response.
20 21 22 |
# File 'lib/2019-12-01/generated/azure_mgmt_container_instance/models/container_group_properties_instance_view.rb', line 20 def state @state end |
Class Method Details
.mapper ⇒ Object
Mapper for ContainerGroupPropertiesInstanceView class as Ruby Hash. This will be used for serialization/deserialization.
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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
# File 'lib/2019-12-01/generated/azure_mgmt_container_instance/models/container_group_properties_instance_view.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ContainerGroup_properties_instanceView', type: { name: 'Composite', class_name: 'ContainerGroupPropertiesInstanceView', model_properties: { events: { client_side_validation: true, required: false, read_only: true, serialized_name: 'events', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'EventElementType', type: { name: 'Composite', class_name: 'Event' } } } }, state: { client_side_validation: true, required: false, read_only: true, serialized_name: 'state', type: { name: 'String' } } } } } end |