Class: Azure::ARM::Logic::Models::ContentLink
- Inherits:
-
Object
- Object
- Azure::ARM::Logic::Models::ContentLink
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_logic/models/content_link.rb
Overview
The content link.
Instance Attribute Summary collapse
-
#content_hash ⇒ ContentHash
The content hash.
-
#content_size ⇒ Integer
The content size.
-
#content_version ⇒ String
The content version.
-
#metadata ⇒ Object
The metadata.
-
#uri ⇒ String
The content link URI.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ContentLink class as Ruby Hash.
Instance Attribute Details
#content_hash ⇒ ContentHash
Returns The content hash.
26 27 28 |
# File 'lib/generated/azure_mgmt_logic/models/content_link.rb', line 26 def content_hash @content_hash end |
#content_size ⇒ Integer
Returns The content size.
23 24 25 |
# File 'lib/generated/azure_mgmt_logic/models/content_link.rb', line 23 def content_size @content_size end |
#content_version ⇒ String
Returns The content version.
20 21 22 |
# File 'lib/generated/azure_mgmt_logic/models/content_link.rb', line 20 def content_version @content_version end |
#metadata ⇒ Object
Returns The metadata.
29 30 31 |
# File 'lib/generated/azure_mgmt_logic/models/content_link.rb', line 29 def @metadata end |
#uri ⇒ String
Returns The content link URI.
17 18 19 |
# File 'lib/generated/azure_mgmt_logic/models/content_link.rb', line 17 def uri @uri end |
Class Method Details
.mapper ⇒ Object
Mapper for ContentLink class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/generated/azure_mgmt_logic/models/content_link.rb', line 36 def self.mapper() { required: false, serialized_name: 'ContentLink', type: { name: 'Composite', class_name: 'ContentLink', model_properties: { uri: { required: false, serialized_name: 'uri', type: { name: 'String' } }, content_version: { required: false, serialized_name: 'contentVersion', type: { name: 'String' } }, content_size: { required: false, serialized_name: 'contentSize', type: { name: 'Number' } }, content_hash: { required: false, serialized_name: 'contentHash', type: { name: 'Composite', class_name: 'ContentHash' } }, metadata: { required: false, serialized_name: 'metadata', type: { name: 'Object' } } } } } end |