# 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::KeyVault::V7_0 module Models # # The action that will be executed. # class Action include MsRestAzure # @return [ActionType] The type of the action. Possible values include: # 'EmailContacts', 'AutoRenew' attr_accessor :action_type # # Mapper for Action class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Action', type: { name: 'Composite', class_name: 'Action', model_properties: { action_type: { client_side_validation: true, required: false, serialized_name: 'action_type', type: { name: 'Enum', module: 'ActionType' } } } } } end end end end