# 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::Automanage::Mgmt::V2020_06_30_preview module Models # # Configuration profile assignment is an association between a VM and # automanage profile configuration. # class ConfigurationProfileAssignment < ProxyResource include MsRestAzure # @return [ConfigurationProfileAssignmentProperties] Properties of the # configuration profile assignment. attr_accessor :properties # # Mapper for ConfigurationProfileAssignment class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ConfigurationProfileAssignment', type: { name: 'Composite', class_name: 'ConfigurationProfileAssignment', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, properties: { client_side_validation: true, required: false, serialized_name: 'properties', type: { name: 'Composite', class_name: 'ConfigurationProfileAssignmentProperties' } } } } } end end end end