Class: Azure::ARM::DevTestLabs::Models::ArtifactInstallProperties
- Inherits:
-
Object
- Object
- Azure::ARM::DevTestLabs::Models::ArtifactInstallProperties
- Includes:
- MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_devtestlabs/models/artifact_install_properties.rb
Overview
Properties of an artifact.
Instance Attribute Summary collapse
-
#artifact_id ⇒ String
The artifact’s identifier.
-
#parameters ⇒ Array<ArtifactParameterProperties>
artifact.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ArtifactInstallProperties class as Ruby Hash.
Instance Attribute Details
#artifact_id ⇒ String
Returns The artifact’s identifier.
16 17 18 |
# File 'lib/generated/azure_mgmt_devtestlabs/models/artifact_install_properties.rb', line 16 def artifact_id @artifact_id end |
#parameters ⇒ Array<ArtifactParameterProperties>
artifact.
20 21 22 |
# File 'lib/generated/azure_mgmt_devtestlabs/models/artifact_install_properties.rb', line 20 def parameters @parameters end |
Class Method Details
.mapper ⇒ Object
Mapper for ArtifactInstallProperties 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 |
# File 'lib/generated/azure_mgmt_devtestlabs/models/artifact_install_properties.rb', line 27 def self.mapper() { required: false, serialized_name: 'ArtifactInstallProperties', type: { name: 'Composite', class_name: 'ArtifactInstallProperties', model_properties: { artifact_id: { required: false, serialized_name: 'artifactId', type: { name: 'String' } }, parameters: { required: false, serialized_name: 'parameters', type: { name: 'Sequence', element: { required: false, serialized_name: 'ArtifactParameterPropertiesElementType', type: { name: 'Composite', class_name: 'ArtifactParameterProperties' } } } } } } } end |