Class: Azure::Logic::Mgmt::V2016_06_01::Models::ArtifactContentPropertiesDefinition
- Inherits:
-
ArtifactProperties
- Object
- ArtifactProperties
- Azure::Logic::Mgmt::V2016_06_01::Models::ArtifactContentPropertiesDefinition
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-06-01/generated/azure_mgmt_logic/models/artifact_content_properties_definition.rb
Overview
The artifact content properties definition.
Direct Known Subclasses
Instance Attribute Summary collapse
- #content ⇒ Object
-
#content_link ⇒ ContentLink
The content link.
-
#content_type ⇒ String
The content type.
Attributes inherited from ArtifactProperties
#changed_time, #created_time, #metadata
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ArtifactContentPropertiesDefinition class as Ruby Hash.
Instance Attribute Details
#content ⇒ Object
16 17 18 |
# File 'lib/2016-06-01/generated/azure_mgmt_logic/models/artifact_content_properties_definition.rb', line 16 def content @content end |
#content_link ⇒ ContentLink
Returns The content link.
22 23 24 |
# File 'lib/2016-06-01/generated/azure_mgmt_logic/models/artifact_content_properties_definition.rb', line 22 def content_link @content_link end |
#content_type ⇒ String
Returns The content type.
19 20 21 |
# File 'lib/2016-06-01/generated/azure_mgmt_logic/models/artifact_content_properties_definition.rb', line 19 def content_type @content_type end |
Class Method Details
.mapper ⇒ Object
Mapper for ArtifactContentPropertiesDefinition class as Ruby Hash. This will be used for serialization/deserialization.
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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
# File 'lib/2016-06-01/generated/azure_mgmt_logic/models/artifact_content_properties_definition.rb', line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ArtifactContentPropertiesDefinition', type: { name: 'Composite', class_name: 'ArtifactContentPropertiesDefinition', model_properties: { created_time: { client_side_validation: true, required: false, serialized_name: 'createdTime', type: { name: 'DateTime' } }, changed_time: { client_side_validation: true, required: false, serialized_name: 'changedTime', type: { name: 'DateTime' } }, metadata: { client_side_validation: true, required: false, serialized_name: 'metadata', type: { name: 'Object' } }, content: { client_side_validation: true, required: false, serialized_name: 'content', type: { name: 'Object' } }, content_type: { client_side_validation: true, required: false, serialized_name: 'contentType', type: { name: 'String' } }, content_link: { client_side_validation: true, required: false, serialized_name: 'contentLink', type: { name: 'Composite', class_name: 'ContentLink' } } } } } end |