Class: Azure::Compute::Mgmt::V2018_06_01::Models::GalleryArtifactPublishingProfileBase
- Inherits:
-
Object
- Object
- Azure::Compute::Mgmt::V2018_06_01::Models::GalleryArtifactPublishingProfileBase
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-06-01/generated/azure_mgmt_compute/models/gallery_artifact_publishing_profile_base.rb
Overview
Describes the basic gallery artifact publishing profile.
Direct Known Subclasses
Instance Attribute Summary collapse
- #source ⇒ GalleryArtifactSource
-
#target_regions ⇒ Array<TargetRegion>
Version is going to be replicated to.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for GalleryArtifactPublishingProfileBase class as Ruby Hash.
Instance Attribute Details
#source ⇒ GalleryArtifactSource
20 21 22 |
# File 'lib/2018-06-01/generated/azure_mgmt_compute/models/gallery_artifact_publishing_profile_base.rb', line 20 def source @source end |
#target_regions ⇒ Array<TargetRegion>
Version is going to be replicated to. This property is updatable.
17 18 19 |
# File 'lib/2018-06-01/generated/azure_mgmt_compute/models/gallery_artifact_publishing_profile_base.rb', line 17 def target_regions @target_regions end |
Class Method Details
.mapper ⇒ Object
Mapper for GalleryArtifactPublishingProfileBase 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 61 62 63 64 65 |
# File 'lib/2018-06-01/generated/azure_mgmt_compute/models/gallery_artifact_publishing_profile_base.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'GalleryArtifactPublishingProfileBase', type: { name: 'Composite', class_name: 'GalleryArtifactPublishingProfileBase', model_properties: { target_regions: { client_side_validation: true, required: false, serialized_name: 'targetRegions', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'TargetRegionElementType', type: { name: 'Composite', class_name: 'TargetRegion' } } } }, source: { client_side_validation: true, required: true, serialized_name: 'source', type: { name: 'Composite', class_name: 'GalleryArtifactSource' } } } } } end |