Class: Azure::ARM::Logic::Models::IntegrationAccountSession
- Inherits:
-
MsRestAzure::Resource
- Object
- MsRestAzure::Resource
- Azure::ARM::Logic::Models::IntegrationAccountSession
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_logic/models/integration_account_session.rb
Overview
The integration account session.
Instance Attribute Summary collapse
-
#changed_time ⇒ DateTime
The changed time.
-
#content ⇒ Object
The session content.
-
#created_time ⇒ DateTime
The created time.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for IntegrationAccountSession class as Ruby Hash.
Instance Attribute Details
#changed_time ⇒ DateTime
Returns The changed time.
20 21 22 |
# File 'lib/generated/azure_mgmt_logic/models/integration_account_session.rb', line 20 def changed_time @changed_time end |
#content ⇒ Object
Returns The session content.
23 24 25 |
# File 'lib/generated/azure_mgmt_logic/models/integration_account_session.rb', line 23 def content @content end |
#created_time ⇒ DateTime
Returns The created time.
17 18 19 |
# File 'lib/generated/azure_mgmt_logic/models/integration_account_session.rb', line 17 def created_time @created_time end |
Class Method Details
.mapper ⇒ Object
Mapper for IntegrationAccountSession 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 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 105 106 107 108 109 |
# File 'lib/generated/azure_mgmt_logic/models/integration_account_session.rb', line 30 def self.mapper() { required: false, serialized_name: 'IntegrationAccountSession', type: { name: 'Composite', class_name: 'IntegrationAccountSession', model_properties: { id: { required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, location: { required: false, serialized_name: 'location', type: { name: 'String' } }, tags: { required: false, serialized_name: 'tags', type: { name: 'Dictionary', value: { required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, created_time: { required: false, read_only: true, serialized_name: 'properties.createdTime', type: { name: 'DateTime' } }, changed_time: { required: false, read_only: true, serialized_name: 'properties.changedTime', type: { name: 'DateTime' } }, content: { required: false, serialized_name: 'properties.content', type: { name: 'Object' } } } } } end |