# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::Resources2::Mgmt::V2018_06_01 module Models # # Managed application artifact. # class ApplicationArtifact include MsRestAzure2 # @return [String] The managed application artifact name. attr_accessor :name # @return [String] The managed application artifact blob uri. attr_accessor :uri # @return [ApplicationArtifactType] The managed application artifact # type. Possible values include: 'Template', 'Custom' attr_accessor :type # # Mapper for ApplicationArtifact class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ApplicationArtifact', type: { name: 'Composite', class_name: 'ApplicationArtifact', model_properties: { name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } }, uri: { client_side_validation: true, required: false, serialized_name: 'uri', type: { name: 'String' } }, type: { client_side_validation: true, required: false, serialized_name: 'type', type: { name: 'Enum', module: 'ApplicationArtifactType' } } } } } end end end end