Class: Azure::Logic::Mgmt::V2015_02_01_preview::Models::ContentLink
- Inherits:
-
Object
- Object
- Azure::Logic::Mgmt::V2015_02_01_preview::Models::ContentLink
- Includes:
- MsRestAzure
- Defined in:
- lib/2015-02-01-preview/generated/azure_mgmt_logic/models/content_link.rb
Overview
Model object.
Instance Attribute Summary collapse
-
#content_hash ⇒ ContentHash
Gets or sets the content hash.
-
#content_size ⇒ Integer
Gets or sets the content size.
-
#content_version ⇒ String
Gets or sets the content version.
-
#metadata ⇒ Object
Gets or sets the metadata.
-
#uri ⇒ String
Gets or sets the content link URI.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ContentLink class as Ruby Hash.
Instance Attribute Details
#content_hash ⇒ ContentHash
Returns Gets or sets the content hash.
26 27 28 |
# File 'lib/2015-02-01-preview/generated/azure_mgmt_logic/models/content_link.rb', line 26 def content_hash @content_hash end |
#content_size ⇒ Integer
Returns Gets or sets the content size.
23 24 25 |
# File 'lib/2015-02-01-preview/generated/azure_mgmt_logic/models/content_link.rb', line 23 def content_size @content_size end |
#content_version ⇒ String
Returns Gets or sets the content version.
20 21 22 |
# File 'lib/2015-02-01-preview/generated/azure_mgmt_logic/models/content_link.rb', line 20 def content_version @content_version end |
#metadata ⇒ Object
Returns Gets or sets the metadata.
29 30 31 |
# File 'lib/2015-02-01-preview/generated/azure_mgmt_logic/models/content_link.rb', line 29 def @metadata end |
#uri ⇒ String
Returns Gets or sets the content link URI.
17 18 19 |
# File 'lib/2015-02-01-preview/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 84 85 86 87 88 89 |
# File 'lib/2015-02-01-preview/generated/azure_mgmt_logic/models/content_link.rb', line 36 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ContentLink', type: { name: 'Composite', class_name: 'ContentLink', model_properties: { uri: { client_side_validation: true, required: false, serialized_name: 'uri', type: { name: 'String' } }, content_version: { client_side_validation: true, required: false, serialized_name: 'contentVersion', type: { name: 'String' } }, content_size: { client_side_validation: true, required: false, serialized_name: 'contentSize', type: { name: 'Number' } }, content_hash: { client_side_validation: true, required: false, serialized_name: 'contentHash', type: { name: 'Composite', class_name: 'ContentHash' } }, metadata: { client_side_validation: true, required: false, serialized_name: 'metadata', type: { name: 'Object' } } } } } end |