Sha256: ada0c08cf389402f56e41804c90f081d66e52f73dd29ccd1995eca920af5c1bf
Contents?: true
Size: 1.82 KB
Versions: 92
Compression:
Stored size: 1.82 KB
Contents
module Alula class EventTrigger < Alula::RestResource extend Alula::ResourceAttributes extend Alula::ApiOperations::Request extend Alula::ApiOperations::List extend Alula::ApiOperations::Save # You should update this to be a slash-separated, literal path to the resource # without the prefix /api/v1 or the suffix of an ID resource_path 'events/triggers' # Relationships # None # Resource Fields # Not all params are used at the moment. See Alula::ResourceAttributes for details # on how params are parsed, field :id, type: :string, sortable: false, filterable: false, creatable_by: [:all], patchable_by: [:all] field :user_id, type: :string, sortable: false, filterable: true, creatable_by: [], patchable_by: [] field :reference, type: :string, sortable: false, filterable: true, creatable_by: [:all], patchable_by: [:all] field :event, type: :string, sortable: false, filterable: false, creatable_by: [:all], patchable_by: [] field :conditions, type: :string, sortable: false, filterable: false, creatable_by: [:all], patchable_by: [:all] field :action, type: :string, sortable: false, filterable: false, creatable_by: [:all], patchable_by: [:all] field :ttl, type: :string, sortable: false, filterable: false, creatable_by: [:all], patchable_by: [:all] field :expires, type: :string, sortable: true, filterable: false, creatable_by: [], patchable_by: [] end end
Version data entries
92 entries across 92 versions & 1 rubygems